Kong · Schema

API Specification Validation Request Payload

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
content string The raw content of your API specification (OpenAPI or AsyncAPI), in json or yaml, to be validated.
View JSON Schema on GitHub

JSON Schema

kong-validateapispecrequestpayload-schema.json Raw ↑
{
  "$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"
  ]
}