-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathSession.json
More file actions
63 lines (63 loc) · 1.56 KB
/
Copy pathSession.json
File metadata and controls
63 lines (63 loc) · 1.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"$ref": "#/definitions/Session",
"definitions": {
"Session": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Unique session identifier"
},
"sessionToken": {
"type": "string",
"description": "Session token"
},
"userId": {
"type": "string",
"description": "Associated user ID"
},
"activeOrganizationId": {
"type": "string",
"description": "Active organization ID for context switching"
},
"expires": {
"type": "string",
"format": "date-time",
"description": "Session expiry timestamp"
},
"createdAt": {
"type": "string",
"format": "date-time",
"description": "Session creation timestamp"
},
"updatedAt": {
"type": "string",
"format": "date-time",
"description": "Last update timestamp"
},
"ipAddress": {
"type": "string",
"description": "IP address"
},
"userAgent": {
"type": "string",
"description": "User agent string"
},
"fingerprint": {
"type": "string",
"description": "Device fingerprint"
}
},
"required": [
"id",
"sessionToken",
"userId",
"expires",
"createdAt",
"updatedAt"
],
"additionalProperties": false
}
},
"$schema": "http://json-schema.org/draft-07/schema#"
}