{ "openapi": "3.0.1", "info": { "title": "Blaze Feed API", "version": "1.0" }, "servers": [ { "url": "/api/blazefeed" } ], "paths": { "/v1/stories": { "get": { "tags": [ "Feed" ], "parameters": [ { "name": "Title", "in": "query", "schema": { "type": "string" } }, { "name": "LabelsFilterExpression", "in": "query", "schema": { "type": "string" } }, { "name": "Statuses", "in": "query", "schema": { "type": "array", "items": { "$ref": "#/components/schemas/ContentStatus" } } }, { "name": "Geo", "in": "query", "schema": { "type": "string" } }, { "name": "OnlyLive", "in": "query", "schema": { "type": "boolean" } }, { "name": "UpdateTime.From", "in": "query", "schema": { "type": "string" } }, { "name": "UpdateTime.To", "in": "query", "schema": { "type": "string" } }, { "name": "CreateTime.From", "in": "query", "schema": { "type": "string" } }, { "name": "CreateTime.To", "in": "query", "schema": { "type": "string" } }, { "name": "Entities.Game.WscId", "in": "query", "schema": { "type": "integer", "format": "int32" } }, { "name": "Entities.Game.ServiceProviderId", "in": "query", "schema": { "type": "string" } }, { "name": "Entities.Team.WscId", "in": "query", "schema": { "type": "integer", "format": "int32" } }, { "name": "Entities.Team.ServiceProviderId", "in": "query", "schema": { "type": "string" } }, { "name": "Entities.Player.WscId", "in": "query", "schema": { "type": "integer", "format": "int32" } }, { "name": "Entities.Player.ServiceProviderId", "in": "query", "schema": { "type": "string" } }, { "name": "Entities.Round.WscId", "in": "query", "schema": { "type": "integer", "format": "int32" } }, { "name": "Entities.Round.ServiceProviderId", "in": "query", "schema": { "type": "string" } }, { "name": "Entities.Season.WscId", "in": "query", "schema": { "type": "integer", "format": "int32" } }, { "name": "Entities.Season.ServiceProviderId", "in": "query", "schema": { "type": "string" } }, { "name": "Entities.IdType", "in": "query", "schema": { "$ref": "#/components/schemas/EntityIdType" } }, { "name": "PageNum", "in": "query", "schema": { "maximum": 2147483647, "minimum": 0, "type": "integer", "format": "int32" } }, { "name": "PageSize", "in": "query", "schema": { "maximum": 2147483647, "minimum": 0, "type": "integer", "format": "int32" } }, { "name": "ApiKey", "in": "query", "description": "Api Key Authentication" } ], "responses": { "200": { "description": "OK", "content": { "text/plain; x-api-version=1.0": { "schema": { "$ref": "#/components/schemas/StoryDTOPaginationSearchResponse" } }, "application/json; x-api-version=1.0": { "schema": { "$ref": "#/components/schemas/StoryDTOPaginationSearchResponse" } }, "text/json; x-api-version=1.0": { "schema": { "$ref": "#/components/schemas/StoryDTOPaginationSearchResponse" } } } } } } }, "/v1/stories/ids": { "get": { "tags": [ "Feed" ], "parameters": [ { "name": "ContentIds", "in": "query", "required": true, "schema": { "type": "array", "items": { "type": "string" } } }, { "name": "PageNum", "in": "query", "schema": { "maximum": 2147483647, "minimum": 0, "type": "integer", "format": "int32" } }, { "name": "PageSize", "in": "query", "schema": { "maximum": 2147483647, "minimum": 0, "type": "integer", "format": "int32" } }, { "name": "ApiKey", "in": "query", "description": "Api Key Authentication" } ], "responses": { "200": { "description": "OK", "content": { "text/plain; x-api-version=1.0": { "schema": { "$ref": "#/components/schemas/StoryDTOPaginationSearchResponse" } }, "application/json; x-api-version=1.0": { "schema": { "$ref": "#/components/schemas/StoryDTOPaginationSearchResponse" } }, "text/json; x-api-version=1.0": { "schema": { "$ref": "#/components/schemas/StoryDTOPaginationSearchResponse" } } } } } } }, "/v1/moments": { "get": { "tags": [ "Feed" ], "parameters": [ { "name": "Title", "in": "query", "schema": { "type": "string" } }, { "name": "LabelsFilterExpression", "in": "query", "schema": { "type": "string" } }, { "name": "Statuses", "in": "query", "schema": { "type": "array", "items": { "$ref": "#/components/schemas/ContentStatus" } } }, { "name": "Geo", "in": "query", "schema": { "type": "string" } }, { "name": "OnlyLive", "in": "query", "schema": { "type": "boolean" } }, { "name": "UpdateTime.From", "in": "query", "schema": { "type": "string" } }, { "name": "UpdateTime.To", "in": "query", "schema": { "type": "string" } }, { "name": "CreateTime.From", "in": "query", "schema": { "type": "string" } }, { "name": "CreateTime.To", "in": "query", "schema": { "type": "string" } }, { "name": "Entities.Game.WscId", "in": "query", "schema": { "type": "integer", "format": "int32" } }, { "name": "Entities.Game.ServiceProviderId", "in": "query", "schema": { "type": "string" } }, { "name": "Entities.Team.WscId", "in": "query", "schema": { "type": "integer", "format": "int32" } }, { "name": "Entities.Team.ServiceProviderId", "in": "query", "schema": { "type": "string" } }, { "name": "Entities.Player.WscId", "in": "query", "schema": { "type": "integer", "format": "int32" } }, { "name": "Entities.Player.ServiceProviderId", "in": "query", "schema": { "type": "string" } }, { "name": "Entities.Round.WscId", "in": "query", "schema": { "type": "integer", "format": "int32" } }, { "name": "Entities.Round.ServiceProviderId", "in": "query", "schema": { "type": "string" } }, { "name": "Entities.Season.WscId", "in": "query", "schema": { "type": "integer", "format": "int32" } }, { "name": "Entities.Season.ServiceProviderId", "in": "query", "schema": { "type": "string" } }, { "name": "Entities.IdType", "in": "query", "schema": { "$ref": "#/components/schemas/EntityIdType" } }, { "name": "PageNum", "in": "query", "schema": { "maximum": 2147483647, "minimum": 0, "type": "integer", "format": "int32" } }, { "name": "PageSize", "in": "query", "schema": { "maximum": 2147483647, "minimum": 0, "type": "integer", "format": "int32" } }, { "name": "ApiKey", "in": "query", "description": "Api Key Authentication" } ], "responses": { "200": { "description": "OK", "content": { "text/plain; x-api-version=1.0": { "schema": { "$ref": "#/components/schemas/MomentDTOPaginationSearchResponse" } }, "application/json; x-api-version=1.0": { "schema": { "$ref": "#/components/schemas/MomentDTOPaginationSearchResponse" } }, "text/json; x-api-version=1.0": { "schema": { "$ref": "#/components/schemas/MomentDTOPaginationSearchResponse" } } } } } } }, "/v1/moments/ids": { "get": { "tags": [ "Feed" ], "parameters": [ { "name": "ContentIds", "in": "query", "required": true, "schema": { "type": "array", "items": { "type": "string" } } }, { "name": "PageNum", "in": "query", "schema": { "maximum": 2147483647, "minimum": 0, "type": "integer", "format": "int32" } }, { "name": "PageSize", "in": "query", "schema": { "maximum": 2147483647, "minimum": 0, "type": "integer", "format": "int32" } }, { "name": "ApiKey", "in": "query", "description": "Api Key Authentication" } ], "responses": { "200": { "description": "OK", "content": { "text/plain; x-api-version=1.0": { "schema": { "$ref": "#/components/schemas/MomentDTOPaginationSearchResponse" } }, "application/json; x-api-version=1.0": { "schema": { "$ref": "#/components/schemas/MomentDTOPaginationSearchResponse" } }, "text/json; x-api-version=1.0": { "schema": { "$ref": "#/components/schemas/MomentDTOPaginationSearchResponse" } } } } } } }, "/v1/videos": { "get": { "tags": [ "Feed" ], "parameters": [ { "name": "Title", "in": "query", "schema": { "type": "string" } }, { "name": "LabelsFilterExpression", "in": "query", "schema": { "type": "string" } }, { "name": "Statuses", "in": "query", "schema": { "type": "array", "items": { "$ref": "#/components/schemas/ContentStatus" } } }, { "name": "Geo", "in": "query", "schema": { "type": "string" } }, { "name": "OnlyLive", "in": "query", "schema": { "type": "boolean" } }, { "name": "UpdateTime.From", "in": "query", "schema": { "type": "string" } }, { "name": "UpdateTime.To", "in": "query", "schema": { "type": "string" } }, { "name": "CreateTime.From", "in": "query", "schema": { "type": "string" } }, { "name": "CreateTime.To", "in": "query", "schema": { "type": "string" } }, { "name": "Entities.Game.WscId", "in": "query", "schema": { "type": "integer", "format": "int32" } }, { "name": "Entities.Game.ServiceProviderId", "in": "query", "schema": { "type": "string" } }, { "name": "Entities.Team.WscId", "in": "query", "schema": { "type": "integer", "format": "int32" } }, { "name": "Entities.Team.ServiceProviderId", "in": "query", "schema": { "type": "string" } }, { "name": "Entities.Player.WscId", "in": "query", "schema": { "type": "integer", "format": "int32" } }, { "name": "Entities.Player.ServiceProviderId", "in": "query", "schema": { "type": "string" } }, { "name": "Entities.Round.WscId", "in": "query", "schema": { "type": "integer", "format": "int32" } }, { "name": "Entities.Round.ServiceProviderId", "in": "query", "schema": { "type": "string" } }, { "name": "Entities.Season.WscId", "in": "query", "schema": { "type": "integer", "format": "int32" } }, { "name": "Entities.Season.ServiceProviderId", "in": "query", "schema": { "type": "string" } }, { "name": "Entities.IdType", "in": "query", "schema": { "$ref": "#/components/schemas/EntityIdType" } }, { "name": "PageNum", "in": "query", "schema": { "maximum": 2147483647, "minimum": 0, "type": "integer", "format": "int32" } }, { "name": "PageSize", "in": "query", "schema": { "maximum": 2147483647, "minimum": 0, "type": "integer", "format": "int32" } }, { "name": "ApiKey", "in": "query", "description": "Api Key Authentication" } ], "responses": { "200": { "description": "OK", "content": { "text/plain; x-api-version=1.0": { "schema": { "$ref": "#/components/schemas/VideoDTOPaginationSearchResponse" } }, "application/json; x-api-version=1.0": { "schema": { "$ref": "#/components/schemas/VideoDTOPaginationSearchResponse" } }, "text/json; x-api-version=1.0": { "schema": { "$ref": "#/components/schemas/VideoDTOPaginationSearchResponse" } } } } } } }, "/v1/videos/ids": { "get": { "tags": [ "Feed" ], "parameters": [ { "name": "ContentIds", "in": "query", "required": true, "schema": { "type": "array", "items": { "type": "string" } } }, { "name": "PageNum", "in": "query", "schema": { "maximum": 2147483647, "minimum": 0, "type": "integer", "format": "int32" } }, { "name": "PageSize", "in": "query", "schema": { "maximum": 2147483647, "minimum": 0, "type": "integer", "format": "int32" } }, { "name": "ApiKey", "in": "query", "description": "Api Key Authentication" } ], "responses": { "200": { "description": "OK", "content": { "text/plain; x-api-version=1.0": { "schema": { "$ref": "#/components/schemas/VideoDTOPaginationSearchResponse" } }, "application/json; x-api-version=1.0": { "schema": { "$ref": "#/components/schemas/VideoDTOPaginationSearchResponse" } }, "text/json; x-api-version=1.0": { "schema": { "$ref": "#/components/schemas/VideoDTOPaginationSearchResponse" } } } } } } }, "/v1/recommendations/trending": { "get": { "tags": [ "Feed" ], "parameters": [ { "name": "Geo", "in": "query", "schema": { "type": "string" } }, { "name": "ContentType", "in": "query", "required": true, "schema": { "type": "string" } }, { "name": "ApiKey", "in": "query", "description": "Api Key Authentication" } ], "responses": { "200": { "description": "OK", "content": { "text/plain; x-api-version=1.0": { "schema": { "$ref": "#/components/schemas/RecommendationsResponseDTO" } }, "application/json; x-api-version=1.0": { "schema": { "$ref": "#/components/schemas/RecommendationsResponseDTO" } }, "text/json; x-api-version=1.0": { "schema": { "$ref": "#/components/schemas/RecommendationsResponseDTO" } } } } } } } }, "components": { "schemas": { "AssetVideoAspectRatio": { "enum": [ "Square", "Horizontal", "Vertical", "Unknown", "FourToFive", "FiveToFour", "ThreeToFour", "FourToThree", "TwoToOne", "OneToTwo", "SevenToEight", "EightToSeven", "TwoToThree", "ThreeToOne", "ThreeToTwo", "OneToThree", "ThreeToEight", "FiveToOne" ], "type": "string" }, "ContentMetadata": { "type": "object", "properties": { "competition": { "$ref": "#/components/schemas/MetadataEntityIds" }, "competitions": { "type": "array", "items": { "$ref": "#/components/schemas/MetadataEntityIds" }, "nullable": true }, "game": { "$ref": "#/components/schemas/MetadataEntityIds" }, "team": { "$ref": "#/components/schemas/MetadataEntityIds" }, "player": { "$ref": "#/components/schemas/MetadataEntityIds" }, "round": { "$ref": "#/components/schemas/MetadataEntityIds" }, "season": { "$ref": "#/components/schemas/MetadataEntityIds" } }, "additionalProperties": false }, "ContentStatus": { "enum": [ "Draft", "Active" ], "type": "string" }, "ContentType": { "enum": [ "Story", "Moment", "Video", "Stream" ], "type": "string" }, "CreationSettings": { "type": "object", "properties": { "creationTimePeriod": { "$ref": "#/components/schemas/ExecutionTimeType" }, "ruleName": { "type": "string", "nullable": true }, "storyType": { "type": "string", "nullable": true }, "contentType": { "type": "string", "nullable": true, "writeOnly": true } }, "additionalProperties": false }, "EntityIdType": { "enum": [ "WscId", "ServiceProviderId" ], "type": "string" }, "ExecutionTimeType": { "enum": [ "None", "PreGame", "InGame", "PostGame" ], "type": "string" }, "GameInfoDto": { "type": "object", "properties": { "gameDate": { "type": "string", "nullable": true }, "gameStatus": { "type": "string", "nullable": true }, "stadium": { "type": "string", "nullable": true }, "participants": { "type": "array", "items": { "$ref": "#/components/schemas/GameParticipantDto" }, "nullable": true } }, "additionalProperties": false }, "GameParticipantDto": { "type": "object", "properties": { "name": { "type": "string", "nullable": true }, "ids": { "$ref": "#/components/schemas/MetadataEntityIds" }, "type": { "type": "string", "nullable": true }, "score": { "nullable": true } }, "additionalProperties": false }, "GeoTargeting": { "type": "object", "properties": { "includedGeos": { "type": "array", "items": { "type": "string" }, "nullable": true }, "excludedGeos": { "type": "array", "items": { "type": "string" }, "nullable": true } }, "additionalProperties": false }, "IContentDTO": { "type": "object", "properties": { "id": { "type": "string", "nullable": true }, "type": { "$ref": "#/components/schemas/ContentType" }, "title": { "type": "string", "nullable": true }, "description": { "type": "string", "nullable": true }, "version": { "type": "integer", "format": "int64" }, "aspectRatios": { "type": "array", "items": { "$ref": "#/components/schemas/AssetVideoAspectRatio" }, "nullable": true }, "status": { "$ref": "#/components/schemas/ContentStatus" }, "createTime": { "type": "string", "format": "date-time" }, "updateTime": { "type": "string", "format": "date-time" }, "thumbnails": { "type": "array", "items": { "$ref": "#/components/schemas/ThumbnailDTO" }, "nullable": true }, "geoTargeting": { "$ref": "#/components/schemas/GeoTargeting" }, "metadata": { "$ref": "#/components/schemas/ContentMetadata" }, "executionTimeType": { "$ref": "#/components/schemas/ExecutionTimeType" }, "labels": { "type": "array", "items": { "$ref": "#/components/schemas/LabelDTO" }, "nullable": true }, "extraInfo": { "type": "object", "additionalProperties": { "type": "string", "nullable": true }, "nullable": true }, "defaultLanguage": { "$ref": "#/components/schemas/Language" }, "translatedTitles": { "type": "object", "properties": { "und": { "type": "string" }, "af": { "type": "string" }, "sq": { "type": "string" }, "ar": { "type": "string" }, "ar_DZ": { "type": "string" }, "ar_BH": { "type": "string" }, "ar_EG": { "type": "string" }, "ar_IQ": { "type": "string" }, "ar_JO": { "type": "string" }, "ar_KW": { "type": "string" }, "ar_LB": { "type": "string" }, "ar_LY": { "type": "string" }, "ar_MA": { "type": "string" }, "ar_OM": { "type": "string" }, "ar_QA": { "type": "string" }, "ar_SA": { "type": "string" }, "ar_SY": { "type": "string" }, "ar_TN": { "type": "string" }, "ar_AE": { "type": "string" }, "ar_YE": { "type": "string" }, "eu": { "type": "string" }, "be": { "type": "string" }, "bg": { "type": "string" }, "ca": { "type": "string" }, "zh": { "type": "string" }, "zh_HK": { "type": "string" }, "zh_CN": { "type": "string" }, "zh_SG": { "type": "string" }, "zh_TW": { "type": "string" }, "hr": { "type": "string" }, "cs": { "type": "string" }, "da": { "type": "string" }, "nl": { "type": "string" }, "nl_BE": { "type": "string" }, "en": { "type": "string" }, "en_AU": { "type": "string" }, "en_BZ": { "type": "string" }, "en_CA": { "type": "string" }, "en_IE": { "type": "string" }, "en_JM": { "type": "string" }, "en_NZ": { "type": "string" }, "en_ZA": { "type": "string" }, "en_TT": { "type": "string" }, "en_GB": { "type": "string" }, "en_US": { "type": "string" }, "et": { "type": "string" }, "fo": { "type": "string" }, "fa": { "type": "string" }, "fi": { "type": "string" }, "fr": { "type": "string" }, "fr_BE": { "type": "string" }, "fr_CA": { "type": "string" }, "fr_LU": { "type": "string" }, "fr_CH": { "type": "string" }, "gd": { "type": "string" }, "de": { "type": "string" }, "de_AT": { "type": "string" }, "de_LI": { "type": "string" }, "de_LU": { "type": "string" }, "de_CH": { "type": "string" }, "el": { "type": "string" }, "he": { "type": "string" }, "hi": { "type": "string" }, "hu": { "type": "string" }, "is": { "type": "string" }, "id": { "type": "string" }, "ga": { "type": "string" }, "it": { "type": "string" }, "it_CH": { "type": "string" }, "ja": { "type": "string" }, "ko": { "type": "string" }, "ko_JOHAB": { "type": "string" }, "ku": { "type": "string" }, "lv": { "type": "string" }, "lt": { "type": "string" }, "mk": { "type": "string" }, "ml": { "type": "string" }, "ms": { "type": "string" }, "mt": { "type": "string" }, "no": { "type": "string" }, "nb": { "type": "string" }, "nn": { "type": "string" }, "pl": { "type": "string" }, "pt": { "type": "string" }, "pt_BR": { "type": "string" }, "pt_PT": { "type": "string" }, "pa": { "type": "string" }, "rm": { "type": "string" }, "ro": { "type": "string" }, "ro_MD": { "type": "string" }, "ru": { "type": "string" }, "ru_MD": { "type": "string" }, "sr": { "type": "string" }, "sk": { "type": "string" }, "sl": { "type": "string" }, "sb": { "type": "string" }, "es": { "type": "string" }, "es_AR": { "type": "string" }, "es_BO": { "type": "string" }, "es_CL": { "type": "string" }, "es_CO": { "type": "string" }, "es_CR": { "type": "string" }, "es_DO": { "type": "string" }, "es_EC": { "type": "string" }, "es_SV": { "type": "string" }, "es_GT": { "type": "string" }, "es_HN": { "type": "string" }, "es_MX": { "type": "string" }, "es_NI": { "type": "string" }, "es_PA": { "type": "string" }, "es_PY": { "type": "string" }, "es_PE": { "type": "string" }, "es_PR": { "type": "string" }, "es_UY": { "type": "string" }, "es_VE": { "type": "string" }, "sv": { "type": "string" }, "sv_FI": { "type": "string" }, "th": { "type": "string" }, "ts": { "type": "string" }, "tn": { "type": "string" }, "tr": { "type": "string" }, "uk": { "type": "string" }, "ur": { "type": "string" }, "ve": { "type": "string" }, "vi": { "type": "string" }, "cy": { "type": "string" }, "xh": { "type": "string" }, "yi": { "type": "string" }, "zu": { "type": "string" } }, "additionalProperties": false, "nullable": true }, "competitionId": { "type": "string", "nullable": true }, "publishMethod": { "type": "string", "nullable": true }, "creationSettings": { "$ref": "#/components/schemas/CreationSettings" }, "game": { "$ref": "#/components/schemas/GameInfoDto" }, "rating": { "type": "string", "nullable": true } }, "additionalProperties": false }, "LabelDTO": { "type": "object", "properties": { "title": { "type": "string", "nullable": true }, "identifier": { "type": "string", "nullable": true } }, "additionalProperties": false }, "Language": { "enum": [ "und", "af", "sq", "ar", "ar_DZ", "ar_BH", "ar_EG", "ar_IQ", "ar_JO", "ar_KW", "ar_LB", "ar_LY", "ar_MA", "ar_OM", "ar_QA", "ar_SA", "ar_SY", "ar_TN", "ar_AE", "ar_YE", "eu", "be", "bg", "ca", "zh", "zh_HK", "zh_CN", "zh_SG", "zh_TW", "hr", "cs", "da", "nl", "nl_BE", "en", "en_AU", "en_BZ", "en_CA", "en_IE", "en_JM", "en_NZ", "en_ZA", "en_TT", "en_GB", "en_US", "et", "fo", "fa", "fi", "fr", "fr_BE", "fr_CA", "fr_LU", "fr_CH", "gd", "de", "de_AT", "de_LI", "de_LU", "de_CH", "el", "he", "hi", "hu", "is", "id", "ga", "it", "it_CH", "ja", "ko", "ko_JOHAB", "ku", "lv", "lt", "mk", "ml", "ms", "mt", "no", "nb", "nn", "pl", "pt", "pt_BR", "pt_PT", "pa", "rm", "ro", "ro_MD", "ru", "ru_MD", "sr", "sk", "sl", "sb", "es", "es_AR", "es_BO", "es_CL", "es_CO", "es_CR", "es_DO", "es_EC", "es_SV", "es_GT", "es_HN", "es_MX", "es_NI", "es_PA", "es_PY", "es_PE", "es_PR", "es_UY", "es_VE", "sv", "sv_FI", "th", "ts", "tn", "tr", "uk", "ur", "ve", "vi", "cy", "xh", "yi", "zu" ], "type": "string" }, "MetadataEntityIds": { "type": "object", "properties": { "provider": { "type": "string", "nullable": true }, "providerId": { "type": "string", "nullable": true }, "wscId": { "type": "integer", "format": "int32" } }, "additionalProperties": false }, "MomentDTO": { "type": "object", "properties": { "type": { "$ref": "#/components/schemas/ContentType" }, "htmlUrl": { "type": "string", "nullable": true }, "id": { "type": "string", "nullable": true }, "title": { "type": "string", "nullable": true }, "description": { "type": "string", "nullable": true }, "subtitle": { "type": "string", "nullable": true }, "version": { "type": "integer", "format": "int64" }, "aspectRatios": { "type": "array", "items": { "$ref": "#/components/schemas/AssetVideoAspectRatio" }, "nullable": true }, "videoRenditions": { "type": "array", "items": { "$ref": "#/components/schemas/VideoRenditionDTO" }, "nullable": true }, "status": { "$ref": "#/components/schemas/ContentStatus" }, "duration": { "type": "string", "nullable": true }, "createTime": { "type": "string", "format": "date-time" }, "updateTime": { "type": "string", "format": "date-time" }, "thumbnails": { "type": "array", "items": { "$ref": "#/components/schemas/ThumbnailDTO" }, "nullable": true }, "geoTargeting": { "$ref": "#/components/schemas/GeoTargeting" }, "metadata": { "$ref": "#/components/schemas/ContentMetadata" }, "executionTimeType": { "$ref": "#/components/schemas/ExecutionTimeType" }, "labels": { "type": "array", "items": { "$ref": "#/components/schemas/LabelDTO" }, "nullable": true }, "extraInfo": { "type": "object", "additionalProperties": { "type": "string", "nullable": true }, "nullable": true }, "defaultLanguage": { "$ref": "#/components/schemas/Language" }, "translatedTitles": { "type": "object", "properties": { "und": { "type": "string" }, "af": { "type": "string" }, "sq": { "type": "string" }, "ar": { "type": "string" }, "ar_DZ": { "type": "string" }, "ar_BH": { "type": "string" }, "ar_EG": { "type": "string" }, "ar_IQ": { "type": "string" }, "ar_JO": { "type": "string" }, "ar_KW": { "type": "string" }, "ar_LB": { "type": "string" }, "ar_LY": { "type": "string" }, "ar_MA": { "type": "string" }, "ar_OM": { "type": "string" }, "ar_QA": { "type": "string" }, "ar_SA": { "type": "string" }, "ar_SY": { "type": "string" }, "ar_TN": { "type": "string" }, "ar_AE": { "type": "string" }, "ar_YE": { "type": "string" }, "eu": { "type": "string" }, "be": { "type": "string" }, "bg": { "type": "string" }, "ca": { "type": "string" }, "zh": { "type": "string" }, "zh_HK": { "type": "string" }, "zh_CN": { "type": "string" }, "zh_SG": { "type": "string" }, "zh_TW": { "type": "string" }, "hr": { "type": "string" }, "cs": { "type": "string" }, "da": { "type": "string" }, "nl": { "type": "string" }, "nl_BE": { "type": "string" }, "en": { "type": "string" }, "en_AU": { "type": "string" }, "en_BZ": { "type": "string" }, "en_CA": { "type": "string" }, "en_IE": { "type": "string" }, "en_JM": { "type": "string" }, "en_NZ": { "type": "string" }, "en_ZA": { "type": "string" }, "en_TT": { "type": "string" }, "en_GB": { "type": "string" }, "en_US": { "type": "string" }, "et": { "type": "string" }, "fo": { "type": "string" }, "fa": { "type": "string" }, "fi": { "type": "string" }, "fr": { "type": "string" }, "fr_BE": { "type": "string" }, "fr_CA": { "type": "string" }, "fr_LU": { "type": "string" }, "fr_CH": { "type": "string" }, "gd": { "type": "string" }, "de": { "type": "string" }, "de_AT": { "type": "string" }, "de_LI": { "type": "string" }, "de_LU": { "type": "string" }, "de_CH": { "type": "string" }, "el": { "type": "string" }, "he": { "type": "string" }, "hi": { "type": "string" }, "hu": { "type": "string" }, "is": { "type": "string" }, "id": { "type": "string" }, "ga": { "type": "string" }, "it": { "type": "string" }, "it_CH": { "type": "string" }, "ja": { "type": "string" }, "ko": { "type": "string" }, "ko_JOHAB": { "type": "string" }, "ku": { "type": "string" }, "lv": { "type": "string" }, "lt": { "type": "string" }, "mk": { "type": "string" }, "ml": { "type": "string" }, "ms": { "type": "string" }, "mt": { "type": "string" }, "no": { "type": "string" }, "nb": { "type": "string" }, "nn": { "type": "string" }, "pl": { "type": "string" }, "pt": { "type": "string" }, "pt_BR": { "type": "string" }, "pt_PT": { "type": "string" }, "pa": { "type": "string" }, "rm": { "type": "string" }, "ro": { "type": "string" }, "ro_MD": { "type": "string" }, "ru": { "type": "string" }, "ru_MD": { "type": "string" }, "sr": { "type": "string" }, "sk": { "type": "string" }, "sl": { "type": "string" }, "sb": { "type": "string" }, "es": { "type": "string" }, "es_AR": { "type": "string" }, "es_BO": { "type": "string" }, "es_CL": { "type": "string" }, "es_CO": { "type": "string" }, "es_CR": { "type": "string" }, "es_DO": { "type": "string" }, "es_EC": { "type": "string" }, "es_SV": { "type": "string" }, "es_GT": { "type": "string" }, "es_HN": { "type": "string" }, "es_MX": { "type": "string" }, "es_NI": { "type": "string" }, "es_PA": { "type": "string" }, "es_PY": { "type": "string" }, "es_PE": { "type": "string" }, "es_PR": { "type": "string" }, "es_UY": { "type": "string" }, "es_VE": { "type": "string" }, "sv": { "type": "string" }, "sv_FI": { "type": "string" }, "th": { "type": "string" }, "ts": { "type": "string" }, "tn": { "type": "string" }, "tr": { "type": "string" }, "uk": { "type": "string" }, "ur": { "type": "string" }, "ve": { "type": "string" }, "vi": { "type": "string" }, "cy": { "type": "string" }, "xh": { "type": "string" }, "yi": { "type": "string" }, "zu": { "type": "string" } }, "additionalProperties": false, "nullable": true }, "translatedDescriptions": { "type": "object", "properties": { "und": { "type": "string" }, "af": { "type": "string" }, "sq": { "type": "string" }, "ar": { "type": "string" }, "ar_DZ": { "type": "string" }, "ar_BH": { "type": "string" }, "ar_EG": { "type": "string" }, "ar_IQ": { "type": "string" }, "ar_JO": { "type": "string" }, "ar_KW": { "type": "string" }, "ar_LB": { "type": "string" }, "ar_LY": { "type": "string" }, "ar_MA": { "type": "string" }, "ar_OM": { "type": "string" }, "ar_QA": { "type": "string" }, "ar_SA": { "type": "string" }, "ar_SY": { "type": "string" }, "ar_TN": { "type": "string" }, "ar_AE": { "type": "string" }, "ar_YE": { "type": "string" }, "eu": { "type": "string" }, "be": { "type": "string" }, "bg": { "type": "string" }, "ca": { "type": "string" }, "zh": { "type": "string" }, "zh_HK": { "type": "string" }, "zh_CN": { "type": "string" }, "zh_SG": { "type": "string" }, "zh_TW": { "type": "string" }, "hr": { "type": "string" }, "cs": { "type": "string" }, "da": { "type": "string" }, "nl": { "type": "string" }, "nl_BE": { "type": "string" }, "en": { "type": "string" }, "en_AU": { "type": "string" }, "en_BZ": { "type": "string" }, "en_CA": { "type": "string" }, "en_IE": { "type": "string" }, "en_JM": { "type": "string" }, "en_NZ": { "type": "string" }, "en_ZA": { "type": "string" }, "en_TT": { "type": "string" }, "en_GB": { "type": "string" }, "en_US": { "type": "string" }, "et": { "type": "string" }, "fo": { "type": "string" }, "fa": { "type": "string" }, "fi": { "type": "string" }, "fr": { "type": "string" }, "fr_BE": { "type": "string" }, "fr_CA": { "type": "string" }, "fr_LU": { "type": "string" }, "fr_CH": { "type": "string" }, "gd": { "type": "string" }, "de": { "type": "string" }, "de_AT": { "type": "string" }, "de_LI": { "type": "string" }, "de_LU": { "type": "string" }, "de_CH": { "type": "string" }, "el": { "type": "string" }, "he": { "type": "string" }, "hi": { "type": "string" }, "hu": { "type": "string" }, "is": { "type": "string" }, "id": { "type": "string" }, "ga": { "type": "string" }, "it": { "type": "string" }, "it_CH": { "type": "string" }, "ja": { "type": "string" }, "ko": { "type": "string" }, "ko_JOHAB": { "type": "string" }, "ku": { "type": "string" }, "lv": { "type": "string" }, "lt": { "type": "string" }, "mk": { "type": "string" }, "ml": { "type": "string" }, "ms": { "type": "string" }, "mt": { "type": "string" }, "no": { "type": "string" }, "nb": { "type": "string" }, "nn": { "type": "string" }, "pl": { "type": "string" }, "pt": { "type": "string" }, "pt_BR": { "type": "string" }, "pt_PT": { "type": "string" }, "pa": { "type": "string" }, "rm": { "type": "string" }, "ro": { "type": "string" }, "ro_MD": { "type": "string" }, "ru": { "type": "string" }, "ru_MD": { "type": "string" }, "sr": { "type": "string" }, "sk": { "type": "string" }, "sl": { "type": "string" }, "sb": { "type": "string" }, "es": { "type": "string" }, "es_AR": { "type": "string" }, "es_BO": { "type": "string" }, "es_CL": { "type": "string" }, "es_CO": { "type": "string" }, "es_CR": { "type": "string" }, "es_DO": { "type": "string" }, "es_EC": { "type": "string" }, "es_SV": { "type": "string" }, "es_GT": { "type": "string" }, "es_HN": { "type": "string" }, "es_MX": { "type": "string" }, "es_NI": { "type": "string" }, "es_PA": { "type": "string" }, "es_PY": { "type": "string" }, "es_PE": { "type": "string" }, "es_PR": { "type": "string" }, "es_UY": { "type": "string" }, "es_VE": { "type": "string" }, "sv": { "type": "string" }, "sv_FI": { "type": "string" }, "th": { "type": "string" }, "ts": { "type": "string" }, "tn": { "type": "string" }, "tr": { "type": "string" }, "uk": { "type": "string" }, "ur": { "type": "string" }, "ve": { "type": "string" }, "vi": { "type": "string" }, "cy": { "type": "string" }, "xh": { "type": "string" }, "yi": { "type": "string" }, "zu": { "type": "string" } }, "additionalProperties": false, "nullable": true }, "translatedSubtitles": { "type": "object", "properties": { "und": { "type": "string" }, "af": { "type": "string" }, "sq": { "type": "string" }, "ar": { "type": "string" }, "ar_DZ": { "type": "string" }, "ar_BH": { "type": "string" }, "ar_EG": { "type": "string" }, "ar_IQ": { "type": "string" }, "ar_JO": { "type": "string" }, "ar_KW": { "type": "string" }, "ar_LB": { "type": "string" }, "ar_LY": { "type": "string" }, "ar_MA": { "type": "string" }, "ar_OM": { "type": "string" }, "ar_QA": { "type": "string" }, "ar_SA": { "type": "string" }, "ar_SY": { "type": "string" }, "ar_TN": { "type": "string" }, "ar_AE": { "type": "string" }, "ar_YE": { "type": "string" }, "eu": { "type": "string" }, "be": { "type": "string" }, "bg": { "type": "string" }, "ca": { "type": "string" }, "zh": { "type": "string" }, "zh_HK": { "type": "string" }, "zh_CN": { "type": "string" }, "zh_SG": { "type": "string" }, "zh_TW": { "type": "string" }, "hr": { "type": "string" }, "cs": { "type": "string" }, "da": { "type": "string" }, "nl": { "type": "string" }, "nl_BE": { "type": "string" }, "en": { "type": "string" }, "en_AU": { "type": "string" }, "en_BZ": { "type": "string" }, "en_CA": { "type": "string" }, "en_IE": { "type": "string" }, "en_JM": { "type": "string" }, "en_NZ": { "type": "string" }, "en_ZA": { "type": "string" }, "en_TT": { "type": "string" }, "en_GB": { "type": "string" }, "en_US": { "type": "string" }, "et": { "type": "string" }, "fo": { "type": "string" }, "fa": { "type": "string" }, "fi": { "type": "string" }, "fr": { "type": "string" }, "fr_BE": { "type": "string" }, "fr_CA": { "type": "string" }, "fr_LU": { "type": "string" }, "fr_CH": { "type": "string" }, "gd": { "type": "string" }, "de": { "type": "string" }, "de_AT": { "type": "string" }, "de_LI": { "type": "string" }, "de_LU": { "type": "string" }, "de_CH": { "type": "string" }, "el": { "type": "string" }, "he": { "type": "string" }, "hi": { "type": "string" }, "hu": { "type": "string" }, "is": { "type": "string" }, "id": { "type": "string" }, "ga": { "type": "string" }, "it": { "type": "string" }, "it_CH": { "type": "string" }, "ja": { "type": "string" }, "ko": { "type": "string" }, "ko_JOHAB": { "type": "string" }, "ku": { "type": "string" }, "lv": { "type": "string" }, "lt": { "type": "string" }, "mk": { "type": "string" }, "ml": { "type": "string" }, "ms": { "type": "string" }, "mt": { "type": "string" }, "no": { "type": "string" }, "nb": { "type": "string" }, "nn": { "type": "string" }, "pl": { "type": "string" }, "pt": { "type": "string" }, "pt_BR": { "type": "string" }, "pt_PT": { "type": "string" }, "pa": { "type": "string" }, "rm": { "type": "string" }, "ro": { "type": "string" }, "ro_MD": { "type": "string" }, "ru": { "type": "string" }, "ru_MD": { "type": "string" }, "sr": { "type": "string" }, "sk": { "type": "string" }, "sl": { "type": "string" }, "sb": { "type": "string" }, "es": { "type": "string" }, "es_AR": { "type": "string" }, "es_BO": { "type": "string" }, "es_CL": { "type": "string" }, "es_CO": { "type": "string" }, "es_CR": { "type": "string" }, "es_DO": { "type": "string" }, "es_EC": { "type": "string" }, "es_SV": { "type": "string" }, "es_GT": { "type": "string" }, "es_HN": { "type": "string" }, "es_MX": { "type": "string" }, "es_NI": { "type": "string" }, "es_PA": { "type": "string" }, "es_PY": { "type": "string" }, "es_PE": { "type": "string" }, "es_PR": { "type": "string" }, "es_UY": { "type": "string" }, "es_VE": { "type": "string" }, "sv": { "type": "string" }, "sv_FI": { "type": "string" }, "th": { "type": "string" }, "ts": { "type": "string" }, "tn": { "type": "string" }, "tr": { "type": "string" }, "uk": { "type": "string" }, "ur": { "type": "string" }, "ve": { "type": "string" }, "vi": { "type": "string" }, "cy": { "type": "string" }, "xh": { "type": "string" }, "yi": { "type": "string" }, "zu": { "type": "string" } }, "additionalProperties": false, "nullable": true }, "competitionId": { "type": "string", "nullable": true }, "publishMethod": { "type": "string", "nullable": true }, "creationSettings": { "$ref": "#/components/schemas/CreationSettings" }, "game": { "$ref": "#/components/schemas/GameInfoDto" }, "rating": { "type": "string", "nullable": true } }, "additionalProperties": false }, "MomentDTOPaginationSearchResponse": { "type": "object", "properties": { "totalItems": { "type": "integer", "format": "int32" }, "result": { "type": "array", "items": { "$ref": "#/components/schemas/MomentDTO" }, "nullable": true } }, "additionalProperties": false }, "PageDTO": { "type": "object", "properties": { "id": { "type": "string", "nullable": true }, "index": { "type": "integer", "format": "int32" }, "duration": { "type": "string", "nullable": true }, "thumbnails": { "type": "array", "items": { "$ref": "#/components/schemas/ThumbnailDTO" }, "nullable": true }, "videoRenditions": { "type": "array", "items": { "$ref": "#/components/schemas/VideoRenditionDTO" }, "nullable": true }, "createTime": { "type": "string", "format": "date-time" }, "updateTime": { "type": "string", "format": "date-time" }, "metadata": { "$ref": "#/components/schemas/ContentMetadata" }, "extraInfo": { "type": "object", "additionalProperties": { "type": "string", "nullable": true }, "nullable": true } }, "additionalProperties": false }, "RecommendationsResponseDTO": { "type": "object", "properties": { "lastUpdated": { "type": "string", "nullable": true }, "recommendations": { "type": "array", "items": { "$ref": "#/components/schemas/IContentDTO" }, "nullable": true } }, "additionalProperties": false }, "Resolution": { "type": "object", "properties": { "level": { "$ref": "#/components/schemas/ResolutionLevel" }, "height": { "type": "string", "nullable": true }, "width": { "type": "string", "nullable": true } }, "additionalProperties": false }, "ResolutionLevel": { "enum": [ "LowRes", "MidRes", "HighRes" ], "type": "string" }, "StoryDTO": { "type": "object", "properties": { "id": { "type": "string", "nullable": true }, "type": { "$ref": "#/components/schemas/ContentType" }, "title": { "type": "string", "nullable": true }, "description": { "type": "string", "nullable": true }, "version": { "type": "integer", "format": "int64" }, "aspectRatios": { "type": "array", "items": { "$ref": "#/components/schemas/AssetVideoAspectRatio" }, "nullable": true }, "status": { "$ref": "#/components/schemas/ContentStatus" }, "isLive": { "type": "boolean" }, "createTime": { "type": "string", "format": "date-time" }, "updateTime": { "type": "string", "format": "date-time" }, "thumbnails": { "type": "array", "items": { "$ref": "#/components/schemas/ThumbnailDTO" }, "nullable": true }, "titleImageUrl": { "type": "string", "nullable": true }, "geoTargeting": { "$ref": "#/components/schemas/GeoTargeting" }, "metadata": { "$ref": "#/components/schemas/ContentMetadata" }, "executionTimeType": { "$ref": "#/components/schemas/ExecutionTimeType" }, "htmlUrl": { "type": "string", "nullable": true }, "pages": { "type": "array", "items": { "$ref": "#/components/schemas/PageDTO" }, "nullable": true }, "labels": { "type": "array", "items": { "$ref": "#/components/schemas/LabelDTO" }, "nullable": true }, "extraInfo": { "type": "object", "additionalProperties": { "type": "string", "nullable": true }, "nullable": true }, "defaultLanguage": { "$ref": "#/components/schemas/Language" }, "translatedTitles": { "type": "object", "properties": { "und": { "type": "string" }, "af": { "type": "string" }, "sq": { "type": "string" }, "ar": { "type": "string" }, "ar_DZ": { "type": "string" }, "ar_BH": { "type": "string" }, "ar_EG": { "type": "string" }, "ar_IQ": { "type": "string" }, "ar_JO": { "type": "string" }, "ar_KW": { "type": "string" }, "ar_LB": { "type": "string" }, "ar_LY": { "type": "string" }, "ar_MA": { "type": "string" }, "ar_OM": { "type": "string" }, "ar_QA": { "type": "string" }, "ar_SA": { "type": "string" }, "ar_SY": { "type": "string" }, "ar_TN": { "type": "string" }, "ar_AE": { "type": "string" }, "ar_YE": { "type": "string" }, "eu": { "type": "string" }, "be": { "type": "string" }, "bg": { "type": "string" }, "ca": { "type": "string" }, "zh": { "type": "string" }, "zh_HK": { "type": "string" }, "zh_CN": { "type": "string" }, "zh_SG": { "type": "string" }, "zh_TW": { "type": "string" }, "hr": { "type": "string" }, "cs": { "type": "string" }, "da": { "type": "string" }, "nl": { "type": "string" }, "nl_BE": { "type": "string" }, "en": { "type": "string" }, "en_AU": { "type": "string" }, "en_BZ": { "type": "string" }, "en_CA": { "type": "string" }, "en_IE": { "type": "string" }, "en_JM": { "type": "string" }, "en_NZ": { "type": "string" }, "en_ZA": { "type": "string" }, "en_TT": { "type": "string" }, "en_GB": { "type": "string" }, "en_US": { "type": "string" }, "et": { "type": "string" }, "fo": { "type": "string" }, "fa": { "type": "string" }, "fi": { "type": "string" }, "fr": { "type": "string" }, "fr_BE": { "type": "string" }, "fr_CA": { "type": "string" }, "fr_LU": { "type": "string" }, "fr_CH": { "type": "string" }, "gd": { "type": "string" }, "de": { "type": "string" }, "de_AT": { "type": "string" }, "de_LI": { "type": "string" }, "de_LU": { "type": "string" }, "de_CH": { "type": "string" }, "el": { "type": "string" }, "he": { "type": "string" }, "hi": { "type": "string" }, "hu": { "type": "string" }, "is": { "type": "string" }, "id": { "type": "string" }, "ga": { "type": "string" }, "it": { "type": "string" }, "it_CH": { "type": "string" }, "ja": { "type": "string" }, "ko": { "type": "string" }, "ko_JOHAB": { "type": "string" }, "ku": { "type": "string" }, "lv": { "type": "string" }, "lt": { "type": "string" }, "mk": { "type": "string" }, "ml": { "type": "string" }, "ms": { "type": "string" }, "mt": { "type": "string" }, "no": { "type": "string" }, "nb": { "type": "string" }, "nn": { "type": "string" }, "pl": { "type": "string" }, "pt": { "type": "string" }, "pt_BR": { "type": "string" }, "pt_PT": { "type": "string" }, "pa": { "type": "string" }, "rm": { "type": "string" }, "ro": { "type": "string" }, "ro_MD": { "type": "string" }, "ru": { "type": "string" }, "ru_MD": { "type": "string" }, "sr": { "type": "string" }, "sk": { "type": "string" }, "sl": { "type": "string" }, "sb": { "type": "string" }, "es": { "type": "string" }, "es_AR": { "type": "string" }, "es_BO": { "type": "string" }, "es_CL": { "type": "string" }, "es_CO": { "type": "string" }, "es_CR": { "type": "string" }, "es_DO": { "type": "string" }, "es_EC": { "type": "string" }, "es_SV": { "type": "string" }, "es_GT": { "type": "string" }, "es_HN": { "type": "string" }, "es_MX": { "type": "string" }, "es_NI": { "type": "string" }, "es_PA": { "type": "string" }, "es_PY": { "type": "string" }, "es_PE": { "type": "string" }, "es_PR": { "type": "string" }, "es_UY": { "type": "string" }, "es_VE": { "type": "string" }, "sv": { "type": "string" }, "sv_FI": { "type": "string" }, "th": { "type": "string" }, "ts": { "type": "string" }, "tn": { "type": "string" }, "tr": { "type": "string" }, "uk": { "type": "string" }, "ur": { "type": "string" }, "ve": { "type": "string" }, "vi": { "type": "string" }, "cy": { "type": "string" }, "xh": { "type": "string" }, "yi": { "type": "string" }, "zu": { "type": "string" } }, "additionalProperties": false, "nullable": true }, "competitionId": { "type": "string", "nullable": true }, "publishMethod": { "type": "string", "nullable": true }, "creationSettings": { "$ref": "#/components/schemas/CreationSettings" }, "game": { "$ref": "#/components/schemas/GameInfoDto" }, "rating": { "type": "string", "nullable": true } }, "additionalProperties": false }, "StoryDTOPaginationSearchResponse": { "type": "object", "properties": { "totalItems": { "type": "integer", "format": "int32" }, "result": { "type": "array", "items": { "$ref": "#/components/schemas/StoryDTO" }, "nullable": true } }, "additionalProperties": false }, "ThumbnailDTO": { "type": "object", "properties": { "url": { "type": "string", "nullable": true }, "aspectRatio": { "$ref": "#/components/schemas/AssetVideoAspectRatio" } }, "additionalProperties": false }, "VideoDTO": { "type": "object", "properties": { "type": { "$ref": "#/components/schemas/ContentType" }, "id": { "type": "string", "nullable": true }, "title": { "type": "string", "nullable": true }, "description": { "type": "string", "nullable": true }, "subtitle": { "type": "string", "nullable": true }, "version": { "type": "integer", "format": "int64" }, "aspectRatios": { "type": "array", "items": { "$ref": "#/components/schemas/AssetVideoAspectRatio" }, "nullable": true }, "videoRenditions": { "type": "array", "items": { "$ref": "#/components/schemas/VideoRenditionDTO" }, "nullable": true }, "status": { "$ref": "#/components/schemas/ContentStatus" }, "duration": { "type": "string", "nullable": true }, "createTime": { "type": "string", "format": "date-time" }, "updateTime": { "type": "string", "format": "date-time" }, "thumbnails": { "type": "array", "items": { "$ref": "#/components/schemas/ThumbnailDTO" }, "nullable": true }, "geoTargeting": { "$ref": "#/components/schemas/GeoTargeting" }, "metadata": { "$ref": "#/components/schemas/ContentMetadata" }, "executionTimeType": { "$ref": "#/components/schemas/ExecutionTimeType" }, "labels": { "type": "array", "items": { "$ref": "#/components/schemas/LabelDTO" }, "nullable": true }, "extraInfo": { "type": "object", "additionalProperties": { "type": "string", "nullable": true }, "nullable": true }, "defaultLanguage": { "$ref": "#/components/schemas/Language" }, "translatedTitles": { "type": "object", "properties": { "und": { "type": "string" }, "af": { "type": "string" }, "sq": { "type": "string" }, "ar": { "type": "string" }, "ar_DZ": { "type": "string" }, "ar_BH": { "type": "string" }, "ar_EG": { "type": "string" }, "ar_IQ": { "type": "string" }, "ar_JO": { "type": "string" }, "ar_KW": { "type": "string" }, "ar_LB": { "type": "string" }, "ar_LY": { "type": "string" }, "ar_MA": { "type": "string" }, "ar_OM": { "type": "string" }, "ar_QA": { "type": "string" }, "ar_SA": { "type": "string" }, "ar_SY": { "type": "string" }, "ar_TN": { "type": "string" }, "ar_AE": { "type": "string" }, "ar_YE": { "type": "string" }, "eu": { "type": "string" }, "be": { "type": "string" }, "bg": { "type": "string" }, "ca": { "type": "string" }, "zh": { "type": "string" }, "zh_HK": { "type": "string" }, "zh_CN": { "type": "string" }, "zh_SG": { "type": "string" }, "zh_TW": { "type": "string" }, "hr": { "type": "string" }, "cs": { "type": "string" }, "da": { "type": "string" }, "nl": { "type": "string" }, "nl_BE": { "type": "string" }, "en": { "type": "string" }, "en_AU": { "type": "string" }, "en_BZ": { "type": "string" }, "en_CA": { "type": "string" }, "en_IE": { "type": "string" }, "en_JM": { "type": "string" }, "en_NZ": { "type": "string" }, "en_ZA": { "type": "string" }, "en_TT": { "type": "string" }, "en_GB": { "type": "string" }, "en_US": { "type": "string" }, "et": { "type": "string" }, "fo": { "type": "string" }, "fa": { "type": "string" }, "fi": { "type": "string" }, "fr": { "type": "string" }, "fr_BE": { "type": "string" }, "fr_CA": { "type": "string" }, "fr_LU": { "type": "string" }, "fr_CH": { "type": "string" }, "gd": { "type": "string" }, "de": { "type": "string" }, "de_AT": { "type": "string" }, "de_LI": { "type": "string" }, "de_LU": { "type": "string" }, "de_CH": { "type": "string" }, "el": { "type": "string" }, "he": { "type": "string" }, "hi": { "type": "string" }, "hu": { "type": "string" }, "is": { "type": "string" }, "id": { "type": "string" }, "ga": { "type": "string" }, "it": { "type": "string" }, "it_CH": { "type": "string" }, "ja": { "type": "string" }, "ko": { "type": "string" }, "ko_JOHAB": { "type": "string" }, "ku": { "type": "string" }, "lv": { "type": "string" }, "lt": { "type": "string" }, "mk": { "type": "string" }, "ml": { "type": "string" }, "ms": { "type": "string" }, "mt": { "type": "string" }, "no": { "type": "string" }, "nb": { "type": "string" }, "nn": { "type": "string" }, "pl": { "type": "string" }, "pt": { "type": "string" }, "pt_BR": { "type": "string" }, "pt_PT": { "type": "string" }, "pa": { "type": "string" }, "rm": { "type": "string" }, "ro": { "type": "string" }, "ro_MD": { "type": "string" }, "ru": { "type": "string" }, "ru_MD": { "type": "string" }, "sr": { "type": "string" }, "sk": { "type": "string" }, "sl": { "type": "string" }, "sb": { "type": "string" }, "es": { "type": "string" }, "es_AR": { "type": "string" }, "es_BO": { "type": "string" }, "es_CL": { "type": "string" }, "es_CO": { "type": "string" }, "es_CR": { "type": "string" }, "es_DO": { "type": "string" }, "es_EC": { "type": "string" }, "es_SV": { "type": "string" }, "es_GT": { "type": "string" }, "es_HN": { "type": "string" }, "es_MX": { "type": "string" }, "es_NI": { "type": "string" }, "es_PA": { "type": "string" }, "es_PY": { "type": "string" }, "es_PE": { "type": "string" }, "es_PR": { "type": "string" }, "es_UY": { "type": "string" }, "es_VE": { "type": "string" }, "sv": { "type": "string" }, "sv_FI": { "type": "string" }, "th": { "type": "string" }, "ts": { "type": "string" }, "tn": { "type": "string" }, "tr": { "type": "string" }, "uk": { "type": "string" }, "ur": { "type": "string" }, "ve": { "type": "string" }, "vi": { "type": "string" }, "cy": { "type": "string" }, "xh": { "type": "string" }, "yi": { "type": "string" }, "zu": { "type": "string" } }, "additionalProperties": false, "nullable": true }, "translatedDescriptions": { "type": "object", "properties": { "und": { "type": "string" }, "af": { "type": "string" }, "sq": { "type": "string" }, "ar": { "type": "string" }, "ar_DZ": { "type": "string" }, "ar_BH": { "type": "string" }, "ar_EG": { "type": "string" }, "ar_IQ": { "type": "string" }, "ar_JO": { "type": "string" }, "ar_KW": { "type": "string" }, "ar_LB": { "type": "string" }, "ar_LY": { "type": "string" }, "ar_MA": { "type": "string" }, "ar_OM": { "type": "string" }, "ar_QA": { "type": "string" }, "ar_SA": { "type": "string" }, "ar_SY": { "type": "string" }, "ar_TN": { "type": "string" }, "ar_AE": { "type": "string" }, "ar_YE": { "type": "string" }, "eu": { "type": "string" }, "be": { "type": "string" }, "bg": { "type": "string" }, "ca": { "type": "string" }, "zh": { "type": "string" }, "zh_HK": { "type": "string" }, "zh_CN": { "type": "string" }, "zh_SG": { "type": "string" }, "zh_TW": { "type": "string" }, "hr": { "type": "string" }, "cs": { "type": "string" }, "da": { "type": "string" }, "nl": { "type": "string" }, "nl_BE": { "type": "string" }, "en": { "type": "string" }, "en_AU": { "type": "string" }, "en_BZ": { "type": "string" }, "en_CA": { "type": "string" }, "en_IE": { "type": "string" }, "en_JM": { "type": "string" }, "en_NZ": { "type": "string" }, "en_ZA": { "type": "string" }, "en_TT": { "type": "string" }, "en_GB": { "type": "string" }, "en_US": { "type": "string" }, "et": { "type": "string" }, "fo": { "type": "string" }, "fa": { "type": "string" }, "fi": { "type": "string" }, "fr": { "type": "string" }, "fr_BE": { "type": "string" }, "fr_CA": { "type": "string" }, "fr_LU": { "type": "string" }, "fr_CH": { "type": "string" }, "gd": { "type": "string" }, "de": { "type": "string" }, "de_AT": { "type": "string" }, "de_LI": { "type": "string" }, "de_LU": { "type": "string" }, "de_CH": { "type": "string" }, "el": { "type": "string" }, "he": { "type": "string" }, "hi": { "type": "string" }, "hu": { "type": "string" }, "is": { "type": "string" }, "id": { "type": "string" }, "ga": { "type": "string" }, "it": { "type": "string" }, "it_CH": { "type": "string" }, "ja": { "type": "string" }, "ko": { "type": "string" }, "ko_JOHAB": { "type": "string" }, "ku": { "type": "string" }, "lv": { "type": "string" }, "lt": { "type": "string" }, "mk": { "type": "string" }, "ml": { "type": "string" }, "ms": { "type": "string" }, "mt": { "type": "string" }, "no": { "type": "string" }, "nb": { "type": "string" }, "nn": { "type": "string" }, "pl": { "type": "string" }, "pt": { "type": "string" }, "pt_BR": { "type": "string" }, "pt_PT": { "type": "string" }, "pa": { "type": "string" }, "rm": { "type": "string" }, "ro": { "type": "string" }, "ro_MD": { "type": "string" }, "ru": { "type": "string" }, "ru_MD": { "type": "string" }, "sr": { "type": "string" }, "sk": { "type": "string" }, "sl": { "type": "string" }, "sb": { "type": "string" }, "es": { "type": "string" }, "es_AR": { "type": "string" }, "es_BO": { "type": "string" }, "es_CL": { "type": "string" }, "es_CO": { "type": "string" }, "es_CR": { "type": "string" }, "es_DO": { "type": "string" }, "es_EC": { "type": "string" }, "es_SV": { "type": "string" }, "es_GT": { "type": "string" }, "es_HN": { "type": "string" }, "es_MX": { "type": "string" }, "es_NI": { "type": "string" }, "es_PA": { "type": "string" }, "es_PY": { "type": "string" }, "es_PE": { "type": "string" }, "es_PR": { "type": "string" }, "es_UY": { "type": "string" }, "es_VE": { "type": "string" }, "sv": { "type": "string" }, "sv_FI": { "type": "string" }, "th": { "type": "string" }, "ts": { "type": "string" }, "tn": { "type": "string" }, "tr": { "type": "string" }, "uk": { "type": "string" }, "ur": { "type": "string" }, "ve": { "type": "string" }, "vi": { "type": "string" }, "cy": { "type": "string" }, "xh": { "type": "string" }, "yi": { "type": "string" }, "zu": { "type": "string" } }, "additionalProperties": false, "nullable": true }, "translatedSubtitles": { "type": "object", "properties": { "und": { "type": "string" }, "af": { "type": "string" }, "sq": { "type": "string" }, "ar": { "type": "string" }, "ar_DZ": { "type": "string" }, "ar_BH": { "type": "string" }, "ar_EG": { "type": "string" }, "ar_IQ": { "type": "string" }, "ar_JO": { "type": "string" }, "ar_KW": { "type": "string" }, "ar_LB": { "type": "string" }, "ar_LY": { "type": "string" }, "ar_MA": { "type": "string" }, "ar_OM": { "type": "string" }, "ar_QA": { "type": "string" }, "ar_SA": { "type": "string" }, "ar_SY": { "type": "string" }, "ar_TN": { "type": "string" }, "ar_AE": { "type": "string" }, "ar_YE": { "type": "string" }, "eu": { "type": "string" }, "be": { "type": "string" }, "bg": { "type": "string" }, "ca": { "type": "string" }, "zh": { "type": "string" }, "zh_HK": { "type": "string" }, "zh_CN": { "type": "string" }, "zh_SG": { "type": "string" }, "zh_TW": { "type": "string" }, "hr": { "type": "string" }, "cs": { "type": "string" }, "da": { "type": "string" }, "nl": { "type": "string" }, "nl_BE": { "type": "string" }, "en": { "type": "string" }, "en_AU": { "type": "string" }, "en_BZ": { "type": "string" }, "en_CA": { "type": "string" }, "en_IE": { "type": "string" }, "en_JM": { "type": "string" }, "en_NZ": { "type": "string" }, "en_ZA": { "type": "string" }, "en_TT": { "type": "string" }, "en_GB": { "type": "string" }, "en_US": { "type": "string" }, "et": { "type": "string" }, "fo": { "type": "string" }, "fa": { "type": "string" }, "fi": { "type": "string" }, "fr": { "type": "string" }, "fr_BE": { "type": "string" }, "fr_CA": { "type": "string" }, "fr_LU": { "type": "string" }, "fr_CH": { "type": "string" }, "gd": { "type": "string" }, "de": { "type": "string" }, "de_AT": { "type": "string" }, "de_LI": { "type": "string" }, "de_LU": { "type": "string" }, "de_CH": { "type": "string" }, "el": { "type": "string" }, "he": { "type": "string" }, "hi": { "type": "string" }, "hu": { "type": "string" }, "is": { "type": "string" }, "id": { "type": "string" }, "ga": { "type": "string" }, "it": { "type": "string" }, "it_CH": { "type": "string" }, "ja": { "type": "string" }, "ko": { "type": "string" }, "ko_JOHAB": { "type": "string" }, "ku": { "type": "string" }, "lv": { "type": "string" }, "lt": { "type": "string" }, "mk": { "type": "string" }, "ml": { "type": "string" }, "ms": { "type": "string" }, "mt": { "type": "string" }, "no": { "type": "string" }, "nb": { "type": "string" }, "nn": { "type": "string" }, "pl": { "type": "string" }, "pt": { "type": "string" }, "pt_BR": { "type": "string" }, "pt_PT": { "type": "string" }, "pa": { "type": "string" }, "rm": { "type": "string" }, "ro": { "type": "string" }, "ro_MD": { "type": "string" }, "ru": { "type": "string" }, "ru_MD": { "type": "string" }, "sr": { "type": "string" }, "sk": { "type": "string" }, "sl": { "type": "string" }, "sb": { "type": "string" }, "es": { "type": "string" }, "es_AR": { "type": "string" }, "es_BO": { "type": "string" }, "es_CL": { "type": "string" }, "es_CO": { "type": "string" }, "es_CR": { "type": "string" }, "es_DO": { "type": "string" }, "es_EC": { "type": "string" }, "es_SV": { "type": "string" }, "es_GT": { "type": "string" }, "es_HN": { "type": "string" }, "es_MX": { "type": "string" }, "es_NI": { "type": "string" }, "es_PA": { "type": "string" }, "es_PY": { "type": "string" }, "es_PE": { "type": "string" }, "es_PR": { "type": "string" }, "es_UY": { "type": "string" }, "es_VE": { "type": "string" }, "sv": { "type": "string" }, "sv_FI": { "type": "string" }, "th": { "type": "string" }, "ts": { "type": "string" }, "tn": { "type": "string" }, "tr": { "type": "string" }, "uk": { "type": "string" }, "ur": { "type": "string" }, "ve": { "type": "string" }, "vi": { "type": "string" }, "cy": { "type": "string" }, "xh": { "type": "string" }, "yi": { "type": "string" }, "zu": { "type": "string" } }, "additionalProperties": false, "nullable": true }, "competitionId": { "type": "string", "nullable": true }, "publishMethod": { "type": "string", "nullable": true }, "creationSettings": { "$ref": "#/components/schemas/CreationSettings" }, "game": { "$ref": "#/components/schemas/GameInfoDto" }, "rating": { "type": "string", "nullable": true } }, "additionalProperties": false }, "VideoDTOPaginationSearchResponse": { "type": "object", "properties": { "totalItems": { "type": "integer", "format": "int32" }, "result": { "type": "array", "items": { "$ref": "#/components/schemas/VideoDTO" }, "nullable": true } }, "additionalProperties": false }, "VideoFileType": { "enum": [ "Mp4", "HLS", "DASH" ], "type": "string" }, "VideoRenditionDTO": { "type": "object", "properties": { "url": { "type": "string", "nullable": true }, "fileType": { "$ref": "#/components/schemas/VideoFileType" }, "aspectRatio": { "$ref": "#/components/schemas/AssetVideoAspectRatio" }, "resolution": { "$ref": "#/components/schemas/Resolution" }, "bitRate": { "type": "string", "nullable": true } }, "additionalProperties": false } }, "securitySchemes": { "Bearer": { "type": "http", "description": "Standard Bearer token.", "scheme": "bearer", "bearerFormat": "JWT" } } }, "security": [ { "Bearer": [ ] } ] }