Amazon Neptune · Schema

GraphSnapshotOutput

GraphSnapshotOutput schema from Neptune

DatabaseGraph DatabaseGremlinNeptuneProperty GraphRDFSPARQL

Properties

Name Type Description
id string
name string
arn string
sourceGraphId string
snapshotCreateTime string
status string
kmsKeyIdentifier string
View JSON Schema on GitHub

JSON Schema

analytics-graph-snapshot-output-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/analytics-graph-snapshot-output-schema.json",
  "title": "GraphSnapshotOutput",
  "description": "GraphSnapshotOutput schema from Neptune",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "arn": {
      "type": "string"
    },
    "sourceGraphId": {
      "type": "string"
    },
    "snapshotCreateTime": {
      "type": "string",
      "format": "date-time"
    },
    "status": {
      "type": "string",
      "enum": [
        "CREATING",
        "AVAILABLE",
        "DELETING",
        "FAILED"
      ]
    },
    "kmsKeyIdentifier": {
      "type": "string"
    }
  }
}