
| Property Name | Type | Description |
|---|---|---|
| StartDate | string, integer |
Any of the following values:
|
| EndDate | string, integer |
Any of the following values:
|
| BillingUnit | string | A String value where length <= 10 |
| ClearApprovalNecess | boolean | A Boolean value |
| Note | string | A String value where length <= 200 |
| Additional Properties | Type | Description |
| Any Property | Any | All values are valid, no restrictions. |
"basicdate": {
"type": "object",
"properties": {
"StartDate": {
"type": [
"integer",
"string"
],
"format": "date-time"
},
"EndDate": {
"type": [
"integer",
"string"
],
"format": "date-time"
},
"BillingUnit": {
"type": "string",
"maxLength": 10
},
"ClearApprovalNecess": {
"type": "boolean"
},
"Note": {
"type": "string",
"maxLength": 200
}
},
"required": []
}