Amazon Neptune · Schema

SparqlStatisticsOutput

SparqlStatisticsOutput schema from Neptune

DatabaseGraph DatabaseGremlinNeptuneProperty GraphRDFSPARQL

Properties

Name Type Description
status string
payload object
View JSON Schema on GitHub

JSON Schema

data-sparql-statistics-output-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-neptune/refs/heads/main/json-schema/data-sparql-statistics-output-schema.json",
  "title": "SparqlStatisticsOutput",
  "description": "SparqlStatisticsOutput schema from Neptune",
  "type": "object",
  "properties": {
    "status": {
      "type": "string"
    },
    "payload": {
      "type": "object",
      "properties": {
        "graphStatistics": {
          "type": "object",
          "properties": {
            "numStatements": {
              "type": "integer"
            },
            "numDistinctSubjects": {
              "type": "integer"
            },
            "numDistinctPredicates": {
              "type": "integer"
            }
          }
        }
      }
    }
  }
}