spiff-arena/tests/data/dot_notation/json_schema.json
Jon Herron 883e65384f Squashed 'spiffworkflow-backend/' content from commit 50f28073
git-subtree-dir: spiffworkflow-backend
git-subtree-split: 50f28073add91265f00826bd175c8b2fff76cdc5
2022-10-12 10:22:22 -04:00

37 lines
790 B
JSON

{
"title": "Submit Invoice",
"description": "Information for submitting an invoice.",
"type": "object",
"required": [
"invoice.contributorName",
"invoice.contributorId",
"invoice.invoiceId",
"invoice.invoiceAmount",
"invoice.dueDate"
],
"properties": {
"invoice.contributorName": {
"type": "string",
"title": "Contributor Name"
},
"invoice.contributorId": {
"type": "integer",
"title": "Contributor Id",
"minLength": 2
},
"invoice.invoiceId": {
"type": "integer",
"title": "Invoice Id",
"minLength": 4
},
"invoice.invoiceAmount": {
"type": "number",
"title": "Invoice Amount"
},
"invoice.dueDate": {
"type": "string",
"title": "Due Date"
}
}
}