title: JSON Web Key (JWK)
type: object
additionalProperties: false
description: "Der öffentliche Schlüssel des bei der Antragseröffnung durch das antragssendende System generierten vorgangsspezifischen Schlüsselpaares (Schlüsselpaar des Antragsvorgangs) für die Absicherung (Signatur) des Proof-of-Possession-Tokens. Format: JSON Web Key - RFC 7517"
required:
  - kty
  - key_ops
  - alg
  - kid
  - n
  - e
properties:
  kty:
    type: string
    description: Key Type
    enum:
      - RSA
  key_ops:
    type: array
    description: Key Operations
    items:
      type: string
      enum:
        - verify
  alg:
    type: string
    description: Algorithm
    enum:
      - PS512
      - RSA-OAEP-256
  kid:
    type: string
    description: Key ID
    minLength: 8
    maxLength: 64
  n:
    type: string
    description: Modulus. The value 683 represents a key length of 4096 bits.
    minLength: 683
  e:
    type: string
    description: Exponent
    enum:
      - AQAB