mirror of
https://codeberg.org/timelimit/timelimit-server.git
synced 2026-08-31 19:03:45 +02:00
35 lines
603 B
JSON
35 lines
603 B
JSON
{
|
|
"additionalProperties": false,
|
|
"type": "object",
|
|
"properties": {
|
|
"purpose": {
|
|
"type": "string",
|
|
"enum": [
|
|
"purchase"
|
|
]
|
|
},
|
|
"familyId": {
|
|
"type": "string"
|
|
},
|
|
"userId": {
|
|
"type": "string"
|
|
},
|
|
"mail": {
|
|
"type": "string"
|
|
},
|
|
"exp": {
|
|
"type": "number"
|
|
}
|
|
},
|
|
"required": [
|
|
"exp",
|
|
"familyId",
|
|
"mail",
|
|
"purpose",
|
|
"userId"
|
|
],
|
|
"definitions": {},
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"title": "IdentityTokenPayload",
|
|
"$id": "https://timelimit.io/IdentityTokenPayload"
|
|
} |