{
    "$schema": "http://json-schema.org/draft-07/schema#",
    "$id": "#CryptoKey",
    "description": "A key used to perform cryptographic functions, such as an encryption key.",
    "type": "object",
    "allOf": [
        {
            "$ref": "#Key"
        },
        {
            "properties": {},
            "required": []
        }
    ]
}
