PackageVersionHistory

Details of a package version.

AnalyticsElasticsearchSearch

Properties

Name Type Description
PackageVersion object
CommitMessage object
CreatedAt object
View JSON Schema on GitHub

JSON Schema

openapi-package-version-history-schema.json Raw ↑
{
  "$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."
        }
      ]
    }
  }
}