Tezos · Schema
SmartRollupParameter
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 an `sr1` address to get items where the specified field is equal to the specified value |
| ne | string | **Not equal** filter mode. \ Specify an `sr1` address to get items where the specified field is not equal to the specified value. Example: `?rollup.ne=sr1RouasmcMAsrt4SxgGGVCBT36hzYRJBUrB`. |
| in | array | **In list** (any of) filter mode. \ Specify a comma-separated list of `sr1` addresses to get items where the specified field is equal to one of the specified values. Example: `?rollup.in=sr1RouasmcMAs |
| ni | array | **Not in list** (none of) filter mode. \ Specify a comma-separated list of `sr1` addresses to get items where the specified field is not equal to all the specified values. Example: `?rollup.ni=sr1Roua |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "SmartRollupParameter",
"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 an `sr1` address to get items where the specified field is equal to the specified value.\n\nExample: `?rollup=sr1RouasmcMAsrt4SxgGGVCBT36hzYRJBUrB`.",
"nullable": true
},
"ne": {
"type": "string",
"description": "**Not equal** filter mode. \\\nSpecify an `sr1` address to get items where the specified field is not equal to the specified value.\n\nExample: `?rollup.ne=sr1RouasmcMAsrt4SxgGGVCBT36hzYRJBUrB`.",
"nullable": true
},
"in": {
"type": "array",
"description": "**In list** (any of) filter mode. \\\nSpecify a comma-separated list of `sr1` addresses to get items where the specified field is equal to one of the specified values.\n\nExample: `?rollup.in=sr1RouasmcMAsrt4SxgGGVCBT36hzYRJBUrB,sr1UsFZWCrnHH5zDfihZpSjYbc1iwLnAbEum`.",
"nullable": true,
"items": {
"type": "string"
}
},
"ni": {
"type": "array",
"description": "**Not in list** (none of) filter mode. \\\nSpecify a comma-separated list of `sr1` addresses to get items where the specified field is not equal to all the specified values.\n\nExample: `?rollup.ni=sr1RouasmcMAsrt4SxgGGVCBT36hzYRJBUrB,sr1UsFZWCrnHH5zDfihZpSjYbc1iwLnAbEum`.",
"nullable": true,
"items": {
"type": "string"
}
}
},
"x-tzkt-extension": "query-parameter"
}