mirror of
https://github.com/sartography/demo-process-models.git
synced 2025-02-23 23:38:18 +00:00
User: admin@spiffworkflow.org clicked save for playground/dan/bug-tracker/bug-details-schema.json
This commit is contained in:
parent
330619ff86
commit
58f09bc8e4
@ -1 +1,67 @@
|
||||
{"title": "bug-details", "description": "", "properties": {"age": {"type": "string", "title": "age"}, "description": {"type": "string", "title": "description"}, "priority": {"type": "string", "title": "priority"}}, "required": []}
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema#",
|
||||
"title": "Emergency Room Intake Form",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"name": {
|
||||
"type": "string",
|
||||
"minLength": 1,
|
||||
"maxLength": 100
|
||||
},
|
||||
"age": {
|
||||
"type": "integer",
|
||||
"minimum": 0,
|
||||
"maximum": 120
|
||||
},
|
||||
"gender": {
|
||||
"type": "string",
|
||||
"enum": ["Male", "Female", "Other"]
|
||||
},
|
||||
"dateOfBirth": {
|
||||
"type": "string",
|
||||
"format": "date"
|
||||
},
|
||||
"address": {
|
||||
"type": "string",
|
||||
"minLength": 1,
|
||||
"maxLength": 100
|
||||
},
|
||||
"phone": {
|
||||
"type": "string",
|
||||
"format": "phone"
|
||||
},
|
||||
"emergencyContactName": {
|
||||
"type": "string",
|
||||
"minLength": 1,
|
||||
"maxLength": 100
|
||||
},
|
||||
"emergencyContactPhone": {
|
||||
"type": "string",
|
||||
"format": "phone"
|
||||
},
|
||||
"symptoms": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"allergies": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"medications": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"medicalHistory": {
|
||||
"type": "string"
|
||||
},
|
||||
"socialHistory": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user