{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ValidateApiSpecRequestPayload", "title": "API Specification Validation Request Payload", "type": "object", "properties": { "content": { "description": "The raw content of your API specification (OpenAPI or AsyncAPI), in json or yaml, to be validated.\n", "type": "string" } }, "additionalProperties": false, "required": [ "content" ] }