Amazon Neptune · Schema

SparqlQueryStatusDetail

DatabaseGraph DatabaseGremlinNeptuneProperty GraphRDFSPARQL

Properties

Name Type Description
queryId string
queryString string
queryEvalStats object
View JSON Schema on GitHub

JSON Schema

amazon-neptune-sparqlquerystatusdetail-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SparqlQueryStatusDetail",
  "title": "SparqlQueryStatusDetail",
  "type": "object",
  "properties": {
    "queryId": {
      "type": "string"
    },
    "queryString": {
      "type": "string"
    },
    "queryEvalStats": {
      "type": "object",
      "properties": {
        "waited": {
          "type": "integer",
          "description": "Time waited in queue (milliseconds)."
        },
        "elapsed": {
          "type": "integer",
          "description": "Elapsed execution time (milliseconds)."
        },
        "cancelled": {
          "type": "boolean"
        }
      }
    }
  }
}