{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-neptune/refs/heads/main/json-schema/opencypher-open-cypher-query-response-schema.json", "title": "OpenCypherQueryResponse", "description": "OpenCypherQueryResponse schema from Neptune", "type": "object", "properties": { "results": { "type": "array", "description": "The query result rows.", "items": { "type": "object", "description": "A result row. Keys are the RETURN alias names. Values can be scalars, nodes, relationships, or paths.", "additionalProperties": { "description": "Result value. Nodes have ~id, ~entityType, ~labels, ~properties. Relationships have ~id, ~entityType, ~start, ~end, ~type, ~properties." } } } } }