{
    "title": "shows all certificates",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.joc.model.encipherment.ShowCertificateResponse",
    "type": "object",
    "properties": {
        "certificates": {
            "type": "array",
            "items": {
                "javaType": "com.sos.joc.model.encipherment.EncCertificate",
                "type": "object",
                "properties": {
                    "certAlias": {
                        "type": "string"
                    },
                    "certificate": {
                        "type": "string"
                    },
                    "privateKeyPath": {
                        "type": "string"
                    }
                }
            }
        }
    }
}