Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| descriptor | string | |
| requisitionNumber | string | |
| status | string | |
| requester | object | |
| submitDate | string | |
| totalAmount | number | |
| currency | string | |
| href | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Requisition",
"title": "Requisition",
"type": "object",
"properties": {
"id": {
"type": "string"
},
"descriptor": {
"type": "string"
},
"requisitionNumber": {
"type": "string"
},
"status": {
"type": "string",
"enum": [
"draft",
"submitted",
"approved",
"ordered",
"received"
]
},
"requester": {
"$ref": "#/components/schemas/ResourceReference"
},
"submitDate": {
"type": "string",
"format": "date"
},
"totalAmount": {
"type": "number",
"format": "double"
},
"currency": {
"type": "string"
},
"href": {
"type": "string",
"format": "uri"
}
}
}