{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ListGraphsOutput", "title": "ListGraphsOutput", "type": "object", "properties": { "graphs": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "string" }, "name": { "type": "string" }, "arn": { "type": "string" }, "status": { "type": "string" }, "provisionedMemory": { "type": "integer" }, "publicConnectivity": { "type": "boolean" }, "endpoint": { "type": "string" }, "replicaCount": { "type": "integer" }, "deletionProtection": { "type": "boolean" } } } }, "nextToken": { "type": "string" } } }