Vapi · Schema

SpkiPemPublicKeyConfig

AIVoiceAgentsRealtimeCPaaS

Properties

Name Type Description
name string Optional name of the key for identification purposes.
format string The format of the public key.
pem string The PEM-encoded public key.
View JSON Schema on GitHub

JSON Schema

vapi-spkipempublickeyconfig-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SpkiPemPublicKeyConfig",
  "title": "SpkiPemPublicKeyConfig",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Optional name of the key for identification purposes.",
      "maxLength": 100
    },
    "format": {
      "type": "string",
      "description": "The format of the public key.",
      "enum": [
        "spki-pem"
      ]
    },
    "pem": {
      "type": "string",
      "description": "The PEM-encoded public key."
    }
  },
  "required": [
    "format",
    "pem"
  ]
}