{
    "title": "auditLog",
    "id": "schemas/audit/auditLog",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.joc.model.audit.AuditLog",
    "type": "object",
    "required": [
        "deliveryDate",
        "auditLog"
    ],
    "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"
        },
        "auditLog": {
            "type": "array",
            "items": {
                "id": "schemas/audit/audit",
                "javaType": "com.sos.joc.model.audit.AuditLogItem",
                "type": "object",
                "required": [
                    "account",
                    "request",
                    "created"
                ],
                "properties": {
                    "account": {
                        "type": "string"
                    },
                    "request": {
                        "type": "string"
                    },
                    "created": {
                        "id": "schemas/common/timestamp",
                        "description": "Value is UTC timestamp in ISO 8601 YYYY-MM-DDThh:mm:ss.sZ or empty",
                        "type": "string",
                        "format": "date-time"
                    },
                    "jobschedulerId": {
                        "type": "string"
                    },
                    "comment": {
                        "type": "string"
                    },
                    "parameters": {
                        "description": "JSON object as string, parameter of request",
                        "type": "string"
                    },
                    "job": {
                        "type": "string"
                    },
                    "jobChain": {
                        "type": "string"
                    },
                    "orderId": {
                        "type": "string"
                    },
                    "timeSpent": {
                        "id": "schemas/common/nonNegativeInteger",
                        "type": "integer",
                        "minimum": 0
                    },
                    "ticketLink": {
                        "type": "string"
                    }
                }
            }
        }
    }
}