{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ValidateApiKeyDto", "title": "ValidateApiKeyDto", "type": "object", "properties": { "value": { "type": "string", "description": "The value for an API key.", "example": "sk_example_1234567890abcdef" } }, "required": [ "value" ] }