BundleListResponse

Application DependenciesCloud NativeIntegrationResearchSpecificationsWorkload Specifications

Properties

Name Type Description
items array
total integer Total number of bundles
limit integer Number of items per page
offset integer Current offset
View JSON Schema on GitHub

JSON Schema

application-research-bundlelistresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BundleListResponse",
  "title": "BundleListResponse",
  "type": "object",
  "properties": {
    "items": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Bundle"
      }
    },
    "total": {
      "type": "integer",
      "description": "Total number of bundles"
    },
    "limit": {
      "type": "integer",
      "description": "Number of items per page"
    },
    "offset": {
      "type": "integer",
      "description": "Current offset"
    }
  }
}