
| Property Name | Type | Description |
|---|---|---|
| Date | string, integer |
Any of the following values:
|
| 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": {
"Date": {
"type": [
"integer",
"string"
],
"format": "date-time"
},
"Note": {
"type": "string",
"maxLength": 200
}
},
"required": []
}