{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CreateGraphSnapshotInput", "title": "CreateGraphSnapshotInput", "type": "object", "required": [ "graphIdentifier", "snapshotName" ], "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" } } } }