Amazon Neptune · Schema

JobStatusResponse

JobStatusResponse schema from Neptune

DatabaseGraph DatabaseGremlinNeptuneProperty GraphRDFSPARQL

Properties

Name Type Description
status string The current status of the job.
id string The job identifier.
processingJob object
View JSON Schema on GitHub

JSON Schema

ml-job-status-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/ml-job-status-response-schema.json",
  "title": "JobStatusResponse",
  "description": "JobStatusResponse schema from Neptune",
  "type": "object",
  "properties": {
    "status": {
      "type": "string",
      "description": "The current status of the job."
    },
    "id": {
      "type": "string",
      "description": "The job identifier."
    },
    "processingJob": {
      "type": "object",
      "properties": {
        "name": {
          "type": "string"
        },
        "arn": {
          "type": "string"
        },
        "status": {
          "type": "string"
        },
        "outputLocation": {
          "type": "string"
        },
        "failureReason": {
          "type": "string"
        },
        "cloudwatchLogUrl": {
          "type": "string"
        }
      }
    }
  }
}