{
    "title": "audit",
    "id": "schemas/audit/audit",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "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"
        },
        "calendar": {
            "type": "string"
        },
        "timeSpent": {
            "id": "schemas/common/nonNegativeInteger",
            "type": "integer",
            "minimum": 0
        },
        "ticketLink": {
            "type": "string"
        }
    }
}