Backstage · Schema

JwksResponse

JwksResponse schema from Backstage auth API

Developer PortalInternal Developer PlatformSoftware CatalogOpen Source

Properties

Name Type Description
keys array
View JSON Schema on GitHub

JSON Schema

auth-jwks-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/backstage/refs/heads/main/json-schema/auth-jwks-response-schema.json",
  "title": "JwksResponse",
  "description": "JwksResponse schema from Backstage auth API",
  "type": "object",
  "properties": {
    "keys": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "kty": {
            "type": "string"
          },
          "kid": {
            "type": "string"
          },
          "alg": {
            "type": "string"
          },
          "use": {
            "type": "string"
          },
          "n": {
            "type": "string"
          },
          "e": {
            "type": "string"
          }
        }
      }
    }
  }
}