SAP BI Tools · Schema

ODataCollection

A standard OData collection response wrapper

AnalyticsBusiness IntelligenceData VisualizationReportingSAP

Properties

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

JSON Schema

sap-bi-tools-odatacollection-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ODataCollection",
  "title": "ODataCollection",
  "type": "object",
  "description": "A standard OData collection response wrapper",
  "properties": {
    "@odata.context": {
      "type": "string",
      "description": "The OData context URL"
    },
    "value": {
      "type": "array",
      "description": "The collection of results",
      "items": {
        "type": "object"
      }
    }
  }
}