SAP BI Tools · Schema

ProviderCollection

A collection of providers (models) available for export

AnalyticsBusiness IntelligenceData VisualizationReportingSAP

Properties

Name Type Description
@odata.context string The OData context URL
value array The list of providers
View JSON Schema on GitHub

JSON Schema

sap-bi-tools-providercollection-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ProviderCollection",
  "title": "ProviderCollection",
  "type": "object",
  "description": "A collection of providers (models) available for export",
  "properties": {
    "@odata.context": {
      "type": "string",
      "description": "The OData context URL"
    },
    "value": {
      "type": "array",
      "description": "The list of providers",
      "items": {
        "$ref": "#/components/schemas/Provider"
      }
    }
  }
}