Sentiment Summary

Renders an emotional summary and sentiment tracker for a call or meeting, showing positive/negative/neutral mix, sentiment index progress arc, and emotional journey area timeline.

Surfaces
webmeet-stageapps-script-web
Fields
FieldType
titlestring (optional, e.g., 'Call Sentiment & Mood Analysis')optional
sentiment_indexnumber representing overall positive sentiment percentage (0-100, e.g., 78)required
emotional_journeylist of numbers representing call sentiment score over time intervals (values -1.0 to 1.0, e.g., [0.1, -0.2, 0.4, 0.8, 0.6])required
themeslist of dictionaries representing key themes with weights or moods: [{'theme': 'Technical Alignment', 'mood': 'Analytical', 'score': 85}, ...]required
Example payload
{
  "type": "sentiment_summary",
  "sentiment_index": 1,
  "emotional_journey": 1,
  "themes": [
    {
      "label": "Positive",
      "count": 42
    },
    {
      "label": "Neutral",
      "count": 18
    },
    {
      "label": "Negative",
      "count": 7
    }
  ]
}
ARD catalog entry
{
  "identifier": "urn:air:a2uicatalog.ai:atom:sentiment_summary",
  "displayName": "Sentiment Summary",
  "type": "application/vnd.a2ui.atom+json",
  "url": "https://a2uicatalog.ai/atoms/sentiment_summary",
  "capabilities": [
    "web",
    "meet-stage",
    "apps-script-web"
  ],
  "description": "Renders an emotional summary and sentiment tracker for a call or meeting, showing positive/negative/neutral mix, sentiment index progress arc, and emotional journey area timeline.",
  "representativeQueries": [
    "show a meeting sentiment analyzer with index arc and timeline chart",
    "renders an emotional summary and sentiment tracker for a call or meeting, showing positive/negative/",
    "render a sentiment summary"
  ]
}
← Full ARD catalog Try it live →
Deploy your own renderer

The renderer is open source. Deploy your own instance in 4 commands — you own the URL, no dependency on the demo endpoint.

git clone https://github.com/a2uicatalog/a2ui
cd apps-script-surface/gas-schema-renderer
clasp push && clasp deploy
Full deploy guide →