{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ExecuteGremlinProfileInput", "title": "ExecuteGremlinProfileInput", "type": "object", "required": [ "gremlin" ], "properties": { "gremlin": { "type": "string", "description": "The Gremlin traversal query string to profile." }, "results": { "type": "boolean", "description": "Whether to include results in the profile output." }, "chop": { "type": "integer", "description": "Maximum length of result string per entry." }, "serializer": { "type": "string", "description": "The serialization format for results." }, "indexOps": { "type": "boolean", "description": "Whether to include index operation details." } } }