Amazon Neptune · Schema

GremlinErrorResponse

GremlinErrorResponse schema from Neptune

DatabaseGraph DatabaseGremlinNeptuneProperty GraphRDFSPARQL

Properties

Name Type Description
requestId string
code string The error code.
detailedMessage string A detailed description of the error.
View JSON Schema on GitHub

JSON Schema

gremlin-gremlin-error-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-neptune/refs/heads/main/json-schema/gremlin-gremlin-error-response-schema.json",
  "title": "GremlinErrorResponse",
  "description": "GremlinErrorResponse schema from Neptune",
  "type": "object",
  "properties": {
    "requestId": {
      "type": "string",
      "format": "uuid"
    },
    "code": {
      "type": "string",
      "description": "The error code."
    },
    "detailedMessage": {
      "type": "string",
      "description": "A detailed description of the error."
    }
  }
}