JwksResponse schema from Backstage auth API
{ "$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" } } } } } }