{
    "title": "sets the properties to create a response for rollout",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.joc.model.publish.RolloutResponse",
    "type": "object",
    "properties": {
        "jocKeyPair": {
            "javaType": "com.sos.joc.model.sign.JocKeyPair",
            "type": "object",
            "required": [
                "keyAlgorithm"
            ],
            "properties": {
                "privateKey": {
                    "type": "string"
                },
                "publicKey": {
                    "type": "string"
                },
                "keyID": {
                    "type": "string"
                },
                "certificate": {
                    "type": "string"
                },
                "validUntil": {
                    "type": "string",
                    "format": "date-time"
                },
                "keyType": {
                    "type": "string"
                },
                "keyAlgorithm": {
                    "type": "string"
                }
            }
        },
        "caCert": {
            "type": "string"
        },
        "DNs": {
            "type": "array",
            "items": {
                "type": "string"
            }
        }
    }
}