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