Skip to content

Session content — insight (psychoeducation card stack)

Block type: insight · Domain: session-content

Per-template payload for content.sessions.content where template_type='insight'. Edit this file in naluma-directus; mirror into naluma-app/assets/schemas/session-content/ in the same change.

Fields

Field Type Required Allowed values Notes
cards array yes Swipeable cards in authored order. — minItems 1
cards[].number string yes Overline e.g. '1 of 3'. — minLength 1
cards[].title string yes Card title. — minLength 1
cards[].paragraphs array yes Body paragraphs rendered in order under the title. — minItems 1
footer string no Optional footer line (e.g. '90 second read'). Empty string treated as absent.

Example

{
  "cards": [
    {
      "number": "1 of 3",
      "title": "What is tinnitus?",
      "paragraphs": [
        "Tinnitus is the perception of sound — ringing, buzzing, or hissing — without an external source.",
        "It affects around 15% of adults worldwide."
      ]
    },
    {
      "number": "2 of 3",
      "title": "Why does it happen?",
      "paragraphs": [
        "The most common cause is noise-induced hearing loss, which changes how the auditory cortex processes signals."
      ]
    },
    {
      "number": "3 of 3",
      "title": "Can it improve?",
      "paragraphs": [
        "For many people, habituation means the brain learns to treat the sound as unimportant — and distress fades significantly."
      ]
    }
  ],
  "footer": "90 second read"
}