Amazon Neptune · Schema

GremlinErrorResponse

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

amazon-neptune-gremlinerrorresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GremlinErrorResponse",
  "title": "GremlinErrorResponse",
  "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."
    }
  }
}