SAP HANA · Schema

ServiceInstanceList

A paginated list of SAP HANA Cloud service instances in the subaccount.

AnalyticsCloudDatabaseEnterpriseIn-Memory

Properties

Name Type Description
num_items integer Total number of service instances matching the query criteria.
items array The list of service instances for the current page.
token string Pagination token to retrieve the next page of results.
View JSON Schema on GitHub

JSON Schema

sap-hana-serviceinstancelist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ServiceInstanceList",
  "title": "ServiceInstanceList",
  "type": "object",
  "description": "A paginated list of SAP HANA Cloud service instances in the subaccount.",
  "properties": {
    "num_items": {
      "type": "integer",
      "description": "Total number of service instances matching the query criteria.",
      "example": 10
    },
    "items": {
      "type": "array",
      "description": "The list of service instances for the current page.",
      "items": {
        "$ref": "#/components/schemas/ServiceInstance"
      },
      "example": []
    },
    "token": {
      "type": "string",
      "description": "Pagination token to retrieve the next page of results.",
      "example": "example_value"
    }
  }
}