Oracle Database · Schema

SPARQLResults

CloudDatabaseEnterpriseOracleREST APISQL

Properties

Name Type Description
head object
results object
View JSON Schema on GitHub

JSON Schema

oracle-database-sparqlresults-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SPARQLResults",
  "title": "SPARQLResults",
  "type": "object",
  "properties": {
    "head": {
      "type": "object",
      "properties": {
        "vars": {
          "type": "array",
          "items": {
            "type": "string"
          }
        }
      }
    },
    "results": {
      "type": "object",
      "properties": {
        "bindings": {
          "type": "array",
          "items": {
            "type": "object"
          }
        }
      }
    }
  }
}