7digital · Schema

Tag

A genre/tag label.

MusicStreamingLicensingCatalogueB2BRoyalty ReportingPublic APIs

Properties

Name Type Description
id string
name string
parentId string
View JSON Schema on GitHub

JSON Schema

api-tag-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/7digital/refs/heads/main/json-schema/api-tag-schema.json",
  "title": "Tag",
  "description": "A genre/tag label.",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "example": "rock"
    },
    "name": {
      "type": "string",
      "example": "Rock"
    },
    "parentId": {
      "type": "string",
      "nullable": true,
      "example": null
    }
  }
}