diff --git a/src/schemas/intents.json b/src/schemas/intents.json index d690fa88a..041018322 100644 --- a/src/schemas/intents.json +++ b/src/schemas/intents.json @@ -383,6 +383,9 @@ { "$ref": "#/definitions/TVSeasonEntity" }, + { + "$ref": "#/definitions/MusicEntity" + }, { "$ref": "#/definitions/AdditionalEntity" }, @@ -458,6 +461,26 @@ "entityId" ] }, + "MusicEntity": { + "title": "MusicEntity", + "type": "object", + "properties": { + "entityType": { + "const": "music" + }, + "musicType": { + "$ref": "https://meta.comcast.com/firebolt/entertainment#/definitions/MusicType" + }, + "entityId": { + "type": "string" + } + }, + "required": [ + "entityType", + "musicType", + "entityId" + ] + }, "MovieEntity": { "title": "MovieEntity", "allOf": [ @@ -690,6 +713,9 @@ { "$ref": "#/definitions/PlaylistEntity" }, + { + "$ref": "#/definitions/MusicEntity" + }, { "$ref": "#/definitions/AdditionalEntity" }