Skip to main content
HTML5 audio element.
{
  "type": "object",
  "properties": {
    "type": {
      "const": "Audio",
      "default": "Audio",
      "type": "string"
    },
    "id": {
      "type": [
        "string",
        "null"
      ],
      "default": null,
      "description": "HTML id attribute for CSS targeting. Applied to the outermost element."
    },
    "cssClass": {
      "type": [
        "string",
        "null"
      ],
      "default": null,
      "description": "CSS/Tailwind classes for styling. Accepts a Responsive() for breakpoint-aware classes."
    },
    "src": {
      "description": "Audio URL",
      "type": "string"
    },
    "controls": {
      "default": true,
      "description": "Show playback controls",
      "type": "boolean"
    },
    "autoplay": {
      "default": false,
      "description": "Auto-start playback",
      "type": "boolean"
    },
    "loop": {
      "default": false,
      "description": "Loop playback",
      "type": "boolean"
    },
    "muted": {
      "default": false,
      "description": "Mute audio",
      "type": "boolean"
    }
  },
  "required": [
    "type",
    "src"
  ]
}