{
    "title": "log info with delivery date",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.joc.model.common.LogInfo200",
    "type": "object",
    "required": [
        "deliveryDate",
        "surveyDate",
        "log"
    ],
    "properties": {
        "deliveryDate": {
            "description": "Date time. Value is UTC timestamp in ISO 8601 YYYY-MM-DDThh:mm:ss.sZ",
            "type": "string",
            "format": "date-time"
        },
        "surveyDate": {
            "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": {
            "javaType": "com.sos.joc.model.common.LogInfo",
            "type": "object",
            "properties": {
                "filename": {
                    "description": "name of temporary file. Can be used as parameter for ./jobscheduler/log, ./order/log or ./task/log",
                    "type": "string"
                },
                "size": {
                    "type": "number",
                    "format": "utc-millisec",
                    "minimum": 0
                },
                "download": {
                    "description": "if true then ./jobscheduler/log, ./order/log or ./task/log sends log as download (with Content-Disposition 'attachment').",
                    "type": "boolean",
                    "default": true
                }
            }
        }
    }
}