{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/apinotes/main/json-structure/apinotes-documentation-structure.json", "title": "ApiNotes Documentation", "description": "Structure representing an API documentation portal generated by ApiNotes", "type": "object", "properties": { "id": { "type": "string", "description": "Unique identifier" }, "name": { "type": "string", "description": "Name of the documentation portal" }, "description": { "type": "string", "description": "Description of the API" }, "specificationUrl": { "type": "string", "description": "URL of the OpenAPI specification" }, "portalUrl": { "type": "string", "description": "Public URL of the documentation portal" }, "version": { "type": "string", "description": "API version" }, "languages": { "type": "array", "items": { "type": "string" }, "description": "Languages for code examples" }, "liveTestingEnabled": { "type": "boolean", "description": "Live testing enabled flag" }, "createdAt": { "type": "datetime", "description": "Generation timestamp" } } }