{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/OAuth2Key", "title": "OAuth2Key", "type": "object", "properties": { "kty": { "type": "string" }, "use": { "type": "string" }, "kid": { "type": "string" }, "n": { "type": "string" }, "e": { "type": "string" }, "alg": { "type": "string" } }, "required": [ "kty", "use", "kid", "n", "e", "alg" ] }