Tezos · Schema
RefutationGameStatusParameter
TezosBlockchainTzKTBaking BadCryptocurrencySmart ContractsNFTTokensDelegationsStakingGovernanceFA1.2FA2WebSocket
Properties
| Name | Type | Description |
|---|---|---|
| eq | string | **Equal** filter mode (`.eq` suffix can be omitted, i.e. `?param=...` is the same as `?param.eq=...`). \ Specify a refutation game status to get items where the specified field is equal to the specifi |
| ne | string | **Not equal** filter mode. \ Specify a refutation game status to get items where the specified field is not equal to the specified value. Example: `?gameStatus.ne=ongoing`. |
| in | array | **In list** (any of) filter mode. \ Specify a comma-separated list of refutation game statuses to get items where the specified field is equal to one of the specified values. Example: `?gameStatus.in= |
| ni | array | **Not in list** (none of) filter mode. \ Specify a comma-separated list of refutation game statuses to get items where the specified field is not equal to all the specified values. Example: `?gameStat |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "RefutationGameStatusParameter",
"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 status to get items where the specified field is equal to the specified value.\n\nExample: `?gameStatus=draw`.",
"nullable": true
},
"ne": {
"type": "string",
"description": "**Not equal** filter mode. \\\nSpecify a refutation game status to get items where the specified field is not equal to the specified value.\n\nExample: `?gameStatus.ne=ongoing`.",
"nullable": true
},
"in": {
"type": "array",
"description": "**In list** (any of) filter mode. \\\nSpecify a comma-separated list of refutation game statuses to get items where the specified field is equal to one of the specified values.\n\nExample: `?gameStatus.in=loser,draw`.",
"nullable": true,
"items": {
"type": "string"
}
},
"ni": {
"type": "array",
"description": "**Not in list** (none of) filter mode. \\\nSpecify a comma-separated list of refutation game statuses to get items where the specified field is not equal to all the specified values.\n\nExample: `?gameStatus.ni=loser,draw`.",
"nullable": true,
"items": {
"type": "string"
}
}
},
"x-tzkt-extension": "query-parameter",
"x-tzkt-query-parameter": "none,ongoing,loser,draw"
}