Symphony · Schema

Symphony Message

A message sent or received in a Symphony stream

CollaborationCommunicationsFinancial-ServicesMessagingSecure Communication

Properties

Name Type Description
messageId string Unique identifier for the message
timestamp integer Unix timestamp in milliseconds when the message was sent
message string MessageML content of the message
data string JSON data associated with the message (structured entity data)
attachments array List of file attachments
user object The user who sent the message
stream object The stream the message was sent to
externalRecipients boolean Whether the message was sent to external users
diagnostic string Diagnostic information about message processing
userAgent string User agent string of the client that sent the message
originalFormat string Format of the original message content
sid integer Sequence ID of the message in the stream
View JSON Schema on GitHub

JSON Schema

symphony-message-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://github.com/api-evangelist/symphony/blob/main/json-schema/symphony-message-schema.json",
  "title": "Symphony Message",
  "description": "A message sent or received in a Symphony stream",
  "type": "object",
  "properties": {
    "messageId": {
      "type": "string",
      "description": "Unique identifier for the message"
    },
    "timestamp": {
      "type": "integer",
      "format": "int64",
      "description": "Unix timestamp in milliseconds when the message was sent"
    },
    "message": {
      "type": "string",
      "description": "MessageML content of the message"
    },
    "data": {
      "type": "string",
      "description": "JSON data associated with the message (structured entity data)"
    },
    "attachments": {
      "type": "array",
      "items": {
        "$ref": "#/definitions/Attachment"
      },
      "description": "List of file attachments"
    },
    "user": {
      "$ref": "#/definitions/UserInfo",
      "description": "The user who sent the message"
    },
    "stream": {
      "$ref": "#/definitions/StreamInfo",
      "description": "The stream the message was sent to"
    },
    "externalRecipients": {
      "type": "boolean",
      "description": "Whether the message was sent to external users"
    },
    "diagnostic": {
      "type": "string",
      "description": "Diagnostic information about message processing"
    },
    "userAgent": {
      "type": "string",
      "description": "User agent string of the client that sent the message"
    },
    "originalFormat": {
      "type": "string",
      "description": "Format of the original message content"
    },
    "sid": {
      "type": "integer",
      "format": "int64",
      "description": "Sequence ID of the message in the stream"
    }
  },
  "definitions": {
    "Attachment": {
      "type": "object",
      "properties": {
        "id": {
          "type": "string",
          "description": "Attachment identifier"
        },
        "name": {
          "type": "string",
          "description": "Filename of the attachment"
        },
        "size": {
          "type": "integer",
          "description": "File size in bytes"
        },
        "images": {
          "type": "array",
          "items": { "type": "string" },
          "description": "Image preview URLs"
        }
      }
    },
    "UserInfo": {
      "type": "object",
      "properties": {
        "userId": {
          "type": "integer",
          "format": "int64",
          "description": "Unique user ID"
        },
        "firstName": {
          "type": "string",
          "description": "User first name"
        },
        "lastName": {
          "type": "string",
          "description": "User last name"
        },
        "displayName": {
          "type": "string",
          "description": "User display name"
        },
        "email": {
          "type": "string",
          "format": "email",
          "description": "User email address"
        },
        "username": {
          "type": "string",
          "description": "Symphony username"
        }
      }
    },
    "StreamInfo": {
      "type": "object",
      "properties": {
        "streamId": {
          "type": "string",
          "description": "Unique stream identifier"
        },
        "streamType": {
          "$ref": "#/definitions/StreamType"
        }
      }
    },
    "StreamType": {
      "type": "object",
      "properties": {
        "type": {
          "type": "string",
          "enum": ["IM", "MIM", "ROOM", "POST"],
          "description": "Type of stream: IM (1:1), MIM (multi-party IM), ROOM, or POST"
        }
      }
    }
  }
}

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/symphony-message"
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.