{
    "title": "SOS Key Pair",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "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": {
            "description": "Value is UTC timestamp in ISO 8601 YYYY-MM-DDThh:mm:ss.sZ or empty",
            "type": "string",
            "format": "date-time"
        },
        "keyType": {
            "type": "string"
        },
        "keyAlgorithm": {
            "type": "string"
        }
    },
    "additionalProperties": false
}