{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/DocumentationVersion", "title": "DocumentationVersion", "type": "object", "properties": { "version": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "description": "The version identifier of the API documentation snapshot." } ] }, "createdDate": { "allOf": [ { "$ref": "#/components/schemas/Timestamp" }, { "description": "The date when the API documentation snapshot is created." } ] }, "description": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "description": "The description of the API documentation snapshot." } ] } }, "description": "A snapshot of the documentation of an API." }