{
    "title": "log content with delivery date",
    "id": "schemas/common/logContent",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.joc.model.common.LogContent200",
    "type": "object",
    "required": [
        "deliveryDate",
        "surveyDate",
        "log"
    ],
    "properties": {
        "deliveryDate": {
            "id": "schemas/common/deliveryDate",
            "description": "Current date of the JOC server/REST service. Value is UTC timestamp in ISO 8601 YYYY-MM-DDThh:mm:ss.sZ",
            "type": "string",
            "format": "date-time"
        },
        "surveyDate": {
            "id": "schemas/common/surveyDate_p",
            "description": "Date of the inventory data. Value is UTC timestamp in ISO 8601 YYYY-MM-DDThh:mm:ss.sZ",
            "type": "string",
            "format": "date-time"
        },
        "log": {
            "id": "schemas/common/logContent",
            "javaType": "com.sos.joc.model.common.LogContent",
            "type": "object",
            "description": "The parameter 'mime' can specify if the content is plain or html. Either 'plain' or 'html' is required. 'plain' is default.",
            "properties": {
                "plain": {
                    "type": "string"
                },
                "html": {
                    "type": "string"
                }
            }
        }
    }
}