Fyno · Schema

Fyno User Profile

Schema for creating or updating a user profile in the Fyno platform.

NotificationMessagingCommunicationsPush NotificationsEmailSMSWhatsAppIn-AppOrchestrationMulti-Channel

Properties

Name Type Description
distinct_id string Unique identifier for the user within your system.
name string Full name of the user.
channels object Channel-specific destination identifiers for the user.
properties object Custom user properties for segmentation and personalization.
timezone string IANA timezone identifier for the user, used for DND and scheduling.
View JSON Schema on GitHub

JSON Schema

fyno-user-profile-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/fyno/main/json-schema/fyno-user-profile-schema.json",
  "title": "Fyno User Profile",
  "description": "Schema for creating or updating a user profile in the Fyno platform.",
  "type": "object",
  "required": ["distinct_id"],
  "properties": {
    "distinct_id": {
      "type": "string",
      "description": "Unique identifier for the user within your system.",
      "example": "user-12345"
    },
    "name": {
      "type": "string",
      "description": "Full name of the user.",
      "example": "Jane Doe"
    },
    "channels": {
      "type": "object",
      "description": "Channel-specific destination identifiers for the user.",
      "properties": {
        "sms": {
          "type": "object",
          "properties": {
            "channel_data": {
              "type": "object",
              "properties": {
                "number": {
                  "type": "string",
                  "description": "Phone number in E.164 format.",
                  "example": "919XXXXXXXXX"
                }
              },
              "required": ["number"]
            }
          }
        },
        "whatsapp": {
          "type": "object",
          "properties": {
            "channel_data": {
              "type": "object",
              "properties": {
                "number": {
                  "type": "string",
                  "description": "WhatsApp phone number in E.164 format.",
                  "example": "919XXXXXXXXX"
                }
              },
              "required": ["number"]
            }
          }
        },
        "email": {
          "type": "object",
          "properties": {
            "channel_data": {
              "type": "object",
              "properties": {
                "email": {
                  "type": "string",
                  "format": "email",
                  "description": "Email address of the user.",
                  "example": "jane@example.com"
                }
              },
              "required": ["email"]
            }
          }
        },
        "push": {
          "type": "object",
          "properties": {
            "channel_data": {
              "type": "array",
              "items": {
                "type": "object",
                "properties": {
                  "token": { "type": "string" },
                  "provider": { "type": "string" }
                }
              }
            }
          }
        },
        "inapp": {
          "type": "object",
          "properties": {
            "channel_data": {
              "type": "object",
              "properties": {
                "user_id": { "type": "string" }
              }
            }
          }
        }
      },
      "additionalProperties": true
    },
    "properties": {
      "type": "object",
      "description": "Custom user properties for segmentation and personalization.",
      "additionalProperties": true,
      "example": {
        "plan": "growth",
        "country": "IN",
        "ltv": 4500
      }
    },
    "timezone": {
      "type": "string",
      "description": "IANA timezone identifier for the user, used for DND and scheduling.",
      "example": "Asia/Kolkata"
    }
  }
}

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.
All 92 tools →

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/fyno-user-profile"
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.