User: alex clicked save for demo/amin-demo/Submit-the-invoice_JSONSchema.json.json

This commit is contained in:
demo 2022-10-26 02:48:20 +00:00
parent cbf41e748b
commit 11b5bf99bf

View File

@ -12,33 +12,33 @@
"description": "Information for submitting an invoice.", "description": "Information for submitting an invoice.",
"type": "object", "type": "object",
"required": [ "required": [
"invoice.contributorName", "contributorName",
"invoice.contributorId", "contributorId",
"invoice.invoiceId", "invoiceId",
"invoice.invoiceAmount", "invoiceAmount",
"invoice.invoiceCurrency", "invoiceCurrency",
"invoice.dueDate" "dueDate"
], ],
"properties": { "properties": {
"invoice.contributorName": { "contributorName": {
"type": "string", "type": "string",
"title": "Contributor Name" "title": "Contributor Name"
}, },
"invoice.contributorId": { "contributorId": {
"type": "integer", "type": "integer",
"title": "Contributor Id", "title": "Contributor Id",
"minLength": 2 "minLength": 2
}, },
"invoice.invoiceId": { "invoiceId": {
"type": "integer", "type": "integer",
"title": "Invoice Id", "title": "Invoice Id",
"minLength": 4 "minLength": 4
}, },
"invoice.invoiceAmount": { "invoiceAmount": {
"type": "number", "type": "number",
"title": "Invoice Amount" "title": "Invoice Amount"
}, },
"invoice.invoiceCurrency": { "invoiceCurrency": {
"type": "string", "type": "string",
"title": "Select Currency", "title": "Select Currency",
"enum": [ "enum": [
@ -47,7 +47,7 @@
"US Dollar (USD)" "US Dollar (USD)"
] ]
}, },
"invoice.dueDate": { "dueDate": {
"type": "string", "type": "string",
"title": "Due Date" "title": "Due Date"
}, },