ListLayerVersionsResponse

APIs.ioEngineeringPlatform

Properties

Name Type Description
NextMarker object
LayerVersions object
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-listlayerversionsresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ListLayerVersionsResponse",
  "title": "ListLayerVersionsResponse",
  "type": "object",
  "properties": {
    "NextMarker": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "A pagination token returned when the response doesn't contain all versions."
        }
      ]
    },
    "LayerVersions": {
      "allOf": [
        {
          "$ref": "#/components/schemas/LayerVersionsList"
        },
        {
          "description": "A list of versions."
        }
      ]
    }
  }
}