{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "RefutationMoveParameter", "type": "object", "additionalProperties": false, "properties": { "eq": { "type": "string", "description": "**Equal** filter mode (`.eq` suffix can be omitted, i.e. `?param=...` is the same as `?param.eq=...`). \\\nSpecify a refutation game move to get items where the specified field is equal to the specified value.\n\nExample: `?move=start`.", "nullable": true }, "ne": { "type": "string", "description": "**Not equal** filter mode. \\\nSpecify a refutation game move to get items where the specified field is not equal to the specified value.\n\nExample: `?move.ne=start`.", "nullable": true }, "in": { "type": "array", "description": "**In list** (any of) filter mode. \\\nSpecify a comma-separated list of refutation game moves to get items where the specified field is equal to one of the specified values.\n\nExample: `?move.in=proof,timeout`.", "nullable": true, "items": { "type": "string" } }, "ni": { "type": "array", "description": "**Not in list** (none of) filter mode. \\\nSpecify a comma-separated list of refutation game moves to get items where the specified field is not equal to all the specified values.\n\nExample: `?move.ni=proof,timeout`.", "nullable": true, "items": { "type": "string" } } }, "x-tzkt-extension": "query-parameter", "x-tzkt-query-parameter": "start,dissection,proof,timeout" }