Amazon Neptune · JSON Structure

Data Open Cypher Query Status Output Structure

OpenCypherQueryStatusOutput schema from Neptune

Type: object Properties: 3
DatabaseGraph DatabaseGremlinNeptuneProperty GraphRDFSPARQL

OpenCypherQueryStatusOutput is a JSON Structure definition published by Amazon Neptune, describing 3 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

acceptedQueryCount runningQueryCount queries

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-neptune/refs/heads/main/json-structure/data-open-cypher-query-status-output-structure.json",
  "name": "OpenCypherQueryStatusOutput",
  "description": "OpenCypherQueryStatusOutput schema from Neptune",
  "type": "object",
  "properties": {
    "acceptedQueryCount": {
      "type": "int32"
    },
    "runningQueryCount": {
      "type": "int32"
    },
    "queries": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "queryId": {
            "type": "string"
          },
          "queryString": {
            "type": "string"
          },
          "queryEvalStats": {
            "type": "object"
          }
        }
      }
    }
  }
}