Azure Key Vault · Schema

JsonWebKey

As of http://tools.ietf.org/html/draft-ietf-jose-json-web-key-18.

CertificatesCloud SecurityCryptographyKey ManagementSecrets ManagementSecurity

Properties

Name Type Description
kid string Key identifier.
key_ops array Supported key operations.
n string RSA modulus.
e string RSA public exponent.
d string RSA private exponent, or the D component of an EC private key.
dp string RSA private key parameter.
dq string RSA private key parameter.
qi string RSA private key parameter.
p string RSA secret prime.
q string RSA secret prime, with p < q.
k string Symmetric key.
key_hsm string Protected Key, used with Bring Your Own Key.
x string X component of an EC public key.
y string Y component of an EC public key.
View JSON Schema on GitHub

JSON Schema

azure-key-vault-data-plane-json-web-key-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "JsonWebKey",
  "type": "object",
  "description": "As of http://tools.ietf.org/html/draft-ietf-jose-json-web-key-18.",
  "properties": {
    "kid": {
      "type": "string",
      "description": "Key identifier."
    },
    "key_ops": {
      "type": "array",
      "description": "Supported key operations."
    },
    "n": {
      "type": "string",
      "description": "RSA modulus."
    },
    "e": {
      "type": "string",
      "description": "RSA public exponent."
    },
    "d": {
      "type": "string",
      "description": "RSA private exponent, or the D component of an EC private key."
    },
    "dp": {
      "type": "string",
      "description": "RSA private key parameter."
    },
    "dq": {
      "type": "string",
      "description": "RSA private key parameter."
    },
    "qi": {
      "type": "string",
      "description": "RSA private key parameter."
    },
    "p": {
      "type": "string",
      "description": "RSA secret prime."
    },
    "q": {
      "type": "string",
      "description": "RSA secret prime, with p < q."
    },
    "k": {
      "type": "string",
      "description": "Symmetric key."
    },
    "key_hsm": {
      "type": "string",
      "description": "Protected Key, used with Bring Your Own Key."
    },
    "x": {
      "type": "string",
      "description": "X component of an EC public key."
    },
    "y": {
      "type": "string",
      "description": "Y component of an EC public key."
    }
  }
}