User: admin@spiffworkflow.org added process model file example/signup-process/user-input-schema.json

This commit is contained in:
sartography-automated-committer 2023-05-08 19:15:54 +00:00
parent 742ebb18d9
commit 4d220e0b94

View File

@ -0,0 +1,20 @@
{
"$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"]
}