Backstage · JSON Structure

Auth Jwks Response Structure

JwksResponse schema from Backstage auth API

Type: object Properties: 1
Developer PortalInternal Developer PlatformSoftware CatalogOpen Source

JwksResponse is a JSON Structure definition published by Backstage, describing 1 property. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

keys

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/backstage/refs/heads/main/json-structure/auth-jwks-response-structure.json",
  "name": "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"
          }
        }
      }
    }
  }
}