ListLayersResponse

APIs.ioEngineeringPlatform

Properties

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

JSON Schema

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