{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ValidateApiSpecSuccessResponse", "title": "API Specification Validation Success Response", "type": "object", "properties": { "validation_messages": { "description": "Any informational messages or warnings generated during validation. Empty if none.", "type": "array", "items": { "type": "object", "additionalProperties": false, "required": [ "message" ], "properties": { "message": { "type": "string" } } } } }, "additionalProperties": false, "required": [ "validation_messages" ] }