File tree Expand file tree Collapse file tree 2 files changed +32
-12
lines changed Expand file tree Collapse file tree 2 files changed +32
-12
lines changed Original file line number Diff line number Diff line change @@ -24261,35 +24261,53 @@
24261
24261
"type": "object",
24262
24262
"properties": {
24263
24263
"created_at": {
24264
+ "title": "DateTime",
24264
24265
"description": "The date and time the session was created.",
24265
24266
"type": "string",
24266
24267
"format": "date-time"
24267
24268
},
24268
- "expires_at": {
24269
+ "expires": {
24270
+ "title": "DateTime",
24269
24271
"description": "The date and time the session expires.",
24270
24272
"type": "string",
24271
24273
"format": "date-time"
24272
24274
},
24273
- "token": {
24275
+ "id": {
24276
+ "description": "The unique identifier for the session.",
24277
+ "allOf": [
24278
+ {
24279
+ "$ref": "#/components/schemas/Uuid"
24280
+ }
24281
+ ]
24282
+ },
24283
+ "session_token": {
24274
24284
"description": "The session token.",
24275
- "type": "string",
24276
- "format": "uuid"
24285
+ "allOf": [
24286
+ {
24287
+ "$ref": "#/components/schemas/Uuid"
24288
+ }
24289
+ ]
24277
24290
},
24278
24291
"updated_at": {
24292
+ "title": "DateTime",
24279
24293
"description": "The date and time the session was last updated.",
24280
24294
"type": "string",
24281
24295
"format": "date-time"
24282
24296
},
24283
24297
"user_id": {
24284
24298
"description": "The user ID of the user that the session belongs to.",
24285
- "type": "string",
24286
- "format": "uuid"
24299
+ "allOf": [
24300
+ {
24301
+ "$ref": "#/components/schemas/Uuid"
24302
+ }
24303
+ ]
24287
24304
}
24288
24305
},
24289
24306
"required": [
24290
24307
"created_at",
24291
- "expires_at",
24292
- "token",
24308
+ "expires",
24309
+ "id",
24310
+ "session_token",
24293
24311
"updated_at",
24294
24312
"user_id"
24295
24313
]
You can’t perform that action at this time.
0 commit comments