User: admin@spiffworkflow.org clicked save for playground/dan/bug-tracker/bug-details-schema.json

This commit is contained in:
sartography-automated-committer 2023-08-30 19:37:16 +00:00
parent 330619ff86
commit 58f09bc8e4

View File

@ -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"
}
}
}