{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-opensearch/refs/heads/main/json-schema/openapi-package-version-history-schema.json", "title": "PackageVersionHistory", "description": "Details of a package version.", "type": "object", "properties": { "PackageVersion": { "allOf": [ { "$ref": "#/components/schemas/PackageVersion" }, { "description": "Version of the package." } ] }, "CommitMessage": { "allOf": [ { "$ref": "#/components/schemas/CommitMessage" }, { "description": "A message associated with the version." } ] }, "CreatedAt": { "allOf": [ { "$ref": "#/components/schemas/CreatedAt" }, { "description": "Timestamp which tells creation time of the package version." } ] } } }