Skip to content

Commit

Permalink
Merge branch 'next' into FIRE-292
Browse files Browse the repository at this point in the history
  • Loading branch information
jlacivita authored Feb 7, 2024
2 parents da4d479 + 22c9b71 commit 8de62ac
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions src/schemas/intents.json
Original file line number Diff line number Diff line change
Expand Up @@ -383,6 +383,9 @@
{
"$ref": "#/definitions/TVSeasonEntity"
},
{
"$ref": "#/definitions/MusicEntity"
},
{
"$ref": "#/definitions/AdditionalEntity"
},
Expand Down Expand Up @@ -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": [
Expand Down Expand Up @@ -690,6 +713,9 @@
{
"$ref": "#/definitions/PlaylistEntity"
},
{
"$ref": "#/definitions/MusicEntity"
},
{
"$ref": "#/definitions/AdditionalEntity"
}
Expand Down

0 comments on commit 8de62ac

Please sign in to comment.