Mubert · JSON Structure

Mubert Track Structure

Structural definition for a Mubert AI-generated music track.

Type: object Properties: 12
AI MusicGenerativeRoyalty-FreeStreamingText-to-MusicImage-to-MusicStemsB2B

MubertTrack is a JSON Structure definition published by Mubert, describing 12 properties. It conforms to the https://json-structure.org/draft/v0/schema meta-schema.

Properties

id session_id playlist_index prompt duration intensity mode key bpm format bitrate created_at

Meta-schema: https://json-structure.org/draft/v0/schema

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/draft/v0/schema",
  "name": "MubertTrack",
  "type": "object",
  "description": "Structural definition for a Mubert AI-generated music track.",
  "properties": {
    "id":            { "type": "string", "format": "uuid", "required": true },
    "session_id":    { "type": "string" },
    "playlist_index":{ "type": "string", "nullable": true },
    "prompt":        { "type": "string", "nullable": true },
    "duration":      { "type": "int32", "required": true },
    "intensity":     { "type": "int32" },
    "mode":          { "type": "string", "enum": ["track", "loop"] },
    "key":           { "type": "string", "nullable": true },
    "bpm":           { "type": "int32", "nullable": true },
    "format":        { "type": "string", "enum": ["mp3", "wav"] },
    "bitrate":       { "type": "int32", "enum": [128, 192, 256, 320] },
    "created_at":    { "type": "string", "format": "date-time", "required": true }
  }
}