Tango Card · Schema
Tango RaaS Catalog Item
Schema for a reward item in the Tango RaaS catalog
Gift CardsRewardsIncentivesDigital RewardsPrepaid CardsPayments
Properties
| Name | Type | Description |
|---|---|---|
| utid | string | Universal Token ID — unique identifier for this reward item |
| rewardName | string | Name of the reward product |
| brandName | string | Name of the brand offering the reward |
| brandKey | string | Unique key identifier for the brand |
| currencyCode | string | ISO 4217 currency code for the reward denomination |
| minValue | number | Minimum denomination value for open-denomination rewards |
| maxValue | number | Maximum denomination value for open-denomination rewards |
| fixedValue | numbernull | Fixed denomination value; null for open-denomination rewards |
| valueType | string | Whether the reward has a fixed or variable denomination |
| rewardType | string | Category type of the reward (e.g. gift card, prepaid card, donation) |
| status | string | Availability status of the reward item |
| countries | array | ISO 3166-1 alpha-2 country codes where this reward is available |
| createdAt | string | ISO 8601 timestamp when the catalog item was added |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/tango-card/main/json-schema/tango-raas-catalog-item.json",
"title": "Tango RaaS Catalog Item",
"description": "Schema for a reward item in the Tango RaaS catalog",
"type": "object",
"properties": {
"utid": {
"type": "string",
"description": "Universal Token ID — unique identifier for this reward item"
},
"rewardName": {
"type": "string",
"description": "Name of the reward product"
},
"brandName": {
"type": "string",
"description": "Name of the brand offering the reward"
},
"brandKey": {
"type": "string",
"description": "Unique key identifier for the brand"
},
"currencyCode": {
"type": "string",
"pattern": "^[A-Z]{3}$",
"description": "ISO 4217 currency code for the reward denomination"
},
"minValue": {
"type": "number",
"minimum": 0,
"description": "Minimum denomination value for open-denomination rewards"
},
"maxValue": {
"type": "number",
"minimum": 0,
"description": "Maximum denomination value for open-denomination rewards"
},
"fixedValue": {
"type": ["number", "null"],
"minimum": 0,
"description": "Fixed denomination value; null for open-denomination rewards"
},
"valueType": {
"type": "string",
"enum": ["FIXED_VALUE", "VARIABLE_VALUE"],
"description": "Whether the reward has a fixed or variable denomination"
},
"rewardType": {
"type": "string",
"description": "Category type of the reward (e.g. gift card, prepaid card, donation)"
},
"status": {
"type": "string",
"enum": ["ACTIVE", "INACTIVE"],
"description": "Availability status of the reward item"
},
"countries": {
"type": "array",
"items": {
"type": "string",
"pattern": "^[A-Z]{2}$"
},
"description": "ISO 3166-1 alpha-2 country codes where this reward is available"
},
"createdAt": {
"type": "string",
"format": "date-time",
"description": "ISO 8601 timestamp when the catalog item was added"
}
},
"required": ["utid", "rewardName", "brandName", "brandKey", "currencyCode"]
}
Work with this as data
Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.
MCP server
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
Tools for schemas
4 MCP tools reach this
find_json_schemasBrowse and filter every JSON Schema in the catalog.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.
Call it yourself
curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/tango-raas-catalog-item"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Get an API key
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.