{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ApiVersionDetails", "title": "ApiVersionDetails", "type": "object", "properties": { "version": { "type": "string", "example": "example_value" }, "isLatest": { "type": "boolean", "example": true }, "lifecycle": { "type": "string", "example": "example_value" }, "links": { "type": "array", "items": { "$ref": "#/components/schemas/Link" }, "example": [] } } }