Stytch · Schema

api_sso_v1_X509Certificate

AuthenticationIdentityPasswordlessSecurityB2BConnected AppsMCPAI AgentsDeveloper Tools

Properties

Name Type Description
certificate_id string The ID of the certificate.
certificate string The certificate, in [PEM](https://en.wikipedia.org/wiki/Privacy-Enhanced_Mail) format.
issuer string The issuer of the certificate. For signing certificates, this value will be "Stytch".
created_at string A timestamp that indicates when the certificate was created.
expires_at string A timestamp that indicates when the certificate will expire.
updated_at string A timestamp that indicates when the certificate was updated.
View JSON Schema on GitHub

JSON Schema

stytch-api-sso-v1-x509certificate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/api_sso_v1_X509Certificate",
  "title": "api_sso_v1_X509Certificate",
  "type": "object",
  "properties": {
    "certificate_id": {
      "type": "string",
      "description": "The ID of the certificate."
    },
    "certificate": {
      "type": "string",
      "description": "The certificate, in [PEM](https://en.wikipedia.org/wiki/Privacy-Enhanced_Mail) format."
    },
    "issuer": {
      "type": "string",
      "description": "The issuer of the certificate. For signing certificates, this value will be \"Stytch\"."
    },
    "created_at": {
      "type": "string",
      "description": "A timestamp that indicates when the certificate was created."
    },
    "expires_at": {
      "type": "string",
      "description": "A timestamp that indicates when the certificate will expire."
    },
    "updated_at": {
      "type": "string",
      "description": "A timestamp that indicates when the certificate was updated."
    }
  },
  "required": [
    "certificate_id",
    "certificate",
    "issuer"
  ]
}