mirror of
https://github.com/sartography/sample-process-models.git
synced 2025-02-24 05:38:06 +00:00
User: admin@spiffworkflow.org added process model file example/signup-process/user-input-schema.json
This commit is contained in:
parent
742ebb18d9
commit
4d220e0b94
20
example/signup-process/user-input-schema.json
Normal file
20
example/signup-process/user-input-schema.json
Normal 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"]
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user