JSON Schema Draft 07
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "https://www.ssofy.com/schema/otp-options.json",
"type": "array",
"maxItems": 10,
"items": {
"$id": "#/items",
"type": "object",
"required": [
"id",
"type"
],
"properties": {
"id": {
"$id": "#/items/properties/id",
"title": "Unique Option Identifier",
"type": "string"
},
"type": {
"$id": "#/items/properties/type",
"title": "Type",
"type": "string",
"enum": [
"email",
"sms",
"call"
]
},
"to": {
"$id": "#/items/properties/to",
"title": "To",
"type": "string"
},
"hint": {
"$id": "#/items/properties/hint",
"title": "Hint",
"type": "string"
},
"user_id": {
"$id": "#/items/properties/user_id",
"title": "User Id",
"type": "string"
},
"action": {
"$id": "#/items/properties/action",
"title": "Action",
"type": "string",
"enum": [
"authentication",
"password_reset",
"password_renew"
]
}
},
"additionalProperties": false
}
}