Files
automatisch/packages/backend/src/models/__snapshots__/access-token.test.js.snap
2024-10-01 10:37:43 +00:00

42 lines
705 B
Plaintext

// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
exports[`AccessToken model > jsonSchema should have correct validations 1`] = `
{
"properties": {
"expiresIn": {
"type": "integer",
},
"id": {
"format": "uuid",
"type": "string",
},
"revokedAt": {
"format": "date-time",
"type": [
"string",
"null",
],
},
"samlSessionId": {
"type": [
"string",
"null",
],
},
"token": {
"minLength": 32,
"type": "string",
},
"userId": {
"format": "uuid",
"type": "string",
},
},
"required": [
"token",
"expiresIn",
],
"type": "object",
}
`;