{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SetCustomSigningKeysRequestContent", "title": "SetCustomSigningKeysRequestContent", "type": "object", "description": "JWKS representing an array of custom public signing keys.", "additionalProperties": false, "required": [ "keys" ], "properties": { "keys": { "type": "array", "description": "An array of custom public signing keys.", "minItems": 1, "items": { "$ref": "#/components/schemas/CustomSigningKeyJWK" } } } }