{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-neptune/refs/heads/main/json-structure/gremlin-gremlin-query-status-detail-structure.json", "name": "GremlinQueryStatusDetail", "description": "GremlinQueryStatusDetail schema from Neptune", "type": "object", "properties": { "queryId": { "type": "string", "description": "The unique query identifier." }, "queryString": { "type": "string", "description": "The Gremlin traversal query string." }, "queryEvalStats": { "type": "object", "description": "Query execution statistics.", "properties": { "waited": { "type": "int32", "description": "The time the query waited in the queue (milliseconds)." }, "elapsed": { "type": "int32", "description": "The elapsed execution time (milliseconds)." }, "cancelled": { "type": "boolean", "description": "Whether the query was cancelled." }, "subqueries": { "type": "object", "description": "Statistics for subqueries, if any." } } } } }