WorkloadList

List of workloads response

Application DependenciesCloud NativeIntegrationResearchSpecificationsWorkload Specifications

Properties

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

JSON Schema

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