CreateGraphSnapshotInput schema from Neptune
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-neptune/refs/heads/main/json-schema/analytics-create-graph-snapshot-input-schema.json", "title": "CreateGraphSnapshotInput", "description": "CreateGraphSnapshotInput schema from Neptune", "type": "object", "properties": { "graphIdentifier": { "type": "string", "description": "The identifier of the graph to snapshot." }, "snapshotName": { "type": "string", "description": "The name of the snapshot." }, "tags": { "type": "object", "additionalProperties": { "type": "string" } } }, "required": [ "graphIdentifier", "snapshotName" ] }