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