Mubert · JSON Structure

Mubert License Structure

Structural definition for a Mubert company license: gates features, bitrates, intensities, modes, formats, and per-customer quotas.

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

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

Properties

id company_id type status webhook_url webhook_enabled track_expiration_time allow_all_features features allow_all_bitrates default_bitrate bitrates limits

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

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/draft/v0/schema",
  "name": "MubertLicense",
  "type": "object",
  "description": "Structural definition for a Mubert company license: gates features, bitrates, intensities, modes, formats, and per-customer quotas.",
  "properties": {
    "id":                    { "type": "string", "format": "uuid", "required": true },
    "company_id":            { "type": "string", "format": "uuid", "required": true },
    "type":                  { "type": "string" },
    "status":                { "type": "string" },
    "webhook_url":           { "type": "string", "format": "uri", "nullable": true },
    "webhook_enabled":       { "type": "boolean" },
    "track_expiration_time": { "type": "int32" },
    "allow_all_features":    { "type": "boolean" },
    "features":              { "type": "array", "items": { "type": "string" } },
    "allow_all_bitrates":    { "type": "boolean" },
    "default_bitrate":       { "type": "int32" },
    "bitrates":              { "type": "array", "items": { "type": "int32" } },
    "limits": {
      "type": "object",
      "properties": {
        "tracks_limit":               { "type": "int32" },
        "tracks_period":              { "type": "string" },
        "streaming_limit_minutes":    { "type": "int32" },
        "streaming_period":           { "type": "string" },
        "customer_tracks_limit":      { "type": "int32" },
        "customer_streaming_minutes": { "type": "int32" }
      }
    }
  }
}