19 lines
346 B
JSON
19 lines
346 B
JSON
{
|
|
"title": "Submit Invoice",
|
|
"description": "Information for submitting an invoice.",
|
|
"type": "object",
|
|
"required": [
|
|
"invoiceAmount",
|
|
"dueDate"
|
|
],
|
|
"properties": {
|
|
"invoiceAmount": {
|
|
"type": "number",
|
|
"title": "Invoice Amount"
|
|
},
|
|
"dueDate": {
|
|
"type": "string",
|
|
"title": "Due Date"
|
|
}
|
|
}
|
|
} |