Tezos · Schema
ContractTagsParameter
TezosBlockchainTzKTBaking BadCryptocurrencySmart ContractsNFTTokensDelegationsStakingGovernanceFA1.2FA2WebSocket
Properties
| Name | Type | Description |
|---|---|---|
| eq | array | **Equal** filter mode (optional, i.e. `param.eq=123` is the same as `param=123`). \ Specify a comma-separated list of contract tags to get contracts with exactly the same set of tags. Avoid using this |
| any | array | **Has any** filter mode. \ Specify a comma-separated list of contract tags to get contracts where at least one of the specified tags is presented. Example: `?tags.any=fa2` or `?tags.any=fa1,fa12`. |
| all | array | **Has all** filter mode. \ Specify a comma-separated list of contract tags to get contracts where all of the specified tags are presented. Example: `?tags.all=fa2` or `?tags.all=fa1,fa12`. |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "ContractTagsParameter",
"type": "object",
"additionalProperties": false,
"properties": {
"eq": {
"type": "array",
"description": "**Equal** filter mode (optional, i.e. `param.eq=123` is the same as `param=123`). \\\nSpecify a comma-separated list of contract tags to get contracts with exactly the same set of tags.\nAvoid using this mode and use `.any` or `.all` instead, because it may not work as expected due to internal 'hidden' tags.\n\nExample: `?tags=fa2` or `?tags=fa1,fa12`.",
"nullable": true,
"items": {
"type": "string"
}
},
"any": {
"type": "array",
"description": "**Has any** filter mode. \\\nSpecify a comma-separated list of contract tags to get contracts where at least one of the specified tags is presented.\n\nExample: `?tags.any=fa2` or `?tags.any=fa1,fa12`.",
"nullable": true,
"items": {
"type": "string"
}
},
"all": {
"type": "array",
"description": "**Has all** filter mode. \\\nSpecify a comma-separated list of contract tags to get contracts where all of the specified tags are presented.\n\nExample: `?tags.all=fa2` or `?tags.all=fa1,fa12`.",
"nullable": true,
"items": {
"type": "string"
}
}
},
"x-tzkt-extension": "query-parameter",
"x-tzkt-query-parameter": "fa1,fa12,fa2"
}