demo-process-models/potentially-promote-to-exam.../signup-process/user-input-schema.json

21 lines
493 B
JSON
Raw Normal View History

2023-06-28 12:47:07 +00:00
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "The first name of the user"
},
"surname": {
"type": "string",
"description": "The last name of the user"
},
"dateOfBirth": {
"type": "string",
"format": "date",
"description": "The date of birth of the user (format: YYYY-MM-DD)"
}
},
"required": ["name", "surname", "dateOfBirth"]
}