Amazon Neptune · JSON Structure

Data Execute Open Cypher Explain Input Structure

ExecuteOpenCypherExplainInput schema from Neptune

Type: object Properties: 3 Required: 1
DatabaseGraph DatabaseGremlinNeptuneProperty GraphRDFSPARQL

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

Properties

query parameters explainMode

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-execute-open-cypher-explain-input-structure.json",
  "name": "ExecuteOpenCypherExplainInput",
  "description": "ExecuteOpenCypherExplainInput schema from Neptune",
  "type": "object",
  "properties": {
    "query": {
      "type": "string",
      "description": "The openCypher query to explain."
    },
    "parameters": {
      "type": "string"
    },
    "explainMode": {
      "type": "string",
      "enum": [
        "static",
        "dynamic",
        "details"
      ],
      "description": "The explain mode (static, dynamic, or details)."
    }
  },
  "required": [
    "query"
  ]
}