Rainbow Contact
Schema for a Rainbow CPaaS contact / user profile
CommunicationsCPaaSChatVoiceVideoTelephonyMessagingCollaborationUnified Communications
Properties
| Name |
Type |
Description |
| id |
string |
Unique contact identifier |
| displayName |
string |
Contact's display name |
| firstName |
string |
|
| lastName |
string |
|
| emails |
array |
|
| phoneNumbers |
array |
|
| presence |
object |
|
| company |
string |
|
| jobTitle |
string |
|
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://openrainbow.com/schemas/contact",
"title": "Rainbow Contact",
"description": "Schema for a Rainbow CPaaS contact / user profile",
"type": "object",
"required": ["id", "displayName"],
"properties": {
"id": {
"type": "string",
"description": "Unique contact identifier"
},
"displayName": {
"type": "string",
"description": "Contact's display name"
},
"firstName": {
"type": "string"
},
"lastName": {
"type": "string"
},
"emails": {
"type": "array",
"items": {
"type": "object",
"properties": {
"value": { "type": "string", "format": "email" },
"type": { "type": "string", "enum": ["work", "personal", "other"] }
}
}
},
"phoneNumbers": {
"type": "array",
"items": {
"type": "object",
"properties": {
"value": { "type": "string" },
"type": { "type": "string", "enum": ["work", "mobile", "home", "other"] }
}
}
},
"presence": {
"$ref": "#/$defs/Presence"
},
"company": {
"type": "string"
},
"jobTitle": {
"type": "string"
}
},
"$defs": {
"Presence": {
"type": "object",
"properties": {
"status": {
"type": "string",
"enum": ["online", "away", "busy", "dnd", "offline"]
},
"statusMessage": { "type": "string" },
"since": { "type": "string", "format": "date-time" }
}
}
}
}
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.
All 92 tools
Call it yourself
curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/rainbow-contact"
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 email required.
A second provider on the same verified email joins the account you already have.