From e9bb9b529ee1af2e98a886034e004c0eca2fcdcf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CLilyL0u=E2=80=9D?= Date: Mon, 17 Jun 2024 16:17:28 +0100 Subject: [PATCH 01/51] delete most watched routes folder --- .../mostWatched/getInitialData/index.js | 39 ------------------- .../mostWatched/getInitialData/index.test.js | 25 ------------ src/app/routes/mostWatched/index.js | 12 ------ 3 files changed, 76 deletions(-) delete mode 100644 src/app/routes/mostWatched/getInitialData/index.js delete mode 100644 src/app/routes/mostWatched/getInitialData/index.test.js delete mode 100644 src/app/routes/mostWatched/index.js diff --git a/src/app/routes/mostWatched/getInitialData/index.js b/src/app/routes/mostWatched/getInitialData/index.js deleted file mode 100644 index e80b8c8edb1..00000000000 --- a/src/app/routes/mostWatched/getInitialData/index.js +++ /dev/null @@ -1,39 +0,0 @@ -import getMostWatchedUrl from '#lib/utilities/getUrlHelpers/getMostWatchedUrl'; -import { getEnvConfig } from '#app/lib/utilities/getEnvConfig'; -import fetchPageData from '../../utils/fetchPageData'; -import getErrorStatusCode from '../../utils/fetchPageData/utils/getErrorStatusCode'; -import processMostWatched from '../../utils/processMostWatched'; - -export default async ({ service, variant, pageType, toggles, path }) => { - const env = path.includes('renderer_env=live') - ? 'live' - : getEnvConfig().SIMORGH_APP_ENV; - - try { - const mostWatchedUrl = getMostWatchedUrl({ service, variant, env }); - const { json, status } = await fetchPageData({ - path: mostWatchedUrl, - pageType, - }); - - const processedData = { mostWatched: json }; - - const mostWatchedData = processMostWatched({ - data: processedData, - service, - path: mostWatchedUrl, - toggles, - page: pageType, - }); - - return { - status, - pageData: { - ...mostWatchedData, - metadata: { type: pageType }, - }, - }; - } catch ({ message, status = getErrorStatusCode() }) { - return { error: message, status }; - } -}; diff --git a/src/app/routes/mostWatched/getInitialData/index.test.js b/src/app/routes/mostWatched/getInitialData/index.test.js deleted file mode 100644 index 681347a8b5b..00000000000 --- a/src/app/routes/mostWatched/getInitialData/index.test.js +++ /dev/null @@ -1,25 +0,0 @@ -import mostWatchedJson from '#data/pidgin/mostWatched'; -import { MOST_WATCHED_PAGE } from '#app/routes/utils/pageTypes'; -import getInitialData from '.'; - -fetch.mockResponse(JSON.stringify(mostWatchedJson)); - -it('should return essential data for a page to render', async () => { - const { pageData } = await getInitialData({ - path: '/pidgin/media/video', - service: 'pidgin', - pageType: MOST_WATCHED_PAGE, - toggles: { - mostPopularMediaPage: { enabled: true, value: '5' }, - }, - }); - - expect(pageData.metadata.type).toEqual('mostWatched'); - expect(pageData.mostWatched[0].timestamp).toEqual(1596019170000); - expect(pageData.mostWatched[0].headlines.shortHeadline).toEqual( - "'I no know say I different for society until pipo begin look me one kain'", - ); - expect(pageData.mostWatched[0].locators.assetUri).toEqual( - '/pidgin/media-53580248', - ); -}); diff --git a/src/app/routes/mostWatched/index.js b/src/app/routes/mostWatched/index.js deleted file mode 100644 index 534c8ed8540..00000000000 --- a/src/app/routes/mostWatched/index.js +++ /dev/null @@ -1,12 +0,0 @@ -import { MostWatchedPage } from '#pages'; -import { mostWatchedPagePath } from '#app/routes/utils/regex'; -import { MOST_WATCHED_PAGE } from '#app/routes/utils/pageTypes'; -import getInitialData from './getInitialData'; - -export default { - path: mostWatchedPagePath, - exact: true, - component: MostWatchedPage, - getInitialData, - pageType: MOST_WATCHED_PAGE, -}; From 2f26c8dbee36f9a9602a2f38380b8167dbe3e14c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CLilyL0u=E2=80=9D?= Date: Mon, 17 Jun 2024 16:20:31 +0100 Subject: [PATCH 02/51] delete most watched regex in utils --- src/app/routes/utils/regex/utils/index.js | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/app/routes/utils/regex/utils/index.js b/src/app/routes/utils/regex/utils/index.js index ae4c7321a35..01ea784f6e9 100644 --- a/src/app/routes/utils/regex/utils/index.js +++ b/src/app/routes/utils/regex/utils/index.js @@ -174,16 +174,6 @@ export const getMostReadDataRegex = services => { return `/:service(${serviceRegex})/mostread:variant(${variantRegex})?.json`; }; -export const getMostWatchedDataRegex = services => { - const serviceRegex = getServiceRegex(services); - return `/:service(${serviceRegex})/mostwatched:variant(${variantRegex})?.json`; -}; - -export const getMostWatchedPageRegex = services => { - const serviceRegex = getServiceRegex(services); - return `/:service(${serviceRegex}):variant(${variantRegex})?/media/video:amp(${ampRegex})?:lite(${liteRegex})?`; -}; - export const getSecondaryColumnDataRegex = services => { const serviceRegex = getServiceRegex(services); return `/:service(${serviceRegex})/sty-secondary-column:variant(${variantRegex})?.json`; From b3cd18a170cc730b3a7f5645e73a719ece99b084 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CLilyL0u=E2=80=9D?= Date: Mon, 17 Jun 2024 16:22:19 +0100 Subject: [PATCH 03/51] delete most watched regex reference --- src/app/routes/utils/regex/index.js | 1 - 1 file changed, 1 deletion(-) diff --git a/src/app/routes/utils/regex/index.js b/src/app/routes/utils/regex/index.js index 7a0515d307c..4972caeba72 100644 --- a/src/app/routes/utils/regex/index.js +++ b/src/app/routes/utils/regex/index.js @@ -76,7 +76,6 @@ export const mostReadPagePath = getMostReadPageRegex(allServices); export const mostReadDataRegexPath = getMostReadDataRegex(allServices); export const mostWatchedDataPath = getMostWatchedDataRegex(allServices); -export const mostWatchedPagePath = getMostWatchedPageRegex(allServices); export const secondaryColumnDataRegexPath = getSecondaryColumnDataRegex(allServices); From f3b4833ab254e8c02a921777f066873623b2186b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CLilyL0u=E2=80=9D?= Date: Mon, 17 Jun 2024 16:28:01 +0100 Subject: [PATCH 04/51] might need to keep most watched data regex for component? --- src/app/routes/utils/regex/index.js | 1 - src/app/routes/utils/regex/utils/index.js | 5 +++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/src/app/routes/utils/regex/index.js b/src/app/routes/utils/regex/index.js index 4972caeba72..9033f19e577 100644 --- a/src/app/routes/utils/regex/index.js +++ b/src/app/routes/utils/regex/index.js @@ -20,7 +20,6 @@ import { getMostReadPageRegex, getMostReadDataRegex, getMostWatchedDataRegex, - getMostWatchedPageRegex, getSecondaryColumnDataRegex, getRecommendationsDataRegex, getAfricaEyeTVPageRegex, diff --git a/src/app/routes/utils/regex/utils/index.js b/src/app/routes/utils/regex/utils/index.js index 01ea784f6e9..5e310520402 100644 --- a/src/app/routes/utils/regex/utils/index.js +++ b/src/app/routes/utils/regex/utils/index.js @@ -174,6 +174,11 @@ export const getMostReadDataRegex = services => { return `/:service(${serviceRegex})/mostread:variant(${variantRegex})?.json`; }; +export const getMostWatchedDataRegex = services => { + const serviceRegex = getServiceRegex(services); + return `/:service(${serviceRegex})/mostwatched:variant(${variantRegex})?.json`; +}; + export const getSecondaryColumnDataRegex = services => { const serviceRegex = getServiceRegex(services); return `/:service(${serviceRegex})/sty-secondary-column:variant(${variantRegex})?.json`; From 95caed403a14ed21a784e03892bb94b5409809e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CLilyL0u=E2=80=9D?= Date: Mon, 17 Jun 2024 16:28:57 +0100 Subject: [PATCH 05/51] delete most watched page folder --- .../pages/MostWatchedPage/MostWatchedPage.jsx | 113 -- .../__snapshots__/index.test.jsx.snap | 1090 ----------------- src/app/pages/MostWatchedPage/index.jsx | 6 - src/app/pages/MostWatchedPage/index.test.jsx | 74 -- 4 files changed, 1283 deletions(-) delete mode 100644 src/app/pages/MostWatchedPage/MostWatchedPage.jsx delete mode 100644 src/app/pages/MostWatchedPage/__snapshots__/index.test.jsx.snap delete mode 100644 src/app/pages/MostWatchedPage/index.jsx delete mode 100644 src/app/pages/MostWatchedPage/index.test.jsx diff --git a/src/app/pages/MostWatchedPage/MostWatchedPage.jsx b/src/app/pages/MostWatchedPage/MostWatchedPage.jsx deleted file mode 100644 index 05cf9108299..00000000000 --- a/src/app/pages/MostWatchedPage/MostWatchedPage.jsx +++ /dev/null @@ -1,113 +0,0 @@ -import React, { useContext } from 'react'; -import path from 'ramda/src/path'; -import styled from '@emotion/styled'; -import { - GEL_GROUP_1_SCREEN_WIDTH_MAX, - GEL_GROUP_3_SCREEN_WIDTH_MIN, - GEL_GROUP_3_SCREEN_WIDTH_MAX, - GEL_GROUP_4_SCREEN_WIDTH_MIN, -} from '#psammead/gel-foundations/src/breakpoints'; -import { - GEL_SPACING, - GEL_SPACING_QUAD, - GEL_SPACING_DBL, - GEL_SPACING_SEXT, -} from '#psammead/gel-foundations/src/spacings'; -import Grid, { GelPageGrid } from '#components/Grid'; -import IndexPageContainer from '#components/PageLayout/IndexPageContainer'; -import IndexHeading from '#containers/IndexHeading'; -import MostWatchedContainer from '#containers/MostWatched'; -import ATIAnalytics from '../../components/ATIAnalytics'; -import ChartbeatAnalytics from '../../components/ChartbeatAnalytics'; -import MetadataContainer from '../../components/Metadata'; -import { ServiceContext } from '../../contexts/ServiceContext'; -import LinkedData from '../../components/LinkedData'; - -const StyledIndexHeading = styled(IndexHeading)` - @media (max-width: ${GEL_GROUP_1_SCREEN_WIDTH_MAX}) { - padding-top: ${GEL_SPACING}; - } - - @media (min-width: ${GEL_GROUP_3_SCREEN_WIDTH_MIN}) and (max-width: ${GEL_GROUP_3_SCREEN_WIDTH_MAX}) { - padding-bottom: ${GEL_SPACING}; - padding-top: ${GEL_SPACING_DBL}; - } - - @media (min-width: ${GEL_GROUP_4_SCREEN_WIDTH_MIN}) { - padding-bottom: ${GEL_SPACING_QUAD}; - } -`; - -const StyledIndexPageContainer = styled(IndexPageContainer)` - padding-bottom: ${GEL_SPACING_SEXT}; -`; - -const MostWatchedPage = ({ pageData = null }) => { - const { - brandName, - lang, - mostWatched: { header }, - } = useContext(ServiceContext); - - const mostWatchedData = path(['mostWatched'], pageData); - - const MostWatchedWrapper = ({ children }) => ( - - - {children} - - - ); - - return ( - <> - - - - -
- - - {header} - - - -
- - ); -}; - -export default MostWatchedPage; diff --git a/src/app/pages/MostWatchedPage/__snapshots__/index.test.jsx.snap b/src/app/pages/MostWatchedPage/__snapshots__/index.test.jsx.snap deleted file mode 100644 index ae5cdd9ed17..00000000000 --- a/src/app/pages/MostWatchedPage/__snapshots__/index.test.jsx.snap +++ /dev/null @@ -1,1090 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`Most Watched Page Main should match snapshot for the Most Watched page 1`] = ` -.emotion-0 { - margin: 0 0.5rem; - padding-top: 0.5rem; - padding-bottom: 2rem; - padding-bottom: 3rem; -} - -@media (min-width: 25rem) { - .emotion-0 { - margin: 0 1rem; - } -} - -@media (min-width: 25rem) { - .emotion-0 { - padding-top: 1rem; - } -} - -@media (max-width: 37.4375rem) { - .emotion-0 { - padding-bottom: 1.5rem; - } -} - -@media (min-width: 37.5rem) { - .emotion-0 { - padding-top: 0; - } -} - -@media (min-width: 63rem) { - .emotion-0 { - padding-bottom: 2.5rem; - } -} - -.emotion-3 { - width: 100%; -} - -@supports (display: grid) { - .emotion-3 { - display: grid; - position: initial; - width: initial; - margin: 0; - } - - @media (max-width: 14.9375rem) { - .emotion-3 { - grid-template-columns: repeat(6, 1fr); - grid-column-end: span 6; - grid-column-gap: 0.5rem; - } - } - - @media (min-width: 15rem) and (max-width: 24.9375rem) { - .emotion-3 { - grid-template-columns: repeat(6, 1fr); - grid-column-end: span 6; - grid-column-gap: 0.5rem; - } - } - - @media (min-width: 25rem) and (max-width: 37.4375rem) { - .emotion-3 { - grid-template-columns: repeat(6, 1fr); - grid-column-end: span 6; - grid-column-gap: 0.5rem; - } - } - - @media (min-width: 37.5rem) and (max-width: 62.9375rem) { - .emotion-3 { - grid-template-columns: repeat(6, 1fr); - grid-column-end: span 6; - grid-column-gap: 1rem; - } - } - - @media (min-width: 63rem) and (max-width: 79.9375rem) { - .emotion-3 { - grid-template-columns: repeat(8, 1fr); - grid-column-end: span 8; - grid-column-gap: 1rem; - } - } - - @media (min-width: 80rem) { - .emotion-3 { - grid-template-columns: repeat(20, 1fr); - grid-column-end: span 20; - grid-column-gap: 1rem; - } - } -} - -@media (min-width: 63rem) and (max-width: 79.9375rem) { - .emotion-3 { - margin: 0 auto; - max-width: 63rem; - } -} - -@media (min-width: 80rem) { - .emotion-3 { - margin: 0 auto; - max-width: 80rem; - } -} - -@media (max-width: 14.9375rem) { - .emotion-5 { - margin-left: 0%; - } -} - -@media (min-width: 15rem) and (max-width: 24.9375rem) { - .emotion-5 { - margin-left: 0%; - } -} - -@media (min-width: 25rem) and (max-width: 37.4375rem) { - .emotion-5 { - margin-left: 0%; - } -} - -@media (min-width: 37.5rem) and (max-width: 62.9375rem) { - .emotion-5 { - margin-left: 0%; - } -} - -@media (min-width: 63rem) and (max-width: 79.9375rem) { - .emotion-5 { - margin-left: 16.666666666666668%; - } -} - -@media (min-width: 80rem) { - .emotion-5 { - margin-left: 9.090909090909092%; - } -} - -@supports (display: grid) { - .emotion-5 { - display: block; - width: initial; - margin: 0; - } - - @media (max-width: 14.9375rem) { - .emotion-5 { - grid-template-columns: repeat(6, 1fr); - grid-column-end: span 6; - grid-column-start: 1; - } - } - - @media (min-width: 15rem) and (max-width: 24.9375rem) { - .emotion-5 { - grid-template-columns: repeat(6, 1fr); - grid-column-end: span 6; - grid-column-start: 1; - } - } - - @media (min-width: 25rem) and (max-width: 37.4375rem) { - .emotion-5 { - grid-template-columns: repeat(6, 1fr); - grid-column-end: span 6; - grid-column-start: 1; - } - } - - @media (min-width: 37.5rem) and (max-width: 62.9375rem) { - .emotion-5 { - grid-template-columns: repeat(6, 1fr); - grid-column-end: span 6; - grid-column-start: 1; - } - } - - @media (min-width: 63rem) and (max-width: 79.9375rem) { - .emotion-5 { - grid-template-columns: repeat(6, 1fr); - grid-column-end: span 6; - grid-column-start: 2; - } - } - - @media (min-width: 80rem) { - .emotion-5 { - grid-template-columns: repeat(11, 1fr); - grid-column-end: span 11; - grid-column-start: 2; - } - } -} - -.emotion-8 { - font-size: 1.125rem; - line-height: 1.375rem; - font-family: Helmet,Freesans,Helvetica,Arial,sans-serif; - font-weight: 400; - font-style: normal; - color: #6E6E73; - margin: 0; - padding-bottom: 1.5rem; -} - -@media (min-width: 20rem) and (max-width: 37.4375rem) { - .emotion-8 { - font-size: 1.25rem; - line-height: 1.5rem; - } -} - -@media (min-width: 37.5rem) { - .emotion-8 { - font-size: 1.5rem; - line-height: 1.75rem; - } -} - -@media (min-width: 37.5rem) and (max-width: 62.9375rem) { - .emotion-8 { - padding: 1.5rem 0 0.5rem; - } -} - -@media (min-width: 63rem) { - .emotion-8 { - padding: 1.5rem 0 0; - } -} - -@media (min-width: 80rem) { - .emotion-8 { - width: 100%; - margin: 0 auto; - max-width: 80rem; - } -} - -@media (max-width: 24.9375rem) { - .emotion-8 { - padding-top: 0.5rem; - } -} - -@media (min-width: 37.5rem) and (max-width: 62.9375rem) { - .emotion-8 { - padding-bottom: 0.5rem; - padding-top: 1rem; - } -} - -@media (min-width: 63rem) { - .emotion-8 { - padding-bottom: 2rem; - } -} - -@media (max-width: 24.9375rem) { - .emotion-11 { - padding: 0 0.5rem; - } -} - -@media (min-width: 25rem) and (max-width: 62.9375rem) { - .emotion-11 { - padding: 0 1rem; - } -} - -@media (max-width: 63rem) { - .emotion-11 { - padding: 0; - } -} - -.emotion-14 { - list-style-type: none; - margin: 0; - padding: 0; -} - -@supports (display: grid) { - .emotion-14 { - display: grid; - position: initial; - width: initial; - margin: 0; - } - - @media (max-width: 14.9375rem) { - .emotion-14 { - grid-template-columns: repeat(6, 1fr); - grid-column-end: span 6; - grid-column-gap: 0.5rem; - } - } - - @media (min-width: 15rem) and (max-width: 24.9375rem) { - .emotion-14 { - grid-template-columns: repeat(6, 1fr); - grid-column-end: span 6; - grid-column-gap: 0.5rem; - } - } - - @media (min-width: 25rem) and (max-width: 37.4375rem) { - .emotion-14 { - grid-template-columns: repeat(6, 1fr); - grid-column-end: span 6; - grid-column-gap: 0.5rem; - } - } - - @media (min-width: 37.5rem) and (max-width: 62.9375rem) { - .emotion-14 { - grid-template-columns: repeat(6, 1fr); - grid-column-end: span 6; - grid-column-gap: 1rem; - } - } - - @media (min-width: 63rem) and (max-width: 79.9375rem) { - .emotion-14 { - grid-template-columns: repeat(8, 1fr); - grid-column-end: span 8; - grid-column-gap: 1rem; - } - } - - @media (min-width: 80rem) { - .emotion-14 { - grid-template-columns: repeat(8, 1fr); - grid-column-end: span 8; - grid-column-gap: 1rem; - } - } -} - -.emotion-17 { - padding: 0.5rem 0 1rem; -} - -@media (max-width: 62.9375rem) { - .emotion-17 { - border-bottom: 0.0625rem solid #F2F2F2; - } -} - -.emotion-17:last-child { - border: none; -} - -@media (min-width: 37.5rem) { - .emotion-17 { - padding: 1rem 0 1rem; - } -} - -@media (min-width: 63rem) { - .emotion-17 { - padding: 0 0 1.5rem; - } -} - -.emotion-17:first-child { - padding-top: 0; -} - -@media (min-width: 37.5rem) and (max-width: 62.9375rem) { - .emotion-17:first-child { - padding-top: 1rem; - } -} - -.emotion-17:last-child { - padding-bottom: 0; -} - -@media (min-width: 63rem) { - .emotion-17 { - border-bottom: 0.0625rem solid #F2F2F2; - padding: 1rem 0 1rem; - } -} - -@supports (display: grid) { - .emotion-17 { - display: block; - width: initial; - margin: 0; - } - - @media (max-width: 14.9375rem) { - .emotion-17 { - grid-template-columns: repeat(6, 1fr); - grid-column-end: span 6; - } - } - - @media (min-width: 15rem) and (max-width: 24.9375rem) { - .emotion-17 { - grid-template-columns: repeat(6, 1fr); - grid-column-end: span 6; - } - } - - @media (min-width: 25rem) and (max-width: 37.4375rem) { - .emotion-17 { - grid-template-columns: repeat(6, 1fr); - grid-column-end: span 6; - } - } - - @media (min-width: 37.5rem) and (max-width: 62.9375rem) { - .emotion-17 { - grid-template-columns: repeat(6, 1fr); - grid-column-end: span 6; - } - } - - @media (min-width: 63rem) and (max-width: 79.9375rem) { - .emotion-17 { - grid-template-columns: repeat(8, 1fr); - grid-column-end: span 8; - } - } - - @media (min-width: 80rem) { - .emotion-17 { - grid-template-columns: repeat(8, 1fr); - grid-column-end: span 8; - } - } -} - -.emotion-20 { - position: relative; -} - -@supports (grid-template-columns: fit-content(200px)) { - .emotion-20 { - display: grid; - grid-template-columns: repeat(6, 1fr); - grid-column-gap: 0.5rem; - } - - @media (min-width: 37.5rem) { - .emotion-20 { - grid-column-gap: 1rem; - } - } - - @media (min-width: 63rem) { - .emotion-20 { - display: block; - } - } -} - -@media (min-width: 63rem) { - .emotion-20 { - display: grid; - } -} - -.emotion-22 { - display: inline-block; - vertical-align: top; - position: relative; - width: 33.33%; -} - -@media (min-width: 63rem) { - .emotion-22 { - display: block; - width: 100%; - } -} - -@supports (grid-template-columns: fit-content(200px)) { - .emotion-22 { - width: initial; - grid-column: 1/span 2; - } -} - -.emotion-24 { - position: relative; -} - -.emotion-26 { - position: relative; - height: 0; - background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSI0NzkiIGhlaWdodD0iMTM2IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+PGcgZmlsbD0iI0Q1RDBDRCI+PGc+PHBhdGggZD0iTTQ0OS41NTYgOTEuNTUzbC0yLjMxIDEuNDFjLTExLjE2NyA2LjgxOC0yMy4zMTMgMTAuNDc0LTM0LjM0NiAxMC40Ny0yMy42MS0uMDktMzkuMTYzLTE0LjA4My0zOS4yMjctMzQuNDUzLjAzLTE5LjkxOCAxNi4yNy0zNC42NjMgMzguNjMzLTM0LjcxOCAxMS4zODcuMDEgMjEuNzAzIDIuOTU0IDMzLjk2MiA5LjY3MmwyLjI1MSAxLjI0di0xOC4xOWwtLjk2Mi0uMzc3Yy0xMy44MjQtNS40NTgtMjQuNTMtNy44OS0zNS4xMDMtNy44ODQtMTYuMzQ2LS4wMDYtMzAuNTMzIDUuMzk0LTQwLjYzNyAxNC41NTctMTAuMTA1IDkuMTYzLTE2LjEwNiAyMi4xMDItMTYuMDk5IDM2Ljk1My4wMDggMTAuMzQ4IDQuMjc5IDIyLjQ4IDEzLjQyIDMyLjEwNSA5LjEyMSA5LjYyOCAyMy4xNjUgMTYuNjQ4IDQyLjQzIDE2LjYzOWguMDYzYzE1Ljk4IDAgMjcuMDYyLTMuNTYzIDM3LjA3NC04LjQ5MmwuODUxLS40MTRWOTEuNTUzek0zMzQgMTM1LjY5N2gxNDQuMTk1VjBIMzM0djEzNS42OTd6Ii8+PHBhdGggZD0iTTI3Ni45MzcgODkuOTY4Yy4wNDEtMTIuMzMtOC4xNzEtMjEuNjk2LTIxLjMwOC0yNS4zIDMuNTQ0LTEuODA5IDYuMzUtNC4wMjMgOC40MDQtNi43MjcgMi43NS0zLjYyMiA0LjA2MS04LjA2NCA0LjA0Ni0xMy4yMzUuMDE1LTYuMzU5LTIuNDg2LTEyLjgzOS03Ljg1OC0xNy42ODctNS4zNzItNC44NDctMTMuNTI2LTcuOTk3LTI0LjY1NC03Ljk5MUgyMDQuODN2OTcuNzI4aDM2LjA3M2MxMi44NyAwIDIxLjkwNi0zLjQ4MiAyNy43MjItOC42NSA1LjgxOC01LjE1NSA4LjMyLTExLjkxIDguMzEyLTE4LjEzOHpNMTY3IDEzNS42OThoMTQ0LjE5N1YwSDE2N3YxMzUuNjk3eiIvPjxwYXRoIGQ9Ik0xMDkuOTM3IDg5Ljk2OGMuMDQxLTEyLjMzLTguMTcxLTIxLjY5Ni0yMS4zMDgtMjUuMyAzLjU0NC0xLjgwOSA2LjM1LTQuMDIzIDguNDA0LTYuNzI3IDIuNzUtMy42MjIgNC4wNjEtOC4wNjQgNC4wNDYtMTMuMjM1LjAxNS02LjM1OS0yLjQ4Ni0xMi44MzktNy44NTgtMTcuNjg3LTUuMzcyLTQuODQ3LTEzLjUyNi03Ljk5Ny0yNC42NTQtNy45OTFIMzcuODN2OTcuNzI4aDM2LjA3M2MxMi44NyAwIDIxLjkwNi0zLjQ4MiAyNy43MjItOC42NSA1LjgxOC01LjE1NSA4LjMyLTExLjkxIDguMzEyLTE4LjEzOHpNMCAxMzUuNjk4aDE0NC4xOTdWMEgwdjEzNS42OTd6Ii8+PHBhdGggZD0iTTI1OC42NjIgODguMTk4Yy0uMDEzIDMuMjI5LTEuMDA3IDYuNDc1LTMuODk2IDkuMDExLTIuODg0IDIuNTM3LTcuODczIDQuNDYzLTE2LjEzMyA0LjQ2M0gyMjJWNzVoMTUuODkzYzcuNDExIDAgMTIuNjcgMS41MDIgMTUuOTY1IDMuODUgMy4yODkgMi4zNjIgNC43NzYgNS40NjMgNC44MDQgOS4zNDgiLz48cGF0aCBkPSJNOTEuNjYyIDg4LjE5OGMtLjAxMyAzLjIyOS0xLjAwNyA2LjQ3NS0zLjg5NiA5LjAxMS0yLjg4NCAyLjUzNy03Ljg3NCA0LjQ2My0xNi4xMzMgNC40NjNINTVWNzVoMTUuODkyYzcuNDEyIDAgMTIuNjcyIDEuNTAyIDE1Ljk2NiAzLjg1IDMuMjg5IDIuMzYyIDQuNzc2IDUuNDYzIDQuODA0IDkuMzQ4Ii8+PHBhdGggZD0iTTI0NS4xODYgNTUuNzljMy4wOTYtMi4yMzcgNC41OS01LjM4NiA0LjYxMy0xMC4xMjQtLjAxNS0zLjI1LS45NDMtNi4wMzMtMy4yODEtOC4xMTEtMi4zNDYtMi4wNzgtNi4zMy0zLjU1NS0xMi43NTQtMy41NTVIMjIydjI1LjI3NWg4LjA3NmM2Ljk4OC4wMDQgMTEuOTk4LTEuMjQzIDE1LjExLTMuNDg2Ii8+PHBhdGggZD0iTTc4LjE4NiA1NS43OWMzLjA5Ni0yLjIzNyA0LjU5LTUuMzg2IDQuNjEzLTEwLjEyNC0uMDE1LTMuMjUtLjk0My02LjAzMy0zLjI4Mi04LjExMUM3Ny4xNzIgMzUuNDc3IDczLjE4OCAzNCA2Ni43NjQgMzRINTV2MjUuMjc1aDguMDc2YzYuOTg4LjAwNCAxMS45OTgtMS4yNDMgMTUuMTEtMy40ODYiLz48L2c+PC9nPjwvZz48L3N2Zz4K); - -webkit-background-position: center center; - background-position: center center; - background-repeat: no-repeat; - -webkit-background-size: 60px 17px; - background-size: 60px 17px; - background-color: #F2F2F2; -} - -@media (min-width: 25rem) { - .emotion-26 { - -webkit-background-size: 77px 22px; - background-size: 77px 22px; - } -} - -@media (min-width: 63rem) { - .emotion-26 { - -webkit-background-size: 93px 27px; - background-size: 93px 27px; - } -} - -.emotion-27 { - width: 100%; - object-fit: cover; - height: auto; -} - -@media (min-width: 25rem) { - .emotion-28 { - position: absolute; - bottom: 0; - } -} - -.emotion-28>* { - height: 2rem; - padding: 0.5rem 0.25rem; -} - -@media (max-width: 24.9375rem) { - .emotion-28>* { - height: 1.25rem; - padding: 0.25rem 0.25rem 0; - } -} - -.emotion-30 { - color: #222222; - background-color: #FFFFFF; - font-family: Helmet,Freesans,Helvetica,Arial,sans-serif; - font-weight: 400; - font-style: normal; - font-size: 0.75rem; - line-height: 1rem; - display: block; -} - -@media (min-width: 20rem) and (max-width: 37.4375rem) { - .emotion-30 { - font-size: 0.75rem; - line-height: 1rem; - } -} - -@media (min-width: 37.5rem) { - .emotion-30 { - font-size: 0.75rem; - line-height: 1rem; - } -} - -.emotion-32 { - display: -webkit-box; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-align-items: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - height: 100%; -} - -.emotion-34 { - vertical-align: middle; - margin: 0 0.25rem; - color: #222222; - fill: currentColor; - width: 0.75rem; - height: 0.75rem; -} - -.emotion-36 { - display: inline-block; - vertical-align: top; - width: 66.67%; - padding: 0 0.5rem; -} - -@media (min-width: 37.5rem) { - .emotion-36 { - padding: 0 1rem; - } -} - -@media (min-width: 63rem) { - .emotion-36 { - display: block; - width: 100%; - padding: 0.5rem 0; - } -} - -@supports (grid-template-columns: fit-content(200px)) { - .emotion-36 { - display: block; - width: initial; - padding: initial; - grid-column: 3/span 4; - } - - @media (min-width: 63rem) { - .emotion-36 { - padding-top: 0.5rem; - } - } -} - -.emotion-38 { - color: #222222; - margin: 0; - padding-bottom: 0.5rem; - font-family: Helmet,Freesans,Helvetica,Arial,sans-serif; - font-weight: 700; - font-style: normal; - font-size: 0.9375rem; - line-height: 1.25rem; -} - -@media (min-width: 20rem) and (max-width: 37.4375rem) { - .emotion-38 { - font-size: 1rem; - line-height: 1.25rem; - } -} - -@media (min-width: 37.5rem) { - .emotion-38 { - font-size: 1rem; - line-height: 1.25rem; - } -} - -.emotion-40 { - position: static; - color: #222222; - -webkit-text-decoration: none; - text-decoration: none; - overflow-wrap: break-word; - display: inline-block; - overflow-wrap: anywhere; -} - -.emotion-40:before { - bottom: 0; - content: ''; - left: 0; - overflow: hidden; - position: absolute; - right: 0; - top: 0; - white-space: nowrap; - z-index: 1; -} - -.emotion-40:hover, -.emotion-40:focus { - -webkit-text-decoration: underline; - text-decoration: underline; -} - -.emotion-40:visited { - color: #6E6E73; -} - -.emotion-42 { - -webkit-clip-path: inset(100%); - clip-path: inset(100%); - clip: rect(1px, 1px, 1px, 1px); - height: 1px; - overflow: hidden; - position: absolute; - width: 1px; - margin: 0; -} - -.emotion-43 { - font-size: 0.875rem; - line-height: 1.125rem; - color: #545658; - display: block; - font-family: Helmet,Freesans,Helvetica,Arial,sans-serif; - font-weight: 400; - font-style: normal; -} - -@media (min-width: 20rem) and (max-width: 37.4375rem) { - .emotion-43 { - font-size: 0.875rem; - line-height: 1.125rem; - } -} - -@media (min-width: 37.5rem) { - .emotion-43 { - font-size: 0.8125rem; - line-height: 1rem; - } -} - -
-
-`; diff --git a/src/app/pages/MostWatchedPage/index.jsx b/src/app/pages/MostWatchedPage/index.jsx deleted file mode 100644 index 79d3abf6527..00000000000 --- a/src/app/pages/MostWatchedPage/index.jsx +++ /dev/null @@ -1,6 +0,0 @@ -import MostWatchedPage from './MostWatchedPage'; -import applyBasicPageHandlers from '../utils/applyBasicPageHandlers'; - -export default applyBasicPageHandlers({ - addVariantHandling: false, -})(MostWatchedPage); diff --git a/src/app/pages/MostWatchedPage/index.test.jsx b/src/app/pages/MostWatchedPage/index.test.jsx deleted file mode 100644 index edca5bb339a..00000000000 --- a/src/app/pages/MostWatchedPage/index.test.jsx +++ /dev/null @@ -1,74 +0,0 @@ -import React from 'react'; -import { render } from '@testing-library/react'; -import { BrowserRouter } from 'react-router-dom'; -import { RequestContextProvider } from '#contexts/RequestContext'; -import { ToggleContextProvider } from '#contexts/ToggleContext'; -import mostWatchedData from '#data/pidgin/mostWatched/index.json'; -import { MOST_WATCHED_PAGE } from '#app/routes/utils/pageTypes'; -import { ServiceContextProvider } from '../../contexts/ServiceContext'; -import ThemeProvider from '../../components/ThemeProvider'; -import MostWatchedPage from './MostWatchedPage'; - -const pageData = { - mostWatched: mostWatchedData.records.slice(0, 3).map(item => item.promo), -}; - -jest.mock('../../components/ChartbeatAnalytics', () => { - const ChartbeatAnalytics = () =>
chartbeat
; - return ChartbeatAnalytics; -}); - -jest.mock('../../components/ThemeProvider'); - -const MostWatchedPageWithContext = ({ isAmp = false }) => ( - - - - - - - - - - - -); - -describe('Most Watched Page Main', () => { - it('should match snapshot for the Most Watched page', async () => { - const { container } = render(); - - expect(container).toMatchSnapshot(); - }); - - it('shoulder render the Most Watched component on Canonical', async () => { - const { getByText, container } = render(); - - const expectedHeader = 'De one we dem don look'; - const expectedContent = `'I no know say I different for society until pipo begin look me one kain'`; - - expect(container.querySelector('h1').textContent).toEqual(expectedHeader); - expect(container.querySelector('h2')).toBeInTheDocument(); - expect(getByText(expectedContent)).toBeInTheDocument(); - }); - - it('shoulder render the Most Watched component on AMP', () => { - const { getByText, container } = render( - , - ); - - const expectedHeader = 'De one we dem don look'; - const expectedContent = `'I no know say I different for society until pipo begin look me one kain'`; - - expect(container.querySelector('h1').textContent).toEqual(expectedHeader); - expect(container.querySelector('h2')).toBeInTheDocument(); - expect(getByText(expectedContent)).toBeInTheDocument(); - }); -}); From 3751d0903a94eb342f0ffe26689025bf4c9ee77a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CLilyL0u=E2=80=9D?= Date: Mon, 17 Jun 2024 16:49:18 +0100 Subject: [PATCH 06/51] remove most wached page from bundlesize script --- scripts/bundleSize/pages.js | 1 - 1 file changed, 1 deletion(-) diff --git a/scripts/bundleSize/pages.js b/scripts/bundleSize/pages.js index 2f43a9da767..5c756d09ff5 100644 --- a/scripts/bundleSize/pages.js +++ b/scripts/bundleSize/pages.js @@ -6,7 +6,6 @@ export const pages = [ 'MostReadPage', 'LiveRadioPage', 'MediaAssetPage', - 'MostWatchedPage', 'OnDemandAudioPage', 'OnDemandTvPage', 'PhotoGalleryPage', From 3570ddb457387ab986df8095938eeff1f8c4f655 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CLilyL0u=E2=80=9D?= Date: Mon, 17 Jun 2024 16:51:59 +0100 Subject: [PATCH 07/51] remove most watched page from a11y page types --- a11y.js | 1 - 1 file changed, 1 deletion(-) diff --git a/a11y.js b/a11y.js index d5ea24365e3..485199bbd9c 100644 --- a/a11y.js +++ b/a11y.js @@ -69,7 +69,6 @@ const pageTypes = { ], photoGalleryPage: ["//div[@id='root']/header/nav/div/div[1]/div/ul"], mostReadPage: ["//div[@id='root']/header/nav/div/div[1]/div/ul"], - mostWatchedPage: ["//div[@id='root']/header/nav/div/div[1]/div/ul"], storyPage: [ "//div[@id='root']/header/nav/div/div[1]/div/ul", '/iframe', // same issues as in mediaEmbedErrorsToSuppress but the DOM path is different From 933ee507e2acafa19fc152331c07db740b201a85 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CLilyL0u=E2=80=9D?= Date: Mon, 17 Jun 2024 16:53:42 +0100 Subject: [PATCH 08/51] remove most watched page from ati analytics params --- src/app/components/ATIAnalytics/params/index.ts | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/app/components/ATIAnalytics/params/index.ts b/src/app/components/ATIAnalytics/params/index.ts index ceacc41c951..6288c979ad6 100644 --- a/src/app/components/ATIAnalytics/params/index.ts +++ b/src/app/components/ATIAnalytics/params/index.ts @@ -23,10 +23,6 @@ import { buildTvRadioATIUrl, } from './tvRadioPage/buildParams'; import { buildPageATIUrl, buildPageATIParams } from './genericPage/buildParams'; -import { - buildMostWatchedATIParams, - buildMostWatchedATIUrl, -} from './mostWatchedPage/buildParams'; import { buildIndexPageATIParams, buildIndexPageATIUrl, @@ -66,7 +62,6 @@ const pageTypeUrlBuilders = { [FRONT_PAGE]: buildIndexPageATIUrl, [MEDIA_PAGE]: buildTvRadioATIUrl, [MOST_READ_PAGE]: noOp, - [MOST_WATCHED_PAGE]: buildMostWatchedATIUrl, [FEATURE_INDEX_PAGE]: noOp, [TOPIC_PAGE]: noOp, [MEDIA_ASSET_PAGE]: noOp, @@ -86,7 +81,6 @@ const pageTypeParamBuilders = { [FRONT_PAGE]: buildIndexPageATIParams, [MEDIA_PAGE]: buildTvRadioATIParams, [MOST_READ_PAGE]: noOp, - [MOST_WATCHED_PAGE]: buildMostWatchedATIParams, [FEATURE_INDEX_PAGE]: noOp, [TOPIC_PAGE]: noOp, [MEDIA_ASSET_PAGE]: noOp, From d8948d485937d32830368869ccfcc6535adad091 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CLilyL0u=E2=80=9D?= Date: Mon, 17 Jun 2024 16:56:20 +0100 Subject: [PATCH 09/51] remove most watched page from app routes index --- src/app/routes/index.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/app/routes/index.js b/src/app/routes/index.js index 56945d1e392..63080dfb84f 100644 --- a/src/app/routes/index.js +++ b/src/app/routes/index.js @@ -4,7 +4,6 @@ import frontPage from './frontPage'; import homePage from './homePage'; import liveRadio from './liveRadio'; import mostRead from './mostRead'; -import mostWatched from './mostWatched'; import podcast from './podcast'; import onDemandRadio from './onDemandRadio'; import onDemandTV from './onDemandTV'; @@ -18,7 +17,6 @@ export default [ frontPage, liveRadio, mostRead, - mostWatched, podcast, onDemandRadio, onDemandTV, From 29b429ff4e3769e20f0f14e0e3aa005ffd5d0740 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CLilyL0u=E2=80=9D?= Date: Mon, 17 Jun 2024 16:57:32 +0100 Subject: [PATCH 10/51] remove most watched page constant in utils pageTypes --- src/app/routes/utils/pageTypes.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/app/routes/utils/pageTypes.ts b/src/app/routes/utils/pageTypes.ts index 3068dd6a8fa..65ffc342250 100644 --- a/src/app/routes/utils/pageTypes.ts +++ b/src/app/routes/utils/pageTypes.ts @@ -3,7 +3,6 @@ export const MEDIA_ARTICLE_PAGE = 'mediaArticle' as const; export const FRONT_PAGE = 'frontPage' as const; export const MEDIA_PAGE = 'media' as const; export const MOST_READ_PAGE = 'mostRead' as const; -export const MOST_WATCHED_PAGE = 'mostWatched' as const; export const ERROR_PAGE = 'error' as const; export const FEATURE_INDEX_PAGE = 'FIX' as const; export const MEDIA_ASSET_PAGE = 'MAP' as const; From b905f7495e131f7639524f6ccc7ddbfc473f609a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CLilyL0u=E2=80=9D?= Date: Mon, 17 Jun 2024 16:59:18 +0100 Subject: [PATCH 11/51] remove most watched routes utils regex test --- src/app/routes/utils/regex/index.test.js | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/src/app/routes/utils/regex/index.test.js b/src/app/routes/utils/regex/index.test.js index 50ea14cfc7e..a4b43ed2cf5 100644 --- a/src/app/routes/utils/regex/index.test.js +++ b/src/app/routes/utils/regex/index.test.js @@ -15,7 +15,6 @@ import { liveRadioPath, mostReadDataRegexPath, mostWatchedDataPath, - mostWatchedPagePath, onDemandRadioPath, onDemandTvPath, podcastBrandPath, @@ -342,22 +341,6 @@ describe('mostWatchedDataPath', () => { shouldNotMatchInvalidRoutes(invalidRoutes, mostWatchedDataPath); }); -describe('mostWatchedPagePath', () => { - const validRoutes = [ - '/pidgin/media/video', - '/pashto/media/video', - '/zhongwen/simp/media/video', - ]; - shouldMatchValidRoutes(validRoutes, mostWatchedPagePath); - - const invalidRoutes = [ - '/foobar/media/video', - '/pidgin/video/media', - '/zhongwen/media/video/simp', - ]; - shouldNotMatchInvalidRoutes(invalidRoutes, mostWatchedPagePath); -}); - describe('secondaryColumnDataRegexPath', () => { const validRoutes = [ '/mundo/sty-secondary-column.json', From 107974fb75718bb6f5ba966bb10203b93ce9ff20 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CLilyL0u=E2=80=9D?= Date: Mon, 17 Jun 2024 17:09:07 +0100 Subject: [PATCH 12/51] remove most watched page export from pages _mocks_ --- src/app/pages/__mocks__/index.js | 1 - 1 file changed, 1 deletion(-) diff --git a/src/app/pages/__mocks__/index.js b/src/app/pages/__mocks__/index.js index 30ca1d371dc..5a50e49b4e2 100644 --- a/src/app/pages/__mocks__/index.js +++ b/src/app/pages/__mocks__/index.js @@ -6,7 +6,6 @@ export { default as FrontPage } from '../FrontPage'; export { default as HomePage } from '../HomePage'; export { default as MediaAssetPage } from '../MediaAssetPage'; export { default as MostReadPage } from '../MostReadPage'; -export { default as MostWatchedPage } from '../MostWatchedPage'; export { default as PhotoGalleryPage } from '../PhotoGalleryPage'; export { default as LiveRadioPage } from '../LiveRadioPage'; export { default as OnDemandAudioPage } from '../OnDemandAudioPage'; From a1d3b082b39958b8ae66ceb3339686b34d53056b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CLilyL0u=E2=80=9D?= Date: Mon, 17 Jun 2024 17:17:41 +0100 Subject: [PATCH 13/51] remove export of MostWatchedPage in app pages --- src/app/pages/index.js | 1 - 1 file changed, 1 deletion(-) diff --git a/src/app/pages/index.js b/src/app/pages/index.js index 24d689ab41c..cb82f1b1663 100644 --- a/src/app/pages/index.js +++ b/src/app/pages/index.js @@ -7,7 +7,6 @@ export const FrontPage = loadable(() => import('./FrontPage')); export const HomePage = loadable(() => import('./HomePage')); export const MediaAssetPage = loadable(() => import('./MediaAssetPage')); export const MostReadPage = loadable(() => import('./MostReadPage')); -export const MostWatchedPage = loadable(() => import('./MostWatchedPage')); export const PhotoGalleryPage = loadable(() => import('./PhotoGalleryPage')); export const LiveRadioPage = loadable(() => import('./LiveRadioPage')); export const OnDemandAudioPage = loadable(() => import('./OnDemandAudioPage')); From 76620a8856e726ddf5839d7916266c1ac8079c46 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CLilyL0u=E2=80=9D?= Date: Mon, 17 Jun 2024 18:50:43 +0100 Subject: [PATCH 14/51] remove most watched in ati chartbeat and event tracking --- .../components/ATIAnalytics/params/index.ts | 1 - .../ChartbeatAnalytics/utils/index.test.ts | 38 ------------------- .../ChartbeatAnalytics/utils/index.ts | 4 -- .../contexts/EventTrackingContext/index.tsx | 2 - 4 files changed, 45 deletions(-) diff --git a/src/app/components/ATIAnalytics/params/index.ts b/src/app/components/ATIAnalytics/params/index.ts index 6288c979ad6..48b266b67d2 100644 --- a/src/app/components/ATIAnalytics/params/index.ts +++ b/src/app/components/ATIAnalytics/params/index.ts @@ -9,7 +9,6 @@ import { MEDIA_ARTICLE_PAGE, FEATURE_INDEX_PAGE, MOST_READ_PAGE, - MOST_WATCHED_PAGE, PHOTO_GALLERY_PAGE, MEDIA_PAGE, ERROR_PAGE, diff --git a/src/app/components/ChartbeatAnalytics/utils/index.test.ts b/src/app/components/ChartbeatAnalytics/utils/index.test.ts index 701b69b1fb8..4545b852940 100644 --- a/src/app/components/ChartbeatAnalytics/utils/index.test.ts +++ b/src/app/components/ChartbeatAnalytics/utils/index.test.ts @@ -5,7 +5,6 @@ import { FRONT_PAGE, MEDIA_PAGE, MOST_READ_PAGE, - MOST_WATCHED_PAGE, FEATURE_INDEX_PAGE, MEDIA_ASSET_PAGE, PHOTO_GALLERY_PAGE, @@ -92,11 +91,6 @@ describe('Chartbeat utilities', () => { expectedDefaultType: 'Most Read', expectedShortType: 'Most Read', }, - { - pageType: MOST_WATCHED_PAGE, - expectedDefaultType: 'Most Watched', - expectedShortType: 'Most Watched', - }, { pageType: STORY_PAGE, expectedDefaultType: STORY_PAGE, @@ -294,7 +288,6 @@ describe('Chartbeat utilities', () => { ${FRONT_PAGE} | ${'Front Page Title'} | ${'BBC News Pidgin'} | ${'Front Page Title - BBC News Pidgin'} ${FEATURE_INDEX_PAGE} | ${'Feature Index Page Title'} | ${'BBC News Pidgin'} | ${'Feature Index Page Title - BBC News Pidgin'} ${MOST_READ_PAGE} | ${'Most Read Page Title'} | ${'BBC News Pidgin'} | ${'Most Read Page Title - BBC News Pidgin'} - ${MOST_WATCHED_PAGE} | ${'Most Watched Page Title'} | ${'BBC News Pidgin'} | ${'Most Watched Page Title - BBC News Pidgin'} ${TOPIC_PAGE} | ${'Topic Page Title'} | ${'BBC News Pidgin'} | ${'Topic Page Title - BBC News Pidgin'} ${LIVE_PAGE} | ${'Live Page Title'} | ${'BBC News Pidgin'} | ${'Live Page Title - BBC News Pidgin'} ${MEDIA_PAGE} | ${'Media Page Title'} | ${'BBC News Pidgin'} | ${'Media Page Title - BBC News Pidgin'} @@ -905,37 +898,6 @@ describe('Chartbeat utilities', () => { expect(getConfig(fixtureData)).toStrictEqual(expectedConfig); }); - it('should return config for canonical pages when page type is mostWatched and env is not live', () => { - const fixtureData: GetConfigProps = { - isAmp: false, - platform: 'canonical', - pageType: MOST_WATCHED_PAGE, - brandName: 'BBC News Afaan Oromoo', - title: 'Hedduu kan ilaalaman', - chartbeatDomain: 'afaanoromoo.bbc.co.uk', - env: 'test', - service: 'afaanoromoo', - origin: 'test.bbc.com', - previousPath: '/previous-path', - }; - - const expectedConfig = { - domain: 'test.bbc.co.uk', - idSync: { - bbc_hid: 'foobar', - }, - path: '/', - sections: 'Afaanoromoo, Afaanoromoo - Most Watched', - type: 'Most Watched', - title: 'Hedduu kan ilaalaman - BBC News Afaan Oromoo', - uid: 50924, - useCanonical: true, - virtualReferrer: 'test.bbc.com/previous-path', - }; - - expect(getConfig(fixtureData)).toStrictEqual(expectedConfig); - }); - it('should return config for canonical pages when page type is FIX and env is not live', () => { const fixtureData: GetConfigProps = { isAmp: false, diff --git a/src/app/components/ChartbeatAnalytics/utils/index.ts b/src/app/components/ChartbeatAnalytics/utils/index.ts index fcc46b61dfa..e8020036253 100644 --- a/src/app/components/ChartbeatAnalytics/utils/index.ts +++ b/src/app/components/ChartbeatAnalytics/utils/index.ts @@ -9,7 +9,6 @@ import { FRONT_PAGE, MEDIA_PAGE, MOST_READ_PAGE, - MOST_WATCHED_PAGE, FEATURE_INDEX_PAGE, MEDIA_ASSET_PAGE, PHOTO_GALLERY_PAGE, @@ -61,8 +60,6 @@ export const getType = (pageType: PageTypes | 'index', shorthand = false) => { return 'Radio'; case MOST_READ_PAGE: return 'Most Read'; - case MOST_WATCHED_PAGE: - return 'Most Watched'; case STORY_PAGE: return STORY_PAGE; case PHOTO_GALLERY_PAGE: @@ -180,7 +177,6 @@ export const getTitle = ({ pageType, title, brandName }: GetTitleProps) => { case FRONT_PAGE: case FEATURE_INDEX_PAGE: case MOST_READ_PAGE: - case MOST_WATCHED_PAGE: case TOPIC_PAGE: case LIVE_PAGE: case MEDIA_PAGE: diff --git a/src/app/contexts/EventTrackingContext/index.tsx b/src/app/contexts/EventTrackingContext/index.tsx index bef688870d5..711e6a9d6db 100644 --- a/src/app/contexts/EventTrackingContext/index.tsx +++ b/src/app/contexts/EventTrackingContext/index.tsx @@ -12,7 +12,6 @@ import { FRONT_PAGE, MEDIA_PAGE, MOST_READ_PAGE, - MOST_WATCHED_PAGE, FEATURE_INDEX_PAGE, MEDIA_ASSET_PAGE, STORY_PAGE, @@ -58,7 +57,6 @@ const getCampaignID = (pageType: CampaignPageTypes) => { [FRONT_PAGE]: 'index-home', [MEDIA_PAGE]: 'player-episode-tv', [MOST_READ_PAGE]: 'list-datadriven-read', - [MOST_WATCHED_PAGE]: 'list-datadriven-watched', [FEATURE_INDEX_PAGE]: 'index-section-fix', [MEDIA_ASSET_PAGE]: 'article-media-asset', [STORY_PAGE]: 'article-sty', From 999e7d54b02eb3cf1b37b82b787fed1228a31f3b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CLilyL0u=E2=80=9D?= Date: Mon, 17 Jun 2024 18:53:13 +0100 Subject: [PATCH 15/51] remove most watched from story promo heading being h2 and test. can this still happen? --- .../legacy/containers/StoryPromo/utilities/index.js | 11 ++--------- .../containers/StoryPromo/utilities/index.test.js | 12 ------------ 2 files changed, 2 insertions(+), 21 deletions(-) diff --git a/src/app/legacy/containers/StoryPromo/utilities/index.js b/src/app/legacy/containers/StoryPromo/utilities/index.js index fce8c5d0965..ba41afa5293 100644 --- a/src/app/legacy/containers/StoryPromo/utilities/index.js +++ b/src/app/legacy/containers/StoryPromo/utilities/index.js @@ -1,8 +1,5 @@ import pathOr from 'ramda/src/pathOr'; -import { - MOST_WATCHED_PAGE, - MEDIA_ASSET_PAGE, -} from '#app/routes/utils/pageTypes'; +import { MEDIA_ASSET_PAGE } from '#app/routes/utils/pageTypes'; // MAP is now either a Media Asset Page or a Media Article Page export const isMap = item => { @@ -14,11 +11,7 @@ export const isMap = item => { return isCpsTypeMap || Boolean(hasMedia) || isOptimoMediaPromo; }; -export const getHeadingTagOverride = ({ pageType, isContentTypeGuide }) => { - if (pageType === MOST_WATCHED_PAGE) { - return 'h2'; - } - +export const getHeadingTagOverride = ({ isContentTypeGuide }) => { if (isContentTypeGuide) { return 'div'; } diff --git a/src/app/legacy/containers/StoryPromo/utilities/index.test.js b/src/app/legacy/containers/StoryPromo/utilities/index.test.js index cd1ef5d9a12..3cc7c0b57ef 100644 --- a/src/app/legacy/containers/StoryPromo/utilities/index.test.js +++ b/src/app/legacy/containers/StoryPromo/utilities/index.test.js @@ -1,5 +1,4 @@ import { - MOST_WATCHED_PAGE, PHOTO_GALLERY_PAGE, MEDIA_ASSET_PAGE, } from '#app/routes/utils/pageTypes'; @@ -52,17 +51,6 @@ describe('isPgl', () => { }); describe('getHeadingTagOverride', () => { - it('should return h2 if page type is mostWatched', () => { - const pageType = MOST_WATCHED_PAGE; - const isContentTypeGuide = false; - expect( - getHeadingTagOverride({ - pageType, - isContentTypeGuide, - }), - ).toEqual('h2'); - }); - it('should return div if isContentTypeGuide is true', () => { const pageType = PHOTO_GALLERY_PAGE; const isContentTypeGuide = true; From 068663cb7b5b1b78c9eed8d6fd492f9b49809784 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CLilyL0u=E2=80=9D?= Date: Mon, 17 Jun 2024 18:57:28 +0100 Subject: [PATCH 16/51] remove most watched a11y attributes from cps onward journey --- .../legacy/containers/CpsOnwardJourney/index.jsx | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/src/app/legacy/containers/CpsOnwardJourney/index.jsx b/src/app/legacy/containers/CpsOnwardJourney/index.jsx index 5b7442e17f6..17aa247c81e 100644 --- a/src/app/legacy/containers/CpsOnwardJourney/index.jsx +++ b/src/app/legacy/containers/CpsOnwardJourney/index.jsx @@ -14,9 +14,7 @@ import { GEL_SPACING_TRPL, } from '#psammead/gel-foundations/src/spacings'; -import { RequestContext } from '#contexts/RequestContext'; import { GridWrapper, GridItemLarge } from '#components/Grid'; -import { MOST_WATCHED_PAGE } from '#app/routes/utils/pageTypes'; import { ServiceContext } from '../../../contexts/ServiceContext'; import SkipLinkWrapper from '../../components/SkipLinkWrapper'; import { GHOST } from '../../../components/ThemeProvider/palette'; @@ -110,14 +108,12 @@ const CpsOnwardJourney = ({ eventTrackingData = null, }) => { const { script, service, dir } = useContext(ServiceContext); - const { pageType } = useContext(RequestContext); - const isMostWatched = pageType === MOST_WATCHED_PAGE; - const a11yAttributes = isMostWatched - ? { - as: 'div', - } - : { as: 'section', role: 'region', 'aria-labelledby': labelId }; + const a11yAttributes = { + as: 'section', + role: 'region', + 'aria-labelledby': labelId, + }; const CpsOnwardJourneyWrapper = ({ children }) => parentColumns ? ( From a850d95b012d219239d0ba9880dd2f87a65bde83 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CLilyL0u=E2=80=9D?= Date: Mon, 17 Jun 2024 19:24:17 +0100 Subject: [PATCH 17/51] remove most watched route test --- src/app/routes/index.test.jsx | 27 --------------------------- 1 file changed, 27 deletions(-) diff --git a/src/app/routes/index.test.jsx b/src/app/routes/index.test.jsx index 2ec539e572a..b85a564eb6e 100644 --- a/src/app/routes/index.test.jsx +++ b/src/app/routes/index.test.jsx @@ -301,33 +301,6 @@ describe('Routes', () => { ).toBeInTheDocument(); }); - it('should route to and render a most watched page', async () => { - process.env.SIMORGH_APP_ENV = 'local'; - const pathname = '/pidgin/media/video'; - fetchMock.mock( - 'http://localhost/pidgin/mostwatched.json', - mostWatchedData, - ); - - const { getInitialData, pageType } = getMatchingRoute(pathname); - const { pageData } = await getInitialData({ - path: pathname, - service: 'pidgin', - pageType, - }); - await renderRouter({ - pathname, - pageData, - pageType, - service: 'pidgin', - }); - const EXPECTED_TITLE_RENDERED_IN_DOCUMENT = 'De one we dem don look'; - - expect( - await screen.findByText(EXPECTED_TITLE_RENDERED_IN_DOCUMENT), - ).toBeInTheDocument(); - }); - it('should route to and render a media asset page', async () => { process.env.SIMORGH_APP_ENV = 'local'; const pathname = '/yoruba/media-23256797'; From 01b4d4bf6b6dca2eba0176e4c0595dcce849e4ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CLilyL0u=E2=80=9D?= Date: Mon, 17 Jun 2024 19:54:19 +0100 Subject: [PATCH 18/51] update obsolete snapshot --- .../routes/utils/regex/utils/__snapshots__/index.test.js.snap | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/app/routes/utils/regex/utils/__snapshots__/index.test.js.snap b/src/app/routes/utils/regex/utils/__snapshots__/index.test.js.snap index ffe1b8bfb30..1b690016231 100644 --- a/src/app/routes/utils/regex/utils/__snapshots__/index.test.js.snap +++ b/src/app/routes/utils/regex/utils/__snapshots__/index.test.js.snap @@ -28,8 +28,6 @@ exports[`regex utils snapshots should create expected regex from getMostReadPage exports[`regex utils snapshots should create expected regex from getMostWatchedDataRegex 1`] = `"/:service(afaanoromoo|afrique|amharic|arabic|archive|azeri|bengali|burmese|cymrufyw|gahuza|gujarati|hausa|hindi|igbo|indonesia|japanese|korean|kyrgyz|marathi|mundo|naidheachdan|nepali|news|newsround|pashto|persian|pidgin|portuguese|punjabi|russian|scotland|serbian|sinhala|somali|sport|swahili|tamil|telugu|thai|tigrinya|turkce|ukchina|ukrainian|urdu|uzbek|vietnamese|ws|yoruba|zhongwen)/mostwatched:variant(/simp|/trad|/cyr|/lat)?.json"`; -exports[`regex utils snapshots should create expected regex from getMostWatchedPageRegex 1`] = `"/:service(afaanoromoo|afrique|amharic|arabic|archive|azeri|bengali|burmese|cymrufyw|gahuza|gujarati|hausa|hindi|igbo|indonesia|japanese|korean|kyrgyz|marathi|mundo|naidheachdan|nepali|news|newsround|pashto|persian|pidgin|portuguese|punjabi|russian|scotland|serbian|sinhala|somali|sport|swahili|tamil|telugu|thai|tigrinya|turkce|ukchina|ukrainian|urdu|uzbek|vietnamese|ws|yoruba|zhongwen):variant(/simp|/trad|/cyr|/lat)?/media/video:amp(.amp)?:lite(.lite)?"`; - exports[`regex utils snapshots should create expected regex from getOnDemandRadioRegex 1`] = `"/:service(afaanoromoo|afrique|amharic|arabic|archive|azeri|bengali|burmese|cymrufyw|gahuza|gujarati|hausa|hindi|igbo|indonesia|japanese|korean|kyrgyz|marathi|mundo|naidheachdan|nepali|news|newsround|pashto|persian|pidgin|portuguese|punjabi|russian|scotland|serbian|sinhala|somali|sport|swahili|tamil|telugu|thai|tigrinya|turkce|ukchina|ukrainian|urdu|uzbek|vietnamese|ws|yoruba|zhongwen):variant(/simp|/trad|/cyr|/lat)?/:serviceId(bbc_[a-z]+_radio)(/programmes)?/:mediaId([a-z0-9]+):amp(.amp)?:lite(.lite)?"`; exports[`regex utils snapshots should create expected regex from getOnDemandTvRegex 1`] = `"/:service(afaanoromoo|afrique|amharic|arabic|archive|azeri|bengali|burmese|cymrufyw|gahuza|gujarati|hausa|hindi|igbo|indonesia|japanese|korean|kyrgyz|marathi|mundo|naidheachdan|nepali|news|newsround|pashto|persian|pidgin|portuguese|punjabi|russian|scotland|serbian|sinhala|somali|sport|swahili|tamil|telugu|thai|tigrinya|turkce|ukchina|ukrainian|urdu|uzbek|vietnamese|ws|yoruba|zhongwen)/:serviceId(bbc_[a-z]+_tv)/:brandEpisode(tv|tv_programmes)/:mediaId([a-z0-9]+):amp(.amp)?:lite(.lite)?"`; From 9d566012bdd768459b32c97e2120eadf3dd00ece Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CLilyL0u=E2=80=9D?= Date: Mon, 17 Jun 2024 22:43:28 +0100 Subject: [PATCH 19/51] isMostWatched boolean removed in most watched container --- src/app/legacy/containers/MostWatched/index.jsx | 15 +++------------ .../legacy/containers/MostWatched/index.test.jsx | 4 ++-- 2 files changed, 5 insertions(+), 14 deletions(-) diff --git a/src/app/legacy/containers/MostWatched/index.jsx b/src/app/legacy/containers/MostWatched/index.jsx index 4372597c5ed..797ca6a11a4 100644 --- a/src/app/legacy/containers/MostWatched/index.jsx +++ b/src/app/legacy/containers/MostWatched/index.jsx @@ -12,7 +12,7 @@ const StyledCpsOnwardJourney = styled(CpsOnwardJourney)` } `; -const MostWatched = ({ data = null, isMostWatchedPage = false }) => { +const MostWatched = ({ data = null }) => { const { mostWatched } = useContext(ServiceContext); const { header } = mostWatched; @@ -20,21 +20,12 @@ const MostWatched = ({ data = null, isMostWatchedPage = false }) => { return null; } - const parentColumns = { - group0: 6, - group1: 6, - group2: 6, - group3: 6, - group4: 8, - group5: 20, - }; - return ( item.promo); -const MostWatchedComponent = ({ data, isAmp, isMostWatchedPage = false }) => ( +const MostWatchedComponent = ({ data, isAmp }) => ( ( eventTracking: { enabled: true }, }} > - + From 71f577ae4b507b836df002ef6ed7a4334f1ffe14 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CLilyL0u=E2=80=9D?= Date: Mon, 17 Jun 2024 22:52:43 +0100 Subject: [PATCH 20/51] remove most watched integration tests --- .../afrique/__snapshots__/amp.test.js.snap | 444 ------------------ .../__snapshots__/canonical.test.js.snap | 314 ------------- .../pages/mostWatchedPage/afrique/amp.test.js | 12 - .../mostWatchedPage/afrique/canonical.test.js | 12 - .../pages/mostWatchedPage/ampTests.js | 13 - .../pages/mostWatchedPage/canonicalTests.js | 11 - .../mostWatchedPage/crossPlatformTests.js | 16 - .../urdu/__snapshots__/amp.test.js.snap | 431 ----------------- .../urdu/__snapshots__/canonical.test.js.snap | 301 ------------ .../pages/mostWatchedPage/urdu/amp.test.js | 12 - .../mostWatchedPage/urdu/canonical.test.js | 12 - 11 files changed, 1578 deletions(-) delete mode 100644 src/integration/pages/mostWatchedPage/afrique/__snapshots__/amp.test.js.snap delete mode 100644 src/integration/pages/mostWatchedPage/afrique/__snapshots__/canonical.test.js.snap delete mode 100644 src/integration/pages/mostWatchedPage/afrique/amp.test.js delete mode 100644 src/integration/pages/mostWatchedPage/afrique/canonical.test.js delete mode 100644 src/integration/pages/mostWatchedPage/ampTests.js delete mode 100644 src/integration/pages/mostWatchedPage/canonicalTests.js delete mode 100644 src/integration/pages/mostWatchedPage/crossPlatformTests.js delete mode 100644 src/integration/pages/mostWatchedPage/urdu/__snapshots__/amp.test.js.snap delete mode 100644 src/integration/pages/mostWatchedPage/urdu/__snapshots__/canonical.test.js.snap delete mode 100644 src/integration/pages/mostWatchedPage/urdu/amp.test.js delete mode 100644 src/integration/pages/mostWatchedPage/urdu/canonical.test.js diff --git a/src/integration/pages/mostWatchedPage/afrique/__snapshots__/amp.test.js.snap b/src/integration/pages/mostWatchedPage/afrique/__snapshots__/amp.test.js.snap deleted file mode 100644 index 0911a4a89b7..00000000000 --- a/src/integration/pages/mostWatchedPage/afrique/__snapshots__/amp.test.js.snap +++ /dev/null @@ -1,444 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`AMP Most Watched Page A11y I can see the skip to content link 1`] = `"Aller au contenu"`; - -exports[`AMP Most Watched Page AMP Consent config 1`] = ` -{ - "consents": { - "user-consent": { - "promptIfUnknownForGeoGroup": "eea", - "promptUI": "consent-prompt", - }, - }, - "policy": { - "default": { - "timeout": { - "fallbackAction": "reject", - "seconds": 0, - }, - "waitFor": { - "user-consent": [], - }, - }, - }, -} -`; - -exports[`AMP Most Watched Page AMP Geo config 1`] = ` -{ - "AmpBind": true, - "ISOCountryGroups": { - "eea": [ - "at", - "ax", - "be", - "bg", - "bl", - "cy", - "cz", - "de", - "dk", - "ea", - "ee", - "es", - "fi", - "fr", - "gb", - "gf", - "gg", - "gi", - "gp", - "gr", - "hr", - "hu", - "ic", - "ie", - "im", - "is", - "it", - "je", - "li", - "lt", - "lu", - "lv", - "mf", - "mq", - "mt", - "nc", - "nl", - "no", - "pf", - "pl", - "pm", - "pt", - "re", - "ro", - "se", - "si", - "sj", - "sk", - "tf", - "va", - "wf", - "yt", - ], - "gbOrUnknown": [ - "gb", - "gg", - "im", - "je", - "uk", - "unknown", - ], - }, -} -`; - -exports[`AMP Most Watched Page Analytics ATI 1`] = ` -{ - "requests": { - "base": "https://logws1363.ati-host.net?", - "pageview": "\${base}s=598343&s2=3&p=afrique.media.video.page&r=\${screenWidth}x\${screenHeight}x\${screenColorDepth}&re=\${availableScreenWidth}x\${availableScreenHeight}&hl=\${timestamp}&lng=\${browserLanguage}&x2=[amp]&x3=[news-afrique]&x4=[fr]&x5=[\${sourceUrl}]&x6=[\${documentReferrer}]&x7=[list-datadriven]&x8=[simorgh]&x9=[Les%2520plus%2520vus%2520-%2520BBC%2520News%2520Afrique]&ref=\${documentReferrer}", - }, - "transport": { - "beacon": false, - "image": true, - "xhrpost": false, - }, - "triggers": { - "trackPageview": { - "on": "visible", - "request": "pageview", - }, - }, -} -`; - -exports[`AMP Most Watched Page Analytics chartbeat 1`] = ` -{ - "vars": { - "contentType": "Most Watched", - "domain": "test.bbc.co.uk", - "sections": "Afrique, Afrique - Most Watched", - "title": "Les plus vus - BBC News Afrique", - "uid": 50924, - "virtualReferrer": "\${documentReferrer}", - }, -} -`; - -exports[`AMP Most Watched Page Footer Anchors should match text and url 1`] = ` -{ - "text": "BBC News, Afrique", - "url": "/afrique", -} -`; - -exports[`AMP Most Watched Page Footer Anchors should match text and url 2`] = ` -{ - "text": "Pourquoi vous pouvez faire confiance à BBC News", - "url": "https://www.bbc.com/afrique/institutionelles-49283281", -} -`; - -exports[`AMP Most Watched Page Footer Anchors should match text and url 3`] = ` -{ - "text": "Conditions d'utilisation", - "url": "https://www.bbc.com/afrique/institutionelles-36826639", -} -`; - -exports[`AMP Most Watched Page Footer Anchors should match text and url 4`] = ` -{ - "text": "A propos de la BBC", - "url": "https://www.bbc.com/afrique/institutionelles-36826641", -} -`; - -exports[`AMP Most Watched Page Footer Anchors should match text and url 5`] = ` -{ - "text": "Politique de confidentialité", - "url": "https://www.bbc.com/afrique/institutionelles-36826642", -} -`; - -exports[`AMP Most Watched Page Footer Anchors should match text and url 6`] = ` -{ - "text": "Cookies", - "url": "https://www.bbc.com/usingthebbc/cookies/", -} -`; - -exports[`AMP Most Watched Page Footer Anchors should match text and url 7`] = ` -{ - "text": "Contactez la BBC", - "url": "https://www.bbc.co.uk/afrique/send/u50853159", -} -`; - -exports[`AMP Most Watched Page Footer Anchors should match text and url 8`] = ` -{ - "text": "Découvrez notre approche en matière de liens externes.", - "url": "https://www.bbc.co.uk/editorialguidelines/guidance/feeds-and-links", -} -`; - -exports[`AMP Most Watched Page Footer Cookie Settings Button should match text and on handler 1`] = ` -{ - "on": "tap:consent.prompt, privacy.hide, cookie.show, AMP.setState({ isManagingSettings: true })", - "text": "Do not share or sell my info", -} -`; - -exports[`AMP Most Watched Page Footer I can click on the BBC branding and it would take me to the homepage 1`] = `"/afrique"`; - -exports[`AMP Most Watched Page Footer Paragraphs should match text 1`] = `"© 2024 BBC. La BBC n'est pas responsable du contenu des sites externes. Découvrez notre approche en matière de liens externes."`; - -exports[`AMP Most Watched Page Header I can see the branding 1`] = `"BBC News, Afrique"`; - -exports[`AMP Most Watched Page Header Navigation link should match text and url 1`] = ` -{ - "text": "Accueil", - "url": "/afrique", -} -`; - -exports[`AMP Most Watched Page Header Navigation link should match text and url 2`] = ` -{ - "text": "Afrique", - "url": "/afrique/topics/cvqxn2k7kv7t", -} -`; - -exports[`AMP Most Watched Page Header Navigation link should match text and url 3`] = ` -{ - "text": "Monde", - "url": "/afrique/topics/cvqxn21vx11t", -} -`; - -exports[`AMP Most Watched Page Header Navigation link should match text and url 4`] = ` -{ - "text": "Santé", - "url": "/afrique/topics/c06gq9jxz3rt", -} -`; - -exports[`AMP Most Watched Page Header Navigation link should match text and url 5`] = ` -{ - "text": "Bien-être", - "url": "/afrique/topics/c0vmyy90q8zt", -} -`; - -exports[`AMP Most Watched Page Header Navigation link should match text and url 6`] = ` -{ - "text": "Science et technologie", - "url": "/afrique/topics/crezq2zk0q4t", -} -`; - -exports[`AMP Most Watched Page Header Navigation link should match text and url 7`] = ` -{ - "text": "Economie", - "url": "/afrique/topics/cnq687nr9v1t", -} -`; - -exports[`AMP Most Watched Page Header Navigation link should match text and url 8`] = ` -{ - "text": "Culture", - "url": "/afrique/topics/cnq687nrrw8t", -} -`; - -exports[`AMP Most Watched Page Header Navigation link should match text and url 9`] = ` -{ - "text": "Vidéos", - "url": "/afrique/topics/cz4vn9gyd6rt", -} -`; - -exports[`AMP Most Watched Page Header Navigation link should match text and url 10`] = ` -{ - "text": "Nos émissions", - "url": "/afrique/topics/c88nzggm8gxt", -} -`; - -exports[`AMP Most Watched Page Header Navigation link should match text and url 11`] = ` -{ - "text": "Ecoutez en direct", - "url": "/afrique/bbc_afrique_radio/liveradio", -} -`; - -exports[`AMP Most Watched Page I can see the list items 1`] = `"0:16Vidéo, Test asset, Durée 0,1626 avril 2017"`; - -exports[`AMP Most Watched Page I can see the list items 2`] = `"Ecoutez, Gelila, miraculée des eaux 217 juin 2016"`; - -exports[`AMP Most Watched Page I can see the list items 3`] = `"Ecoutez, Gelila, miraculée des eaux17 juin 2016"`; - -exports[`AMP Most Watched Page I can see the list items 4`] = `"0:16Vidéo, Test asset, Durée 0,1626 avril 2017"`; - -exports[`AMP Most Watched Page I can see the list items 5`] = `"Vidéo, Test 2 - Magari yasiyotumia mafuta yaanza kazi Kenya9 août 2016"`; - -exports[`AMP Most Watched Page I can see the list items 6`] = `"Ecoutez, L’invité BBC Afrique 21/06/2016 : Ibrahim Maïga short24 juin 2016"`; - -exports[`AMP Most Watched Page Main heading should match text 1`] = `"Les plus vus"`; - -exports[`AMP Most Watched Page Main heading should match text 2`] = `"Les plus vus"`; - -exports[`AMP Most Watched Page SEO Apple Touch Icon should match attributes 1`] = ` -{ - "sizes": null, - "url": "http://localhost:7080/afrique/images/icons/icon-192x192.png", -} -`; - -exports[`AMP Most Watched Page SEO Apple Touch Icon should match attributes 2`] = ` -{ - "sizes": "72x72", - "url": "https://static.files.bbci.co.uk/ws/simorgh-assets/public/afrique/images/icons/icon-72x72.png", -} -`; - -exports[`AMP Most Watched Page SEO Apple Touch Icon should match attributes 3`] = ` -{ - "sizes": "96x96", - "url": "https://static.files.bbci.co.uk/ws/simorgh-assets/public/afrique/images/icons/icon-96x96.png", -} -`; - -exports[`AMP Most Watched Page SEO Apple Touch Icon should match attributes 4`] = ` -{ - "sizes": "128x128", - "url": "https://static.files.bbci.co.uk/ws/simorgh-assets/public/afrique/images/icons/icon-128x128.png", -} -`; - -exports[`AMP Most Watched Page SEO Apple Touch Icon should match attributes 5`] = ` -{ - "sizes": "144x144", - "url": "https://static.files.bbci.co.uk/ws/simorgh-assets/public/afrique/images/icons/icon-144x144.png", -} -`; - -exports[`AMP Most Watched Page SEO Apple Touch Icon should match attributes 6`] = ` -{ - "sizes": "152x152", - "url": "https://static.files.bbci.co.uk/ws/simorgh-assets/public/afrique/images/icons/icon-152x152.png", -} -`; - -exports[`AMP Most Watched Page SEO Apple Touch Icon should match attributes 7`] = ` -{ - "sizes": "180x180", - "url": "https://static.files.bbci.co.uk/ws/simorgh-assets/public/afrique/images/icons/icon-180x180.png", -} -`; - -exports[`AMP Most Watched Page SEO Apple Touch Icon should match attributes 8`] = ` -{ - "sizes": "192x192", - "url": "https://static.files.bbci.co.uk/ws/simorgh-assets/public/afrique/images/icons/icon-192x192.png", -} -`; - -exports[`AMP Most Watched Page SEO Apple Touch Icon should match attributes 9`] = ` -{ - "sizes": "384x384", - "url": "https://static.files.bbci.co.uk/ws/simorgh-assets/public/afrique/images/icons/icon-384x384.png", -} -`; - -exports[`AMP Most Watched Page SEO Apple Touch Icon should match attributes 10`] = ` -{ - "sizes": "512x512", - "url": "https://static.files.bbci.co.uk/ws/simorgh-assets/public/afrique/images/icons/icon-512x512.png", -} -`; - -exports[`AMP Most Watched Page SEO Canonical link 1`] = `"http://localhost:7080/afrique/media/video"`; - -exports[`AMP Most Watched Page SEO Dir attribute 1`] = `"ltr"`; - -exports[`AMP Most Watched Page SEO FB app ID 1`] = `"1609039196070050"`; - -exports[`AMP Most Watched Page SEO Heading level 1 1`] = `"Les plus vus"`; - -exports[`AMP Most Watched Page SEO Lang attribute 1`] = `"fr"`; - -exports[`AMP Most Watched Page SEO Linked data should match text 1`] = ` -{ - "@context": "http://schema.org", - "@graph": [ - { - "@type": "WebPage", - "image": { - "@type": "ImageObject", - "height": 576, - "url": "https://news.files.bbci.co.uk/ws/img/logos/og/afrique.png", - "width": 1024, - }, - "inLanguage": { - "@type": "Language", - "alternateName": "fr", - "name": "French", - }, - "mainEntityOfPage": { - "@id": "http://localhost:7080/afrique/media/video", - "@type": "WebPage", - "name": "Les plus vus", - }, - "publisher": { - "@type": "NewsMediaOrganization", - "logo": { - "@type": "ImageObject", - "height": 576, - "url": "https://news.files.bbci.co.uk/ws/img/logos/og/afrique.png", - "width": 1024, - }, - "name": "BBC News Afrique", - "publishingPrinciples": "https://www.bbc.com/afrique/institutionelles-49283281", - }, - "thumbnailUrl": "https://news.files.bbci.co.uk/ws/img/logos/og/afrique.png", - "url": "http://localhost:7080/afrique/media/video", - }, - ], -} -`; - -exports[`AMP Most Watched Page SEO OG description 1`] = `"Les plus vus - BBC News Afrique"`; - -exports[`AMP Most Watched Page SEO OG image 1`] = `"https://news.files.bbci.co.uk/ws/img/logos/og/afrique.png"`; - -exports[`AMP Most Watched Page SEO OG image alt 1`] = `"BBC News Afrique"`; - -exports[`AMP Most Watched Page SEO OG locale 1`] = `"fr"`; - -exports[`AMP Most Watched Page SEO OG site name 1`] = `"BBC News Afrique"`; - -exports[`AMP Most Watched Page SEO OG title 1`] = `"Les plus vus - BBC News Afrique"`; - -exports[`AMP Most Watched Page SEO OG type 1`] = `"website"`; - -exports[`AMP Most Watched Page SEO OG url 1`] = `"http://localhost:7080/afrique/media/video"`; - -exports[`AMP Most Watched Page SEO Page title 1`] = `"Les plus vus - BBC News Afrique"`; - -exports[`AMP Most Watched Page SEO Robots meta tag 1`] = `"noodp, noydir, max-image-preview:large"`; - -exports[`AMP Most Watched Page SEO Twitter card 1`] = `"summary_large_image"`; - -exports[`AMP Most Watched Page SEO Twitter creator 1`] = `"@bbcafrique"`; - -exports[`AMP Most Watched Page SEO Twitter description 1`] = `"Les plus vus - BBC News Afrique"`; - -exports[`AMP Most Watched Page SEO Twitter image alt 1`] = `"BBC News Afrique"`; - -exports[`AMP Most Watched Page SEO Twitter image src 1`] = `"https://news.files.bbci.co.uk/ws/img/logos/og/afrique.png"`; - -exports[`AMP Most Watched Page SEO Twitter site 1`] = `"@bbcafrique"`; - -exports[`AMP Most Watched Page SEO Twitter title 1`] = `"Les plus vus - BBC News Afrique"`; diff --git a/src/integration/pages/mostWatchedPage/afrique/__snapshots__/canonical.test.js.snap b/src/integration/pages/mostWatchedPage/afrique/__snapshots__/canonical.test.js.snap deleted file mode 100644 index 1505fc8b74e..00000000000 --- a/src/integration/pages/mostWatchedPage/afrique/__snapshots__/canonical.test.js.snap +++ /dev/null @@ -1,314 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`Canonical Most Watched Page A11y I can see the skip to content link 1`] = `"Aller au contenu"`; - -exports[`Canonical Most Watched Page Analytics ATI 1`] = `""`; - -exports[`Canonical Most Watched Page Footer Anchors should match text and url 1`] = ` -{ - "text": "BBC News, Afrique", - "url": "/afrique", -} -`; - -exports[`Canonical Most Watched Page Footer Anchors should match text and url 2`] = ` -{ - "text": "Pourquoi vous pouvez faire confiance à BBC News", - "url": "https://www.bbc.com/afrique/institutionelles-49283281", -} -`; - -exports[`Canonical Most Watched Page Footer Anchors should match text and url 3`] = ` -{ - "text": "Conditions d'utilisation", - "url": "https://www.bbc.com/afrique/institutionelles-36826639", -} -`; - -exports[`Canonical Most Watched Page Footer Anchors should match text and url 4`] = ` -{ - "text": "A propos de la BBC", - "url": "https://www.bbc.com/afrique/institutionelles-36826641", -} -`; - -exports[`Canonical Most Watched Page Footer Anchors should match text and url 5`] = ` -{ - "text": "Politique de confidentialité", - "url": "https://www.bbc.com/afrique/institutionelles-36826642", -} -`; - -exports[`Canonical Most Watched Page Footer Anchors should match text and url 6`] = ` -{ - "text": "Cookies", - "url": "https://www.bbc.com/usingthebbc/cookies/", -} -`; - -exports[`Canonical Most Watched Page Footer Anchors should match text and url 7`] = ` -{ - "text": "Contactez la BBC", - "url": "https://www.bbc.co.uk/afrique/send/u50853159", -} -`; - -exports[`Canonical Most Watched Page Footer Anchors should match text and url 8`] = ` -{ - "text": "Découvrez notre approche en matière de liens externes.", - "url": "https://www.bbc.co.uk/editorialguidelines/guidance/feeds-and-links", -} -`; - -exports[`Canonical Most Watched Page Footer I can click on the BBC branding and it would take me to the homepage 1`] = `"/afrique"`; - -exports[`Canonical Most Watched Page Footer Paragraphs should match text 1`] = `"© 2024 BBC. La BBC n'est pas responsable du contenu des sites externes. Découvrez notre approche en matière de liens externes."`; - -exports[`Canonical Most Watched Page Header I can see the branding 1`] = `"BBC News, Afrique"`; - -exports[`Canonical Most Watched Page Header Navigation link should match text and url 1`] = ` -{ - "text": "Accueil", - "url": "/afrique", -} -`; - -exports[`Canonical Most Watched Page Header Navigation link should match text and url 2`] = ` -{ - "text": "Afrique", - "url": "/afrique/topics/cvqxn2k7kv7t", -} -`; - -exports[`Canonical Most Watched Page Header Navigation link should match text and url 3`] = ` -{ - "text": "Monde", - "url": "/afrique/topics/cvqxn21vx11t", -} -`; - -exports[`Canonical Most Watched Page Header Navigation link should match text and url 4`] = ` -{ - "text": "Santé", - "url": "/afrique/topics/c06gq9jxz3rt", -} -`; - -exports[`Canonical Most Watched Page Header Navigation link should match text and url 5`] = ` -{ - "text": "Bien-être", - "url": "/afrique/topics/c0vmyy90q8zt", -} -`; - -exports[`Canonical Most Watched Page Header Navigation link should match text and url 6`] = ` -{ - "text": "Science et technologie", - "url": "/afrique/topics/crezq2zk0q4t", -} -`; - -exports[`Canonical Most Watched Page Header Navigation link should match text and url 7`] = ` -{ - "text": "Economie", - "url": "/afrique/topics/cnq687nr9v1t", -} -`; - -exports[`Canonical Most Watched Page Header Navigation link should match text and url 8`] = ` -{ - "text": "Culture", - "url": "/afrique/topics/cnq687nrrw8t", -} -`; - -exports[`Canonical Most Watched Page Header Navigation link should match text and url 9`] = ` -{ - "text": "Vidéos", - "url": "/afrique/topics/cz4vn9gyd6rt", -} -`; - -exports[`Canonical Most Watched Page Header Navigation link should match text and url 10`] = ` -{ - "text": "Nos émissions", - "url": "/afrique/topics/c88nzggm8gxt", -} -`; - -exports[`Canonical Most Watched Page Header Navigation link should match text and url 11`] = ` -{ - "text": "Ecoutez en direct", - "url": "/afrique/bbc_afrique_radio/liveradio", -} -`; - -exports[`Canonical Most Watched Page I can see the list items 1`] = `"0:16Vidéo, Test asset, Durée 0,1626 avril 2017"`; - -exports[`Canonical Most Watched Page I can see the list items 2`] = `"Ecoutez, Gelila, miraculée des eaux 217 juin 2016"`; - -exports[`Canonical Most Watched Page I can see the list items 3`] = `"Ecoutez, Gelila, miraculée des eaux17 juin 2016"`; - -exports[`Canonical Most Watched Page I can see the list items 4`] = `"0:16Vidéo, Test asset, Durée 0,1626 avril 2017"`; - -exports[`Canonical Most Watched Page I can see the list items 5`] = `"Vidéo, Test 2 - Magari yasiyotumia mafuta yaanza kazi Kenya9 août 2016"`; - -exports[`Canonical Most Watched Page I can see the list items 6`] = `"Ecoutez, L’invité BBC Afrique 21/06/2016 : Ibrahim Maïga short24 juin 2016"`; - -exports[`Canonical Most Watched Page Main heading should match text 1`] = `"Les plus vus"`; - -exports[`Canonical Most Watched Page Main heading should match text 2`] = `"Les plus vus"`; - -exports[`Canonical Most Watched Page SEO Apple Touch Icon should match attributes 1`] = ` -{ - "sizes": null, - "url": "http://localhost:7080/afrique/images/icons/icon-192x192.png", -} -`; - -exports[`Canonical Most Watched Page SEO Apple Touch Icon should match attributes 2`] = ` -{ - "sizes": "72x72", - "url": "https://static.files.bbci.co.uk/ws/simorgh-assets/public/afrique/images/icons/icon-72x72.png", -} -`; - -exports[`Canonical Most Watched Page SEO Apple Touch Icon should match attributes 3`] = ` -{ - "sizes": "96x96", - "url": "https://static.files.bbci.co.uk/ws/simorgh-assets/public/afrique/images/icons/icon-96x96.png", -} -`; - -exports[`Canonical Most Watched Page SEO Apple Touch Icon should match attributes 4`] = ` -{ - "sizes": "128x128", - "url": "https://static.files.bbci.co.uk/ws/simorgh-assets/public/afrique/images/icons/icon-128x128.png", -} -`; - -exports[`Canonical Most Watched Page SEO Apple Touch Icon should match attributes 5`] = ` -{ - "sizes": "144x144", - "url": "https://static.files.bbci.co.uk/ws/simorgh-assets/public/afrique/images/icons/icon-144x144.png", -} -`; - -exports[`Canonical Most Watched Page SEO Apple Touch Icon should match attributes 6`] = ` -{ - "sizes": "152x152", - "url": "https://static.files.bbci.co.uk/ws/simorgh-assets/public/afrique/images/icons/icon-152x152.png", -} -`; - -exports[`Canonical Most Watched Page SEO Apple Touch Icon should match attributes 7`] = ` -{ - "sizes": "180x180", - "url": "https://static.files.bbci.co.uk/ws/simorgh-assets/public/afrique/images/icons/icon-180x180.png", -} -`; - -exports[`Canonical Most Watched Page SEO Apple Touch Icon should match attributes 8`] = ` -{ - "sizes": "192x192", - "url": "https://static.files.bbci.co.uk/ws/simorgh-assets/public/afrique/images/icons/icon-192x192.png", -} -`; - -exports[`Canonical Most Watched Page SEO Apple Touch Icon should match attributes 9`] = ` -{ - "sizes": "384x384", - "url": "https://static.files.bbci.co.uk/ws/simorgh-assets/public/afrique/images/icons/icon-384x384.png", -} -`; - -exports[`Canonical Most Watched Page SEO Apple Touch Icon should match attributes 10`] = ` -{ - "sizes": "512x512", - "url": "https://static.files.bbci.co.uk/ws/simorgh-assets/public/afrique/images/icons/icon-512x512.png", -} -`; - -exports[`Canonical Most Watched Page SEO Canonical link 1`] = `"http://localhost:7080/afrique/media/video"`; - -exports[`Canonical Most Watched Page SEO Dir attribute 1`] = `"ltr"`; - -exports[`Canonical Most Watched Page SEO FB app ID 1`] = `"1609039196070050"`; - -exports[`Canonical Most Watched Page SEO Heading level 1 1`] = `"Les plus vus"`; - -exports[`Canonical Most Watched Page SEO Lang attribute 1`] = `"fr"`; - -exports[`Canonical Most Watched Page SEO Linked data should match text 1`] = ` -{ - "@context": "http://schema.org", - "@graph": [ - { - "@type": "WebPage", - "image": { - "@type": "ImageObject", - "height": 576, - "url": "https://news.files.bbci.co.uk/ws/img/logos/og/afrique.png", - "width": 1024, - }, - "inLanguage": { - "@type": "Language", - "alternateName": "fr", - "name": "French", - }, - "mainEntityOfPage": { - "@id": "http://localhost:7080/afrique/media/video", - "@type": "WebPage", - "name": "Les plus vus", - }, - "publisher": { - "@type": "NewsMediaOrganization", - "logo": { - "@type": "ImageObject", - "height": 576, - "url": "https://news.files.bbci.co.uk/ws/img/logos/og/afrique.png", - "width": 1024, - }, - "name": "BBC News Afrique", - "publishingPrinciples": "https://www.bbc.com/afrique/institutionelles-49283281", - }, - "thumbnailUrl": "https://news.files.bbci.co.uk/ws/img/logos/og/afrique.png", - "url": "http://localhost:7080/afrique/media/video", - }, - ], -} -`; - -exports[`Canonical Most Watched Page SEO OG description 1`] = `"Les plus vus - BBC News Afrique"`; - -exports[`Canonical Most Watched Page SEO OG image 1`] = `"https://news.files.bbci.co.uk/ws/img/logos/og/afrique.png"`; - -exports[`Canonical Most Watched Page SEO OG image alt 1`] = `"BBC News Afrique"`; - -exports[`Canonical Most Watched Page SEO OG locale 1`] = `"fr"`; - -exports[`Canonical Most Watched Page SEO OG site name 1`] = `"BBC News Afrique"`; - -exports[`Canonical Most Watched Page SEO OG title 1`] = `"Les plus vus - BBC News Afrique"`; - -exports[`Canonical Most Watched Page SEO OG type 1`] = `"website"`; - -exports[`Canonical Most Watched Page SEO OG url 1`] = `"http://localhost:7080/afrique/media/video"`; - -exports[`Canonical Most Watched Page SEO Page title 1`] = `"Les plus vus - BBC News Afrique"`; - -exports[`Canonical Most Watched Page SEO Robots meta tag 1`] = `"noodp, noydir, max-image-preview:large"`; - -exports[`Canonical Most Watched Page SEO Twitter card 1`] = `"summary_large_image"`; - -exports[`Canonical Most Watched Page SEO Twitter creator 1`] = `"@bbcafrique"`; - -exports[`Canonical Most Watched Page SEO Twitter description 1`] = `"Les plus vus - BBC News Afrique"`; - -exports[`Canonical Most Watched Page SEO Twitter image alt 1`] = `"BBC News Afrique"`; - -exports[`Canonical Most Watched Page SEO Twitter image src 1`] = `"https://news.files.bbci.co.uk/ws/img/logos/og/afrique.png"`; - -exports[`Canonical Most Watched Page SEO Twitter site 1`] = `"@bbcafrique"`; - -exports[`Canonical Most Watched Page SEO Twitter title 1`] = `"Les plus vus - BBC News Afrique"`; diff --git a/src/integration/pages/mostWatchedPage/afrique/amp.test.js b/src/integration/pages/mostWatchedPage/afrique/amp.test.js deleted file mode 100644 index 36638a72ee4..00000000000 --- a/src/integration/pages/mostWatchedPage/afrique/amp.test.js +++ /dev/null @@ -1,12 +0,0 @@ -/** - * @service afrique - * @pathname /afrique/media/video - */ - -import runAmpTests from '../ampTests'; - -describe('AMP', () => { - describe(pageType, () => { - runAmpTests(); - }); -}); diff --git a/src/integration/pages/mostWatchedPage/afrique/canonical.test.js b/src/integration/pages/mostWatchedPage/afrique/canonical.test.js deleted file mode 100644 index d2625f6d938..00000000000 --- a/src/integration/pages/mostWatchedPage/afrique/canonical.test.js +++ /dev/null @@ -1,12 +0,0 @@ -/** - * @service afrique - * @pathname /afrique/media/video - */ - -import runCanonicalTests from '../canonicalTests'; - -describe('Canonical', () => { - describe(pageType, () => { - runCanonicalTests(); - }); -}); diff --git a/src/integration/pages/mostWatchedPage/ampTests.js b/src/integration/pages/mostWatchedPage/ampTests.js deleted file mode 100644 index 9cb082ee767..00000000000 --- a/src/integration/pages/mostWatchedPage/ampTests.js +++ /dev/null @@ -1,13 +0,0 @@ -import { - runCoreAmpTests, - runAmpFooterTests, - runAmpAnalyticsTests, -} from '../../common'; -import runCrossPlatformTests from './crossPlatformTests'; - -export default () => { - runCrossPlatformTests(); - runAmpFooterTests(); - runCoreAmpTests(); - runAmpAnalyticsTests(); -}; diff --git a/src/integration/pages/mostWatchedPage/canonicalTests.js b/src/integration/pages/mostWatchedPage/canonicalTests.js deleted file mode 100644 index de48f13e76a..00000000000 --- a/src/integration/pages/mostWatchedPage/canonicalTests.js +++ /dev/null @@ -1,11 +0,0 @@ -import { - runCoreCanonicalTests, - runCanonicalAnalyticsTests, -} from '../../common'; -import runCrossPlatformTests from './crossPlatformTests'; - -export default () => { - runCrossPlatformTests(); - runCoreCanonicalTests(); - runCanonicalAnalyticsTests(); -}; diff --git a/src/integration/pages/mostWatchedPage/crossPlatformTests.js b/src/integration/pages/mostWatchedPage/crossPlatformTests.js deleted file mode 100644 index 325c7d7d4df..00000000000 --- a/src/integration/pages/mostWatchedPage/crossPlatformTests.js +++ /dev/null @@ -1,16 +0,0 @@ -import { runCommonCrossPlatformTests, runMainHeadingTests } from '../../common'; - -export default service => { - runCommonCrossPlatformTests(service); - runMainHeadingTests(); - - it('I can see the list items', () => { - const listItemElements = document.querySelectorAll('main ol li'); - - listItemElements.forEach(itemEl => { - expect(itemEl).toBeInTheDocument(); - expect(itemEl.textContent).toBeTruthy(); - expect(itemEl.textContent).toMatchSnapshot(); - }); - }); -}; diff --git a/src/integration/pages/mostWatchedPage/urdu/__snapshots__/amp.test.js.snap b/src/integration/pages/mostWatchedPage/urdu/__snapshots__/amp.test.js.snap deleted file mode 100644 index b4fe5943ec0..00000000000 --- a/src/integration/pages/mostWatchedPage/urdu/__snapshots__/amp.test.js.snap +++ /dev/null @@ -1,431 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`AMP Most Watched Page A11y I can see the skip to content link 1`] = `"مواد پر جائیں"`; - -exports[`AMP Most Watched Page AMP Consent config 1`] = ` -{ - "consents": { - "user-consent": { - "promptIfUnknownForGeoGroup": "eea", - "promptUI": "consent-prompt", - }, - }, - "policy": { - "default": { - "timeout": { - "fallbackAction": "reject", - "seconds": 0, - }, - "waitFor": { - "user-consent": [], - }, - }, - }, -} -`; - -exports[`AMP Most Watched Page AMP Geo config 1`] = ` -{ - "AmpBind": true, - "ISOCountryGroups": { - "eea": [ - "at", - "ax", - "be", - "bg", - "bl", - "cy", - "cz", - "de", - "dk", - "ea", - "ee", - "es", - "fi", - "fr", - "gb", - "gf", - "gg", - "gi", - "gp", - "gr", - "hr", - "hu", - "ic", - "ie", - "im", - "is", - "it", - "je", - "li", - "lt", - "lu", - "lv", - "mf", - "mq", - "mt", - "nc", - "nl", - "no", - "pf", - "pl", - "pm", - "pt", - "re", - "ro", - "se", - "si", - "sj", - "sk", - "tf", - "va", - "wf", - "yt", - ], - "gbOrUnknown": [ - "gb", - "gg", - "im", - "je", - "uk", - "unknown", - ], - }, -} -`; - -exports[`AMP Most Watched Page Analytics ATI 1`] = ` -{ - "requests": { - "base": "https://logws1363.ati-host.net?", - "pageview": "\${base}s=598343&s2=95&p=urdu.media.video.page&r=\${screenWidth}x\${screenHeight}x\${screenColorDepth}&re=\${availableScreenWidth}x\${availableScreenHeight}&hl=\${timestamp}&lng=\${browserLanguage}&x2=[amp]&x3=[news-urdu]&x4=[ur]&x5=[\${sourceUrl}]&x6=[\${documentReferrer}]&x7=[list-datadriven]&x8=[simorgh]&x9=[%D8%B3%D8%A8%2520%D8%B3%DB%92%2520%D8%B2%DB%8C%D8%A7%D8%AF%DB%81%2520%D8%AF%DB%8C%DA%A9%DA%BE%DB%8C%2520%DA%AF%D8%A6%DB%8C%2520-%2520BBC%2520News%2520%D8%A7%D8%B1%D8%AF%D9%88]&ref=\${documentReferrer}", - }, - "transport": { - "beacon": false, - "image": true, - "xhrpost": false, - }, - "triggers": { - "trackPageview": { - "on": "visible", - "request": "pageview", - }, - }, -} -`; - -exports[`AMP Most Watched Page Analytics chartbeat 1`] = ` -{ - "vars": { - "contentType": "Most Watched", - "domain": "test.bbc.co.uk", - "sections": "Urdu, Urdu - Most Watched", - "title": "سب سے زیادہ دیکھی گئی - BBC News اردو", - "uid": 50924, - "virtualReferrer": "\${documentReferrer}", - }, -} -`; - -exports[`AMP Most Watched Page Footer Anchors should match text and url 1`] = ` -{ - "text": "BBC News, اردو", - "url": "/urdu", -} -`; - -exports[`AMP Most Watched Page Footer Anchors should match text and url 2`] = ` -{ - "text": "جانیے کہ آپ بی بی سی پر کیوں اعتماد کر سکتے ہیں", - "url": "https://www.bbc.com/urdu/institutional-49282935", -} -`; - -exports[`AMP Most Watched Page Footer Anchors should match text and url 3`] = ` -{ - "text": "استعمال کے ضوابط", - "url": "https://www.bbc.com/urdu/institutional-37588278", -} -`; - -exports[`AMP Most Watched Page Footer Anchors should match text and url 4`] = ` -{ - "text": "بی بی سی کے بارے میں", - "url": "https://www.bbc.com/urdu/institutional-37588280", -} -`; - -exports[`AMP Most Watched Page Footer Anchors should match text and url 5`] = ` -{ - "text": "پرائیویسی پالیسی", - "url": "https://www.bbc.com/urdu/institutional-37588282", -} -`; - -exports[`AMP Most Watched Page Footer Anchors should match text and url 6`] = ` -{ - "text": "کوکیز", - "url": "https://www.bbc.com/usingthebbc/cookies/", -} -`; - -exports[`AMP Most Watched Page Footer Anchors should match text and url 7`] = ` -{ - "text": "بی بی سی سے رابطہ کریں", - "url": "https://www.bbc.co.uk/urdu/send/u50853907", -} -`; - -exports[`AMP Most Watched Page Footer Anchors should match text and url 8`] = ` -{ - "text": "بیرونی لنکس کے بارے میں ہماری پالیسی.", - "url": "https://www.bbc.com/editorialguidelines/guidance/feeds-and-links", -} -`; - -exports[`AMP Most Watched Page Footer Cookie Settings Button should match text and on handler 1`] = ` -{ - "on": "tap:consent.prompt, privacy.hide, cookie.show, AMP.setState({ isManagingSettings: true })", - "text": "Do not share or sell my info", -} -`; - -exports[`AMP Most Watched Page Footer I can click on the BBC branding and it would take me to the homepage 1`] = `"/urdu"`; - -exports[`AMP Most Watched Page Footer Paragraphs should match text 1`] = `"© 2024 بی بی سی. بی بی سی بیرونی ویب سائٹس کے مواد کا ذمہ دار نہیں بیرونی لنکس کے بارے میں ہماری پالیسی."`; - -exports[`AMP Most Watched Page Header I can see the branding 1`] = `"BBC News, اردو"`; - -exports[`AMP Most Watched Page Header Navigation link should match text and url 1`] = ` -{ - "text": "صفحۂ اول", - "url": "/urdu", -} -`; - -exports[`AMP Most Watched Page Header Navigation link should match text and url 2`] = ` -{ - "text": "پاکستان", - "url": "/urdu/topics/cjgn7n9zzq7t", -} -`; - -exports[`AMP Most Watched Page Header Navigation link should match text and url 3`] = ` -{ - "text": "آس پاس", - "url": "/urdu/topics/cl8l9mveql2t", -} -`; - -exports[`AMP Most Watched Page Header Navigation link should match text and url 4`] = ` -{ - "text": "ورلڈ", - "url": "/urdu/topics/cw57v2pmll9t", -} -`; - -exports[`AMP Most Watched Page Header Navigation link should match text and url 5`] = ` -{ - "text": "کھیل", - "url": "/urdu/topics/c340q0p2585t", -} -`; - -exports[`AMP Most Watched Page Header Navigation link should match text and url 6`] = ` -{ - "text": "فن فنکار", - "url": "/urdu/topics/ckdxnx900n5t", -} -`; - -exports[`AMP Most Watched Page Header Navigation link should match text and url 7`] = ` -{ - "text": "سائنس", - "url": "/urdu/topics/c40379e2ymxt", -} -`; - -exports[`AMP Most Watched Page Header Navigation link should match text and url 8`] = ` -{ - "text": "ویڈیو", - "url": "/urdu/topics/c1e0mzr3r2yt", -} -`; - -exports[`AMP Most Watched Page I can see the list items 1`] = `"ویڈیو, ایرانی خواتین کو گیمر بننے کے لیے ملک کیوں چھوڑنا پڑتا ہے؟7 جولائی 2020"`; - -exports[`AMP Most Watched Page I can see the list items 2`] = `"سنیں, سیربین ریڈیو پروگرام رات 8 بجے لائیو15 اکتوبر 2015"`; - -exports[`AMP Most Watched Page I can see the list items 3`] = `"ویڈیو, پاکستانی فری لانسنرز گھر بیٹھے ڈالر کیسے کماتے ہیں؟28 جنوری 2020"`; - -exports[`AMP Most Watched Page I can see the list items 4`] = `"ویڈیو, کٹوا گوشت: مٹی کا برتن، لکڑی کی آگ اور پانچ گھنٹے کے بعد لذیذ گوشت تیار12 اگست 2019"`; - -exports[`AMP Most Watched Page I can see the list items 5`] = `"ویڈیو, چین کا شہر ووہان لاک ڈاؤن سے کیسے نکلا؟3 جولائی 2020"`; - -exports[`AMP Most Watched Page I can see the list items 6`] = `"ویڈیو, ’سپائے کیم‘: جنوبی کوریا میں خفیہ کیمروں کی وبا4 دسمبر 2018"`; - -exports[`AMP Most Watched Page I can see the list items 7`] = `"ویڈیو, انٹرنیٹ پر سیکس کے نام پر لوگوں کو لوٹنے والے جعلسازوں سے کیسے نمٹا جائے؟10 دسمبر 2018"`; - -exports[`AMP Most Watched Page I can see the list items 8`] = `"ویڈیو, کورونا وائرس کی وبا آخر کب ختم ہوگی؟4 مئ 2020"`; - -exports[`AMP Most Watched Page I can see the list items 9`] = `"ویڈیو, 100 خواتین: آن لائن گیمر خاتون29 نومبر 2016"`; - -exports[`AMP Most Watched Page I can see the list items 10`] = `"ویڈیو, جان نکسن کی سی آئی اے میں شمولیت کے دن سے صدام حسین کے بارے میں تحقیق ان کی زندگی کا محور۔5 جنوری 2017"`; - -exports[`AMP Most Watched Page Main heading should match text 1`] = `"سب سے زیادہ دیکھی گئی"`; - -exports[`AMP Most Watched Page Main heading should match text 2`] = `"سب سے زیادہ دیکھی گئی"`; - -exports[`AMP Most Watched Page SEO Apple Touch Icon should match attributes 1`] = ` -{ - "sizes": null, - "url": "http://localhost:7080/urdu/images/icons/icon-192x192.png", -} -`; - -exports[`AMP Most Watched Page SEO Apple Touch Icon should match attributes 2`] = ` -{ - "sizes": "72x72", - "url": "https://static.files.bbci.co.uk/ws/simorgh-assets/public/urdu/images/icons/icon-72x72.png", -} -`; - -exports[`AMP Most Watched Page SEO Apple Touch Icon should match attributes 3`] = ` -{ - "sizes": "96x96", - "url": "https://static.files.bbci.co.uk/ws/simorgh-assets/public/urdu/images/icons/icon-96x96.png", -} -`; - -exports[`AMP Most Watched Page SEO Apple Touch Icon should match attributes 4`] = ` -{ - "sizes": "128x128", - "url": "https://static.files.bbci.co.uk/ws/simorgh-assets/public/urdu/images/icons/icon-128x128.png", -} -`; - -exports[`AMP Most Watched Page SEO Apple Touch Icon should match attributes 5`] = ` -{ - "sizes": "144x144", - "url": "https://static.files.bbci.co.uk/ws/simorgh-assets/public/urdu/images/icons/icon-144x144.png", -} -`; - -exports[`AMP Most Watched Page SEO Apple Touch Icon should match attributes 6`] = ` -{ - "sizes": "152x152", - "url": "https://static.files.bbci.co.uk/ws/simorgh-assets/public/urdu/images/icons/icon-152x152.png", -} -`; - -exports[`AMP Most Watched Page SEO Apple Touch Icon should match attributes 7`] = ` -{ - "sizes": "180x180", - "url": "https://static.files.bbci.co.uk/ws/simorgh-assets/public/urdu/images/icons/icon-180x180.png", -} -`; - -exports[`AMP Most Watched Page SEO Apple Touch Icon should match attributes 8`] = ` -{ - "sizes": "192x192", - "url": "https://static.files.bbci.co.uk/ws/simorgh-assets/public/urdu/images/icons/icon-192x192.png", -} -`; - -exports[`AMP Most Watched Page SEO Apple Touch Icon should match attributes 9`] = ` -{ - "sizes": "384x384", - "url": "https://static.files.bbci.co.uk/ws/simorgh-assets/public/urdu/images/icons/icon-384x384.png", -} -`; - -exports[`AMP Most Watched Page SEO Apple Touch Icon should match attributes 10`] = ` -{ - "sizes": "512x512", - "url": "https://static.files.bbci.co.uk/ws/simorgh-assets/public/urdu/images/icons/icon-512x512.png", -} -`; - -exports[`AMP Most Watched Page SEO Canonical link 1`] = `"http://localhost:7080/urdu/media/video"`; - -exports[`AMP Most Watched Page SEO Dir attribute 1`] = `"rtl"`; - -exports[`AMP Most Watched Page SEO FB app ID 1`] = `"1609039196070050"`; - -exports[`AMP Most Watched Page SEO Heading level 1 1`] = `"سب سے زیادہ دیکھی گئی"`; - -exports[`AMP Most Watched Page SEO Lang attribute 1`] = `"ur"`; - -exports[`AMP Most Watched Page SEO Linked data should match text 1`] = ` -{ - "@context": "http://schema.org", - "@graph": [ - { - "@type": "WebPage", - "image": { - "@type": "ImageObject", - "height": 576, - "url": "https://news.files.bbci.co.uk/ws/img/logos/og/urdu.png", - "width": 1024, - }, - "inLanguage": { - "@type": "Language", - "alternateName": "ur", - "name": "Urdu", - }, - "mainEntityOfPage": { - "@id": "http://localhost:7080/urdu/media/video", - "@type": "WebPage", - "name": "سب سے زیادہ دیکھی گئی", - }, - "publisher": { - "@type": "NewsMediaOrganization", - "logo": { - "@type": "ImageObject", - "height": 576, - "url": "https://news.files.bbci.co.uk/ws/img/logos/og/urdu.png", - "width": 1024, - }, - "name": "BBC News اردو", - "publishingPrinciples": "https://www.bbc.com/urdu/institutional-49282935", - }, - "thumbnailUrl": "https://news.files.bbci.co.uk/ws/img/logos/og/urdu.png", - "url": "http://localhost:7080/urdu/media/video", - }, - ], -} -`; - -exports[`AMP Most Watched Page SEO OG description 1`] = `"سب سے زیادہ دیکھی گئی - BBC News اردو"`; - -exports[`AMP Most Watched Page SEO OG image 1`] = `"https://news.files.bbci.co.uk/ws/img/logos/og/urdu.png"`; - -exports[`AMP Most Watched Page SEO OG image alt 1`] = `"BBC News اردو"`; - -exports[`AMP Most Watched Page SEO OG locale 1`] = `"ur"`; - -exports[`AMP Most Watched Page SEO OG site name 1`] = `"BBC News اردو"`; - -exports[`AMP Most Watched Page SEO OG title 1`] = `"سب سے زیادہ دیکھی گئی - BBC News اردو"`; - -exports[`AMP Most Watched Page SEO OG type 1`] = `"website"`; - -exports[`AMP Most Watched Page SEO OG url 1`] = `"http://localhost:7080/urdu/media/video"`; - -exports[`AMP Most Watched Page SEO Page title 1`] = `"سب سے زیادہ دیکھی گئی - BBC News اردو"`; - -exports[`AMP Most Watched Page SEO Robots meta tag 1`] = `"noodp, noydir, max-image-preview:large"`; - -exports[`AMP Most Watched Page SEO Twitter card 1`] = `"summary_large_image"`; - -exports[`AMP Most Watched Page SEO Twitter creator 1`] = `"@bbcurdu"`; - -exports[`AMP Most Watched Page SEO Twitter description 1`] = `"سب سے زیادہ دیکھی گئی - BBC News اردو"`; - -exports[`AMP Most Watched Page SEO Twitter image alt 1`] = `"BBC News اردو"`; - -exports[`AMP Most Watched Page SEO Twitter image src 1`] = `"https://news.files.bbci.co.uk/ws/img/logos/og/urdu.png"`; - -exports[`AMP Most Watched Page SEO Twitter site 1`] = `"@bbcurdu"`; - -exports[`AMP Most Watched Page SEO Twitter title 1`] = `"سب سے زیادہ دیکھی گئی - BBC News اردو"`; diff --git a/src/integration/pages/mostWatchedPage/urdu/__snapshots__/canonical.test.js.snap b/src/integration/pages/mostWatchedPage/urdu/__snapshots__/canonical.test.js.snap deleted file mode 100644 index 867f3d41a91..00000000000 --- a/src/integration/pages/mostWatchedPage/urdu/__snapshots__/canonical.test.js.snap +++ /dev/null @@ -1,301 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`Canonical Most Watched Page A11y I can see the skip to content link 1`] = `"مواد پر جائیں"`; - -exports[`Canonical Most Watched Page Analytics ATI 1`] = `""`; - -exports[`Canonical Most Watched Page Footer Anchors should match text and url 1`] = ` -{ - "text": "BBC News, اردو", - "url": "/urdu", -} -`; - -exports[`Canonical Most Watched Page Footer Anchors should match text and url 2`] = ` -{ - "text": "جانیے کہ آپ بی بی سی پر کیوں اعتماد کر سکتے ہیں", - "url": "https://www.bbc.com/urdu/institutional-49282935", -} -`; - -exports[`Canonical Most Watched Page Footer Anchors should match text and url 3`] = ` -{ - "text": "استعمال کے ضوابط", - "url": "https://www.bbc.com/urdu/institutional-37588278", -} -`; - -exports[`Canonical Most Watched Page Footer Anchors should match text and url 4`] = ` -{ - "text": "بی بی سی کے بارے میں", - "url": "https://www.bbc.com/urdu/institutional-37588280", -} -`; - -exports[`Canonical Most Watched Page Footer Anchors should match text and url 5`] = ` -{ - "text": "پرائیویسی پالیسی", - "url": "https://www.bbc.com/urdu/institutional-37588282", -} -`; - -exports[`Canonical Most Watched Page Footer Anchors should match text and url 6`] = ` -{ - "text": "کوکیز", - "url": "https://www.bbc.com/usingthebbc/cookies/", -} -`; - -exports[`Canonical Most Watched Page Footer Anchors should match text and url 7`] = ` -{ - "text": "بی بی سی سے رابطہ کریں", - "url": "https://www.bbc.co.uk/urdu/send/u50853907", -} -`; - -exports[`Canonical Most Watched Page Footer Anchors should match text and url 8`] = ` -{ - "text": "بیرونی لنکس کے بارے میں ہماری پالیسی.", - "url": "https://www.bbc.com/editorialguidelines/guidance/feeds-and-links", -} -`; - -exports[`Canonical Most Watched Page Footer I can click on the BBC branding and it would take me to the homepage 1`] = `"/urdu"`; - -exports[`Canonical Most Watched Page Footer Paragraphs should match text 1`] = `"© 2024 بی بی سی. بی بی سی بیرونی ویب سائٹس کے مواد کا ذمہ دار نہیں بیرونی لنکس کے بارے میں ہماری پالیسی."`; - -exports[`Canonical Most Watched Page Header I can see the branding 1`] = `"BBC News, اردو"`; - -exports[`Canonical Most Watched Page Header Navigation link should match text and url 1`] = ` -{ - "text": "صفحۂ اول", - "url": "/urdu", -} -`; - -exports[`Canonical Most Watched Page Header Navigation link should match text and url 2`] = ` -{ - "text": "پاکستان", - "url": "/urdu/topics/cjgn7n9zzq7t", -} -`; - -exports[`Canonical Most Watched Page Header Navigation link should match text and url 3`] = ` -{ - "text": "آس پاس", - "url": "/urdu/topics/cl8l9mveql2t", -} -`; - -exports[`Canonical Most Watched Page Header Navigation link should match text and url 4`] = ` -{ - "text": "ورلڈ", - "url": "/urdu/topics/cw57v2pmll9t", -} -`; - -exports[`Canonical Most Watched Page Header Navigation link should match text and url 5`] = ` -{ - "text": "کھیل", - "url": "/urdu/topics/c340q0p2585t", -} -`; - -exports[`Canonical Most Watched Page Header Navigation link should match text and url 6`] = ` -{ - "text": "فن فنکار", - "url": "/urdu/topics/ckdxnx900n5t", -} -`; - -exports[`Canonical Most Watched Page Header Navigation link should match text and url 7`] = ` -{ - "text": "سائنس", - "url": "/urdu/topics/c40379e2ymxt", -} -`; - -exports[`Canonical Most Watched Page Header Navigation link should match text and url 8`] = ` -{ - "text": "ویڈیو", - "url": "/urdu/topics/c1e0mzr3r2yt", -} -`; - -exports[`Canonical Most Watched Page I can see the list items 1`] = `"ویڈیو, ایرانی خواتین کو گیمر بننے کے لیے ملک کیوں چھوڑنا پڑتا ہے؟7 جولائی 2020"`; - -exports[`Canonical Most Watched Page I can see the list items 2`] = `"سنیں, سیربین ریڈیو پروگرام رات 8 بجے لائیو15 اکتوبر 2015"`; - -exports[`Canonical Most Watched Page I can see the list items 3`] = `"ویڈیو, پاکستانی فری لانسنرز گھر بیٹھے ڈالر کیسے کماتے ہیں؟28 جنوری 2020"`; - -exports[`Canonical Most Watched Page I can see the list items 4`] = `"ویڈیو, کٹوا گوشت: مٹی کا برتن، لکڑی کی آگ اور پانچ گھنٹے کے بعد لذیذ گوشت تیار12 اگست 2019"`; - -exports[`Canonical Most Watched Page I can see the list items 5`] = `"ویڈیو, چین کا شہر ووہان لاک ڈاؤن سے کیسے نکلا؟3 جولائی 2020"`; - -exports[`Canonical Most Watched Page I can see the list items 6`] = `"ویڈیو, ’سپائے کیم‘: جنوبی کوریا میں خفیہ کیمروں کی وبا4 دسمبر 2018"`; - -exports[`Canonical Most Watched Page I can see the list items 7`] = `"ویڈیو, انٹرنیٹ پر سیکس کے نام پر لوگوں کو لوٹنے والے جعلسازوں سے کیسے نمٹا جائے؟10 دسمبر 2018"`; - -exports[`Canonical Most Watched Page I can see the list items 8`] = `"ویڈیو, کورونا وائرس کی وبا آخر کب ختم ہوگی؟4 مئ 2020"`; - -exports[`Canonical Most Watched Page I can see the list items 9`] = `"ویڈیو, 100 خواتین: آن لائن گیمر خاتون29 نومبر 2016"`; - -exports[`Canonical Most Watched Page I can see the list items 10`] = `"ویڈیو, جان نکسن کی سی آئی اے میں شمولیت کے دن سے صدام حسین کے بارے میں تحقیق ان کی زندگی کا محور۔5 جنوری 2017"`; - -exports[`Canonical Most Watched Page Main heading should match text 1`] = `"سب سے زیادہ دیکھی گئی"`; - -exports[`Canonical Most Watched Page Main heading should match text 2`] = `"سب سے زیادہ دیکھی گئی"`; - -exports[`Canonical Most Watched Page SEO Apple Touch Icon should match attributes 1`] = ` -{ - "sizes": null, - "url": "http://localhost:7080/urdu/images/icons/icon-192x192.png", -} -`; - -exports[`Canonical Most Watched Page SEO Apple Touch Icon should match attributes 2`] = ` -{ - "sizes": "72x72", - "url": "https://static.files.bbci.co.uk/ws/simorgh-assets/public/urdu/images/icons/icon-72x72.png", -} -`; - -exports[`Canonical Most Watched Page SEO Apple Touch Icon should match attributes 3`] = ` -{ - "sizes": "96x96", - "url": "https://static.files.bbci.co.uk/ws/simorgh-assets/public/urdu/images/icons/icon-96x96.png", -} -`; - -exports[`Canonical Most Watched Page SEO Apple Touch Icon should match attributes 4`] = ` -{ - "sizes": "128x128", - "url": "https://static.files.bbci.co.uk/ws/simorgh-assets/public/urdu/images/icons/icon-128x128.png", -} -`; - -exports[`Canonical Most Watched Page SEO Apple Touch Icon should match attributes 5`] = ` -{ - "sizes": "144x144", - "url": "https://static.files.bbci.co.uk/ws/simorgh-assets/public/urdu/images/icons/icon-144x144.png", -} -`; - -exports[`Canonical Most Watched Page SEO Apple Touch Icon should match attributes 6`] = ` -{ - "sizes": "152x152", - "url": "https://static.files.bbci.co.uk/ws/simorgh-assets/public/urdu/images/icons/icon-152x152.png", -} -`; - -exports[`Canonical Most Watched Page SEO Apple Touch Icon should match attributes 7`] = ` -{ - "sizes": "180x180", - "url": "https://static.files.bbci.co.uk/ws/simorgh-assets/public/urdu/images/icons/icon-180x180.png", -} -`; - -exports[`Canonical Most Watched Page SEO Apple Touch Icon should match attributes 8`] = ` -{ - "sizes": "192x192", - "url": "https://static.files.bbci.co.uk/ws/simorgh-assets/public/urdu/images/icons/icon-192x192.png", -} -`; - -exports[`Canonical Most Watched Page SEO Apple Touch Icon should match attributes 9`] = ` -{ - "sizes": "384x384", - "url": "https://static.files.bbci.co.uk/ws/simorgh-assets/public/urdu/images/icons/icon-384x384.png", -} -`; - -exports[`Canonical Most Watched Page SEO Apple Touch Icon should match attributes 10`] = ` -{ - "sizes": "512x512", - "url": "https://static.files.bbci.co.uk/ws/simorgh-assets/public/urdu/images/icons/icon-512x512.png", -} -`; - -exports[`Canonical Most Watched Page SEO Canonical link 1`] = `"http://localhost:7080/urdu/media/video"`; - -exports[`Canonical Most Watched Page SEO Dir attribute 1`] = `"rtl"`; - -exports[`Canonical Most Watched Page SEO FB app ID 1`] = `"1609039196070050"`; - -exports[`Canonical Most Watched Page SEO Heading level 1 1`] = `"سب سے زیادہ دیکھی گئی"`; - -exports[`Canonical Most Watched Page SEO Lang attribute 1`] = `"ur"`; - -exports[`Canonical Most Watched Page SEO Linked data should match text 1`] = ` -{ - "@context": "http://schema.org", - "@graph": [ - { - "@type": "WebPage", - "image": { - "@type": "ImageObject", - "height": 576, - "url": "https://news.files.bbci.co.uk/ws/img/logos/og/urdu.png", - "width": 1024, - }, - "inLanguage": { - "@type": "Language", - "alternateName": "ur", - "name": "Urdu", - }, - "mainEntityOfPage": { - "@id": "http://localhost:7080/urdu/media/video", - "@type": "WebPage", - "name": "سب سے زیادہ دیکھی گئی", - }, - "publisher": { - "@type": "NewsMediaOrganization", - "logo": { - "@type": "ImageObject", - "height": 576, - "url": "https://news.files.bbci.co.uk/ws/img/logos/og/urdu.png", - "width": 1024, - }, - "name": "BBC News اردو", - "publishingPrinciples": "https://www.bbc.com/urdu/institutional-49282935", - }, - "thumbnailUrl": "https://news.files.bbci.co.uk/ws/img/logos/og/urdu.png", - "url": "http://localhost:7080/urdu/media/video", - }, - ], -} -`; - -exports[`Canonical Most Watched Page SEO OG description 1`] = `"سب سے زیادہ دیکھی گئی - BBC News اردو"`; - -exports[`Canonical Most Watched Page SEO OG image 1`] = `"https://news.files.bbci.co.uk/ws/img/logos/og/urdu.png"`; - -exports[`Canonical Most Watched Page SEO OG image alt 1`] = `"BBC News اردو"`; - -exports[`Canonical Most Watched Page SEO OG locale 1`] = `"ur"`; - -exports[`Canonical Most Watched Page SEO OG site name 1`] = `"BBC News اردو"`; - -exports[`Canonical Most Watched Page SEO OG title 1`] = `"سب سے زیادہ دیکھی گئی - BBC News اردو"`; - -exports[`Canonical Most Watched Page SEO OG type 1`] = `"website"`; - -exports[`Canonical Most Watched Page SEO OG url 1`] = `"http://localhost:7080/urdu/media/video"`; - -exports[`Canonical Most Watched Page SEO Page title 1`] = `"سب سے زیادہ دیکھی گئی - BBC News اردو"`; - -exports[`Canonical Most Watched Page SEO Robots meta tag 1`] = `"noodp, noydir, max-image-preview:large"`; - -exports[`Canonical Most Watched Page SEO Twitter card 1`] = `"summary_large_image"`; - -exports[`Canonical Most Watched Page SEO Twitter creator 1`] = `"@bbcurdu"`; - -exports[`Canonical Most Watched Page SEO Twitter description 1`] = `"سب سے زیادہ دیکھی گئی - BBC News اردو"`; - -exports[`Canonical Most Watched Page SEO Twitter image alt 1`] = `"BBC News اردو"`; - -exports[`Canonical Most Watched Page SEO Twitter image src 1`] = `"https://news.files.bbci.co.uk/ws/img/logos/og/urdu.png"`; - -exports[`Canonical Most Watched Page SEO Twitter site 1`] = `"@bbcurdu"`; - -exports[`Canonical Most Watched Page SEO Twitter title 1`] = `"سب سے زیادہ دیکھی گئی - BBC News اردو"`; diff --git a/src/integration/pages/mostWatchedPage/urdu/amp.test.js b/src/integration/pages/mostWatchedPage/urdu/amp.test.js deleted file mode 100644 index a4c9600aea5..00000000000 --- a/src/integration/pages/mostWatchedPage/urdu/amp.test.js +++ /dev/null @@ -1,12 +0,0 @@ -/** - * @service urdu - * @pathname /urdu/media/video - */ - -import runAmpTests from '../ampTests'; - -describe('AMP', () => { - describe(pageType, () => { - runAmpTests(); - }); -}); diff --git a/src/integration/pages/mostWatchedPage/urdu/canonical.test.js b/src/integration/pages/mostWatchedPage/urdu/canonical.test.js deleted file mode 100644 index 5316988e884..00000000000 --- a/src/integration/pages/mostWatchedPage/urdu/canonical.test.js +++ /dev/null @@ -1,12 +0,0 @@ -/** - * @service urdu - * @pathname /urdu/media/video - */ - -import runCanonicalTests from '../canonicalTests'; - -describe('Canonical', () => { - describe(pageType, () => { - runCanonicalTests(); - }); -}); From d69fb67ea8c34e8380284225984d21fbbd0b1c6b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CLilyL0u=E2=80=9D?= Date: Mon, 17 Jun 2024 23:14:12 +0100 Subject: [PATCH 21/51] remove most watched from cypres config --- cypress/support/config/settings.js | 53 ------------------------------ 1 file changed, 53 deletions(-) diff --git a/cypress/support/config/settings.js b/cypress/support/config/settings.js index cc9ffba67fd..4653e77a37a 100644 --- a/cypress/support/config/settings.js +++ b/cypress/support/config/settings.js @@ -105,7 +105,6 @@ module.exports = () => ({ }, smoke: false, }, - mostWatchedPage: { environments: undefined, smoke: false }, photoGalleryPage: { environments: { live: { @@ -329,7 +328,6 @@ module.exports = () => ({ }, smoke: false, }, - mostWatchedPage: { environments: undefined, smoke: false }, photoGalleryPage: { environments: { live: { @@ -524,7 +522,6 @@ module.exports = () => ({ }, smoke: false, }, - mostWatchedPage: { environments: undefined, smoke: false }, photoGalleryPage: { environments: { live: { @@ -748,7 +745,6 @@ module.exports = () => ({ }, smoke: false, }, - mostWatchedPage: { environments: undefined, smoke: false }, photoGalleryPage: { environments: { live: { @@ -910,7 +906,6 @@ module.exports = () => ({ }, smoke: false, }, - mostWatchedPage: { environments: undefined, smoke: false }, photoGalleryPage: { environments: { live: { @@ -1110,7 +1105,6 @@ module.exports = () => ({ }, smoke: false, }, - mostWatchedPage: { environments: undefined, smoke: false }, photoGalleryPage: { environments: { live: { @@ -1342,7 +1336,6 @@ module.exports = () => ({ }, smoke: false, }, - mostWatchedPage: { environments: undefined, smoke: false }, photoGalleryPage: { environments: { live: { @@ -1478,7 +1471,6 @@ module.exports = () => ({ onDemandAudio: { environments: undefined, smoke: false }, onDemandTV: { environments: undefined, smoke: false }, mediaAssetPage: { environments: undefined, smoke: false }, - mostWatchedPage: { environments: undefined, smoke: false }, photoGalleryPage: { environments: undefined, smoke: false }, storyPage: { environments: undefined, smoke: false }, topicPage: { environments: undefined, smoke: false }, @@ -1626,7 +1618,6 @@ module.exports = () => ({ }, smoke: true, }, - mostWatchedPage: { environments: undefined, smoke: false }, photoGalleryPage: { environments: { live: { @@ -1810,7 +1801,6 @@ module.exports = () => ({ }, smoke: false, }, - mostWatchedPage: { environments: undefined, smoke: false }, photoGalleryPage: { environments: { live: { @@ -2041,7 +2031,6 @@ module.exports = () => ({ }, smoke: true, }, - mostWatchedPage: { environments: undefined, smoke: false }, photoGalleryPage: { environments: { live: { @@ -2271,7 +2260,6 @@ module.exports = () => ({ }, smoke: false, }, - mostWatchedPage: { environments: undefined, smoke: false }, photoGalleryPage: { environments: { live: { @@ -2428,7 +2416,6 @@ module.exports = () => ({ }, smoke: false, }, - mostWatchedPage: { environments: undefined, smoke: false }, photoGalleryPage: { environments: { live: { @@ -2638,7 +2625,6 @@ module.exports = () => ({ }, smoke: false, }, - mostWatchedPage: { environments: undefined, smoke: false }, photoGalleryPage: { environments: { live: { @@ -2794,7 +2780,6 @@ module.exports = () => ({ }, smoke: false, }, - mostWatchedPage: { environments: undefined, smoke: false }, photoGalleryPage: { environments: { live: { @@ -2988,7 +2973,6 @@ module.exports = () => ({ }, smoke: false, }, - mostWatchedPage: { environments: undefined, smoke: false }, photoGalleryPage: { environments: { live: { @@ -3231,7 +3215,6 @@ module.exports = () => ({ }, smoke: false, }, - mostWatchedPage: { environments: undefined, smoke: false }, photoGalleryPage: { environments: { live: { @@ -3431,7 +3414,6 @@ module.exports = () => ({ }, smoke: false, }, - mostWatchedPage: { environments: undefined, smoke: false }, photoGalleryPage: { environments: { live: { @@ -3593,7 +3575,6 @@ module.exports = () => ({ }, smoke: false, }, - mostWatchedPage: { environments: undefined, smoke: false }, photoGalleryPage: { environments: { live: { @@ -3751,7 +3732,6 @@ module.exports = () => ({ onDemandTV: { environments: undefined, smoke: false }, topicPage: { environments: undefined, smoke: false }, mediaAssetPage: { environments: undefined, smoke: false }, - mostWatchedPage: { environments: undefined, smoke: false }, photoGalleryPage: { environments: undefined, smoke: false }, storyPage: { environments: undefined, smoke: false }, mostReadPage: { environments: undefined, smoke: false }, @@ -3898,7 +3878,6 @@ module.exports = () => ({ }, smoke: false, }, - mostWatchedPage: { environments: undefined, smoke: false }, photoGalleryPage: { environments: { live: { @@ -4035,7 +4014,6 @@ module.exports = () => ({ onDemandTV: { environments: undefined, smoke: false }, topicPage: { environments: undefined, smoke: false }, mediaAssetPage: { environments: undefined, smoke: false }, - mostWatchedPage: { environments: undefined, smoke: false }, photoGalleryPage: { environments: undefined, smoke: false }, storyPage: { environments: { @@ -4099,7 +4077,6 @@ module.exports = () => ({ onDemandTV: { environments: undefined, smoke: false }, topicPage: { environments: undefined, smoke: false }, mediaAssetPage: { environments: undefined, smoke: false }, - mostWatchedPage: { environments: undefined, smoke: false }, photoGalleryPage: { environments: undefined, smoke: false }, storyPage: { environments: { @@ -4278,7 +4255,6 @@ module.exports = () => ({ }, smoke: true, }, - mostWatchedPage: { environments: undefined, smoke: false }, photoGalleryPage: { environments: { live: { @@ -4565,7 +4541,6 @@ module.exports = () => ({ }, smoke: true, }, - mostWatchedPage: { environments: undefined, smoke: false }, photoGalleryPage: { environments: { live: { @@ -4780,7 +4755,6 @@ module.exports = () => ({ }, smoke: true, }, - mostWatchedPage: { environments: undefined, smoke: false }, photoGalleryPage: { environments: { live: { @@ -4967,7 +4941,6 @@ module.exports = () => ({ }, smoke: false, }, - mostWatchedPage: { environments: undefined, smoke: false }, photoGalleryPage: { environments: { live: { @@ -5123,7 +5096,6 @@ module.exports = () => ({ }, smoke: false, }, - mostWatchedPage: { environments: undefined, smoke: false }, photoGalleryPage: { environments: { live: { @@ -5307,7 +5279,6 @@ module.exports = () => ({ }, smoke: false, }, - mostWatchedPage: { environments: undefined, smoke: false }, // No Most Watched page for Russian photoGalleryPage: { environments: { live: { @@ -5444,7 +5415,6 @@ module.exports = () => ({ onDemandTV: { environments: undefined, smoke: false }, topicPage: { environments: undefined, smoke: false }, mediaAssetPage: { environments: undefined, smoke: false }, - mostWatchedPage: { environments: undefined, smoke: false }, photoGalleryPage: { environments: undefined, smoke: false }, storyPage: { environments: undefined, smoke: false }, mostReadPage: { environments: undefined, smoke: false }, @@ -5554,7 +5524,6 @@ module.exports = () => ({ }, smoke: false, }, - mostWatchedPage: { environments: undefined, smoke: false }, photoGalleryPage: { environments: { live: { @@ -5741,7 +5710,6 @@ module.exports = () => ({ }, smoke: false, }, - mostWatchedPage: { environments: undefined, smoke: false }, photoGalleryPage: { environments: { live: { @@ -5902,7 +5870,6 @@ module.exports = () => ({ }, smoke: false, }, - mostWatchedPage: { environments: undefined, smoke: false }, photoGalleryPage: { environments: { live: { @@ -6125,7 +6092,6 @@ module.exports = () => ({ }, smoke: false, }, - mostWatchedPage: { environments: undefined, smoke: false }, photoGalleryPage: { environments: { live: { @@ -6229,7 +6195,6 @@ module.exports = () => ({ onDemandTV: { environments: undefined, smoke: false }, topicPage: { environments: undefined, smoke: false }, mediaAssetPage: { environments: undefined, smoke: false }, - mostWatchedPage: { environments: undefined, smoke: false }, photoGalleryPage: { environments: undefined, smoke: false }, storyPage: { environments: { @@ -6408,7 +6373,6 @@ module.exports = () => ({ }, smoke: false, }, - mostWatchedPage: { environments: undefined, smoke: false }, photoGalleryPage: { environments: { live: { @@ -6632,7 +6596,6 @@ module.exports = () => ({ }, smoke: false, }, - mostWatchedPage: { environments: undefined, smoke: false }, photoGalleryPage: { environments: { live: { @@ -6813,7 +6776,6 @@ module.exports = () => ({ }, smoke: false, }, - mostWatchedPage: { environments: undefined, smoke: false }, photoGalleryPage: { environments: { live: { @@ -6970,7 +6932,6 @@ module.exports = () => ({ }, smoke: true, }, - mostWatchedPage: { environments: undefined, smoke: false }, photoGalleryPage: { environments: { live: { @@ -7184,7 +7145,6 @@ module.exports = () => ({ }, smoke: false, }, - mostWatchedPage: { environments: undefined, smoke: false }, photoGalleryPage: { environments: { live: { @@ -7346,7 +7306,6 @@ module.exports = () => ({ }, smoke: false, }, - mostWatchedPage: { environments: undefined, smoke: false }, photoGalleryPage: { environments: { live: { @@ -7508,7 +7467,6 @@ module.exports = () => ({ }, smoke: false, }, - mostWatchedPage: { environments: undefined, smoke: false }, photoGalleryPage: { environments: { live: { @@ -7670,7 +7628,6 @@ module.exports = () => ({ }, smoke: false, }, - mostWatchedPage: { environments: undefined, smoke: false }, photoGalleryPage: { environments: { live: { @@ -7791,7 +7748,6 @@ module.exports = () => ({ smoke: false, }, mediaAssetPage: { environments: undefined, smoke: false }, - mostWatchedPage: { environments: undefined, smoke: false }, photoGalleryPage: { environments: undefined, smoke: false }, storyPage: { environments: undefined, smoke: false }, mostReadPage: { environments: undefined, smoke: false }, @@ -7915,7 +7871,6 @@ module.exports = () => ({ }, smoke: false, }, - mostWatchedPage: { environments: undefined, smoke: false }, photoGalleryPage: { environments: { live: { @@ -8138,7 +8093,6 @@ module.exports = () => ({ }, smoke: false, }, - mostWatchedPage: { environments: undefined, smoke: false }, photoGalleryPage: { environments: { live: { @@ -8366,7 +8320,6 @@ module.exports = () => ({ }, smoke: false, }, - mostWatchedPage: { environments: undefined, smoke: false }, photoGalleryPage: { environments: { live: { @@ -8487,7 +8440,6 @@ module.exports = () => ({ onDemandTV: { environments: undefined, smoke: false }, topicPage: { environments: undefined, smoke: false }, mediaAssetPage: { environments: undefined, smoke: false }, - mostWatchedPage: { environments: undefined, smoke: false }, photoGalleryPage: { environments: undefined, smoke: false }, storyPage: { environments: undefined, smoke: false }, mostReadPage: { environments: undefined, smoke: false }, @@ -8527,7 +8479,6 @@ module.exports = () => ({ onDemandTV: { environments: undefined, smoke: false }, topicPage: { environments: undefined, smoke: false }, mediaAssetPage: { environments: undefined, smoke: false }, - mostWatchedPage: { environments: undefined, smoke: false }, photoGalleryPage: { environments: undefined, smoke: false }, storyPage: { environments: undefined, smoke: false }, mostReadPage: { environments: undefined, smoke: false }, @@ -8608,7 +8559,6 @@ module.exports = () => ({ }, smoke: false, }, - mostWatchedPage: { environments: undefined, smoke: false }, photoGalleryPage: { environments: { live: { @@ -8765,7 +8715,6 @@ module.exports = () => ({ }, smoke: false, }, - mostWatchedPage: { environments: undefined, smoke: false }, photoGalleryPage: { environments: { live: { @@ -8973,7 +8922,6 @@ module.exports = () => ({ }, smoke: false, }, - mostWatchedPage: { environments: undefined, smoke: false }, photoGalleryPage: { environments: { live: { @@ -9181,7 +9129,6 @@ module.exports = () => ({ }, smoke: false, }, - mostWatchedPage: { environments: undefined, smoke: false }, photoGalleryPage: { environments: { live: { From 63801b7a9ced028b6b242f1602ab3804a8e3da64 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CLilyL0u=E2=80=9D?= Date: Mon, 17 Jun 2024 23:18:19 +0100 Subject: [PATCH 22/51] remove most watched from readme folder map --- src/integration/README.mdx | 1 - 1 file changed, 1 deletion(-) diff --git a/src/integration/README.mdx b/src/integration/README.mdx index 4e2d4298c80..6e0a8acc114 100644 --- a/src/integration/README.mdx +++ b/src/integration/README.mdx @@ -168,7 +168,6 @@ Tests for pages are located in the `src/app/integration/pages` directory within | ├── liveRadio | ├── mediaAssetPage | ├── mostReadPage -| ├── mostWatchedPage | ├── onDemandAudioPage | ├── onDemandTVPage | ├── photoGalleryPage From 33e54a31f59b49bdc5ec9a4bcb3a33076443548b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CLilyL0u=E2=80=9D?= Date: Tue, 18 Jun 2024 09:33:15 +0100 Subject: [PATCH 23/51] remove most watched from bundle size tests --- .../bundleSize/__mocks__/pageTypeBundleExtractor.js | 13 +------------ scripts/bundleSize/bundleSize.test.js | 8 ++------ scripts/bundleSize/getBundleData.test.js | 11 ++++++----- 3 files changed, 9 insertions(+), 23 deletions(-) diff --git a/scripts/bundleSize/__mocks__/pageTypeBundleExtractor.js b/scripts/bundleSize/__mocks__/pageTypeBundleExtractor.js index 4d583f8ba81..5fd201fca46 100644 --- a/scripts/bundleSize/__mocks__/pageTypeBundleExtractor.js +++ b/scripts/bundleSize/__mocks__/pageTypeBundleExtractor.js @@ -70,17 +70,6 @@ export default { 'modern.shared-3333.js', ]; } - if (pageType === 'MostWatchedPage') { - return [ - 'modern.MostWatchedPage-31ecd969.7484ff05.js', - 'modern.commons-1111.js', - 'modern.commons-2222.js', - 'modern.1111-lib-1111.js', - 'modern.shared-1111.js', - 'modern.shared-2222.js', - 'modern.shared-3333.js', - ]; - } if (pageType === 'OnDemandAudioPage') { return [ 'modern.OnDemandAudioPage-31ecd969.ec6af2d0.js', @@ -134,4 +123,4 @@ export default { throw Error(`page type ${pageType} not mocked`); }, -} +}; diff --git a/scripts/bundleSize/bundleSize.test.js b/scripts/bundleSize/bundleSize.test.js index 715b0285872..15375746a9c 100644 --- a/scripts/bundleSize/bundleSize.test.js +++ b/scripts/bundleSize/bundleSize.test.js @@ -201,15 +201,11 @@ describe('bundleSize', () => { ├───────────────────┼──────────────────────────┼──────────────────────────┼──────────────────────────┼──────────────────────────┼──────────────────────────┼──────────────────────────┼────────────────────┼─────────────────┤ │ MediaAssetPage │ main-12345…345.js (20kB) │ framework-…111.js (98kB) │ 1111-lib-1…111.js (78kB) │ shared-111…111.js (39kB) │ commons-11…111.js (49kB) │ MediaAsset…c9c.js (20kB) │ 440000 │ 431 │ │ │ │ │ 3333-lib-2…222.js (78kB) │ │ commons-22…222.js (49kB) │ │ │ │ - ├───────────────────┼──────────────────────────┼──────────────────────────┼──────────────────────────┼──────────────────────────┼──────────────────────────┼──────────────────────────┼────────────────────┼─────────────────┤ - │ MostWatchedPage │ main-12345…345.js (20kB) │ framework-…111.js (98kB) │ 1111-lib-1…111.js (78kB) │ shared-111…111.js (39kB) │ commons-11…111.js (49kB) │ MostWatche…f05.js (20kB) │ 440000 │ 431 │ - │ │ │ │ │ shared-222…222.js (39kB) │ commons-22…222.js (49kB) │ │ │ │ - │ │ │ │ │ shared-333…333.js (39kB) │ │ │ │ │ └───────────────────┴──────────────────────────┴──────────────────────────┴──────────────────────────┴──────────────────────────┴──────────────────────────┴──────────────────────────┴────────────────────┴─────────────────┘ MODERN page bundle sizes summary (excludes service bundle) ┌─────────────────────────────────┬─────┐ - │ Smallest total bundle size (kB) │ 353 │ + │ Smallest total bundle size (kB) │ 353 │ b ├─────────────────────────────────┼─────┤ │ Largest total bundle size (kB) │ 431 │ ├─────────────────────────────────┼─────┤ @@ -274,7 +270,7 @@ describe('bundleSize', () => { // silence error } expect(global.console.error).toHaveBeenCalledWith( - "Bundle size for service2 MostWatchedPage is too large at 753 kB. Please update thresholds in './scripts/bundleSize/bundleSizeConfig.js'", + "Bundle size for service2 MediaAssetPage is too large at 753 kB. Please update thresholds in './scripts/bundleSize/bundleSizeConfig.js'", ); }); }); diff --git a/scripts/bundleSize/getBundleData.test.js b/scripts/bundleSize/getBundleData.test.js index c5ce0c06bd7..f77c8f4e06e 100644 --- a/scripts/bundleSize/getBundleData.test.js +++ b/scripts/bundleSize/getBundleData.test.js @@ -1,8 +1,11 @@ -import { pages } from './pages.js'; import { jest } from '@jest/globals'; +import { pages } from './pages.js'; import pageTypeBundleExtractor from './__mocks__/pageTypeBundleExtractor.js'; -jest.unstable_mockModule('./pageTypeBundleExtractor', () => (pageTypeBundleExtractor)); +jest.unstable_mockModule( + './pageTypeBundleExtractor', + () => pageTypeBundleExtractor, +); jest.unstable_mockModule('fs', () => ({ default: { @@ -14,7 +17,6 @@ jest.unstable_mockModule('fs', () => ({ 'modern.LiveRadioPage-31ecd969.64772a90.js', 'modern.MediaAssetPage-88a3c260.b7ec8c9c.js', 'modern.MostReadPage-31ecd969.7484ff05.js', - 'modern.MostWatchedPage-31ecd969.7484rr05.js', 'modern.OnDemandAudioPage-31ecd969.ec6af2d0.js', 'modern.OnDemandTvPage-31ecd969.de41ab7f.js', 'modern.PhotoGalleryPage-e94df663.a733283a.js', @@ -79,8 +81,7 @@ jest.unstable_mockModule('fs', () => ({ ], statSync: () => ({ size: 10000 }), - } - + }, })); describe('getPageBundleData', () => { From 85c70d08e941bf9f528c1cee2bf0a69ee1d26811 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CLilyL0u=E2=80=9D?= Date: Tue, 18 Jun 2024 10:39:45 +0100 Subject: [PATCH 24/51] delete most watched page ati build params --- .../mostWatchedPage/buildParams.test.ts | 102 ------------------ .../params/mostWatchedPage/buildParams.ts | 48 --------- 2 files changed, 150 deletions(-) delete mode 100644 src/app/components/ATIAnalytics/params/mostWatchedPage/buildParams.test.ts delete mode 100644 src/app/components/ATIAnalytics/params/mostWatchedPage/buildParams.ts diff --git a/src/app/components/ATIAnalytics/params/mostWatchedPage/buildParams.test.ts b/src/app/components/ATIAnalytics/params/mostWatchedPage/buildParams.test.ts deleted file mode 100644 index 4760029d861..00000000000 --- a/src/app/components/ATIAnalytics/params/mostWatchedPage/buildParams.test.ts +++ /dev/null @@ -1,102 +0,0 @@ -import * as analyticsUtils from '#lib/analyticsUtils'; -import { RequestContextProps } from '../../../../contexts/RequestContext'; -import { ServiceConfig } from '../../../../models/types/serviceConfig'; -import { - buildMostWatchedATIParams, - buildMostWatchedATIUrl, -} from './buildParams'; - -(analyticsUtils.getAtUserId as jest.Mock) = jest.fn(); -(analyticsUtils.getCurrentTime as jest.Mock) = jest - .fn() - .mockReturnValue('00-00-00'); -(analyticsUtils.getPublishedDatetime as jest.Mock) = jest - .fn() - .mockReturnValue('1970-01-01T00:00:00.000Z'); - -// @ts-expect-error - only partial data required for testing purposes -const requestContext: RequestContextProps = { - platform: 'canonical', - isUK: false, - statsDestination: 'statsDestination', - previousPath: 'previousPath', - origin: 'origin', -}; - -const serviceContext: ServiceConfig = { - atiAnalyticsAppName: 'news-pidgin', - atiAnalyticsProducerId: '70', - service: 'pidgin', - brandName: 'BBC News Pidgin', - // @ts-expect-error - only partial data required for testing purposes - mostWatched: { header: 'De one we dem don look' }, - lang: 'pcm', -}; - -const validURLParams = { - appName: serviceContext.atiAnalyticsAppName, - contentType: 'list-datadriven', - language: 'pcm', - pageIdentifier: 'pidgin.media.video.page', - pageTitle: 'De one we dem don look - BBC News Pidgin', - libraryVersion: analyticsUtils.LIBRARY_VERSION, - producerId: serviceContext.atiAnalyticsProducerId, - platform: requestContext.platform, - service: 'pidgin', - statsDestination: requestContext.statsDestination, - timePublished: '2019-11-06T15:00:00Z', - timeUpdated: '2030-01-01T17:00:00Z', -}; - -const pageData = { - firstRecordTimeStamp: '2019-11-06T15:00:00Z', - lastRecordTimeStamp: '2030-01-01T17:00:00Z', -}; - -describe('mostWatched buildParams', () => { - afterEach(() => { - jest.clearAllMocks(); - }); - - describe('buildMostWatchedATIParams', () => { - it('should return the right object', () => { - const result = buildMostWatchedATIParams( - pageData, - requestContext, - serviceContext, - ); - expect(result).toEqual(validURLParams); - }); - }); - - describe('buildMostWatchedATIUrl', () => { - it('should return the right url', () => { - const result = buildMostWatchedATIUrl( - pageData, - requestContext, - serviceContext, - ) as string; - - const params = Object.fromEntries(new URLSearchParams(result)); - - expect(params).toEqual({ - s: '598285', - s2: '70', - p: 'pidgin.media.video.page', - r: '0x0x24x24', - re: '1024x768', - hl: '00-00-00', - lng: 'en-US', - x2: '[responsive]', - x3: '[news-pidgin]', - x4: '[pcm]', - x5: '[http%3A%2F%2Flocalhost%2F]', - x7: '[list-datadriven]', - x8: '[simorgh]', - x9: '[De%20one%20we%20dem%20don%20look%20-%20BBC%20News%20Pidgin]', - x11: '[2019-11-06T15:00:00Z]', - x12: '[2030-01-01T17:00:00Z]', - }); - }); - }); -}); diff --git a/src/app/components/ATIAnalytics/params/mostWatchedPage/buildParams.ts b/src/app/components/ATIAnalytics/params/mostWatchedPage/buildParams.ts deleted file mode 100644 index c8b1e20b891..00000000000 --- a/src/app/components/ATIAnalytics/params/mostWatchedPage/buildParams.ts +++ /dev/null @@ -1,48 +0,0 @@ -import { LIBRARY_VERSION } from '../../../../lib/analyticsUtils'; -import { RequestContextProps } from '../../../../contexts/RequestContext'; -import { ServiceConfig } from '../../../../models/types/serviceConfig'; -import { buildATIPageTrackPath } from '../../atiUrl'; -import { PageData } from '../../types'; - -export const buildMostWatchedATIParams = ( - pageData: PageData, - requestContext: RequestContextProps, - serviceContext: ServiceConfig, -) => { - const { platform, statsDestination } = requestContext; - const { - atiAnalyticsAppName, - atiAnalyticsProducerId, - brandName, - lang, - service, - mostWatched: { header }, - } = serviceContext; - - return { - appName: atiAnalyticsAppName, - contentType: 'list-datadriven', - language: lang, - pageIdentifier: `${service}.media.video.page`, - pageTitle: `${header} - ${brandName}`, - producerId: atiAnalyticsProducerId, - libraryVersion: LIBRARY_VERSION, - statsDestination, - platform, - service, - timePublished: pageData.firstRecordTimeStamp, - timeUpdated: pageData.lastRecordTimeStamp, - }; -}; - -export const buildMostWatchedATIUrl = ( - pageData: PageData, - requestContext: RequestContextProps, - serviceContext: ServiceConfig, -) => { - return buildATIPageTrackPath( - buildMostWatchedATIParams(pageData, requestContext, serviceContext), - ); -}; - -export default buildMostWatchedATIUrl; From 80013c6d665e1af8cc5d3ad7079a84f9ead9a963 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CLilyL0u=E2=80=9D?= Date: Tue, 18 Jun 2024 10:40:26 +0100 Subject: [PATCH 25/51] delete most watched fixture data --- data/ukchina/mostWatched/simp.json | 64 ------------------------------ data/ukchina/mostWatched/trad.json | 64 ------------------------------ 2 files changed, 128 deletions(-) delete mode 100644 data/ukchina/mostWatched/simp.json delete mode 100644 data/ukchina/mostWatched/trad.json diff --git a/data/ukchina/mostWatched/simp.json b/data/ukchina/mostWatched/simp.json deleted file mode 100644 index 3c7bc40ce94..00000000000 --- a/data/ukchina/mostWatched/simp.json +++ /dev/null @@ -1,64 +0,0 @@ -{ - "generated": "2020-07-09T15:32:23.063Z", - "lastRecordTimeStamp": "2030-01-01T17:00:00Z", - "firstRecordTimeStamp": "2020-07-09T15:12:00Z", - "totalRecords": 1, - "records": [ - { - "id": "4296d84a-cbeb-674f-a198-b4a58d718996", - "rank": 1, - "count": 1, - "urn": "urn:bbc:curie:asset:4296d84a-cbeb-674f-a198-b4a58d718996", - "promo": { - "headlines": { - "shortHeadline": "日本“胶囊公寓” 功能和舒适度与大小无关", - "headline": "日本“胶囊公寓” 功能和舒适度与大小无关" - }, - "locators": { - "assetUri": "/ukchina/simp/50912269", - "cpsUrn": "urn:bbc:content:assetUri:ukchina/simp/50912269", - "curie": "http://www.bbc.co.uk/asset/4296d84a-cbeb-674f-a198-b4a58d718996", - "assetId": "50912269" - }, - "summary": "东京地少人多,到城市打工的年轻人住在狭小的房间,但是日本建筑设计师充分发挥巧思,加入提高功能性和舒适度的设计。", - "timestamp": 1577370715000, - "language": "zh-Hans", - "passport": { - "category": { - "categoryId": "http://www.bbc.co.uk/ontologies/applicationlogic-news/Feature", - "categoryName": "Feature" - }, - "campaigns": [ - { - "campaignId": "5a988e2139461b000e9dabf7", - "campaignName": "WS - Inspire me" - } - ], - "taggings": [] - }, - "media": { - "id": "50915485", - "subType": "primary", - "format": "video", - "externalId": "p07yyd4s", - "entityType": "Clip", - "caption": "日本建筑师如何推广蜗居", - "type": "external_vpid" - }, - "indexImage": { - "id": "110309167", - "subType": "index", - "href": "http://c.files.bbci.co.uk/1299E/production/_110309167_p07yyd9g.jpg", - "path": "/cpsprodpb/1299E/production/_110309167_p07yyd9g.jpg", - "height": 549, - "width": 976, - "altText": "japan", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:ukchina/simp/50912269", - "type": "cps" - } - } - ] -} diff --git a/data/ukchina/mostWatched/trad.json b/data/ukchina/mostWatched/trad.json deleted file mode 100644 index 2a97d4732e8..00000000000 --- a/data/ukchina/mostWatched/trad.json +++ /dev/null @@ -1,64 +0,0 @@ -{ - "generated": "2020-07-09T15:32:24.269Z", - "lastRecordTimeStamp": "2030-01-01T17:00:00Z", - "firstRecordTimeStamp": "2020-07-09T15:12:00Z", - "totalRecords": 1, - "records": [ - { - "id": "29fc3e35-3876-f24c-abc5-e1f07c4cf089", - "rank": 1, - "count": 1, - "urn": "urn:bbc:curie:asset:29fc3e35-3876-f24c-abc5-e1f07c4cf089", - "promo": { - "headlines": { - "shortHeadline": "猶太大屠殺倖存者的故事:「我選擇寬恕納粹」", - "headline": "猶太大屠殺倖存者的故事:「我選擇寬恕納粹」" - }, - "locators": { - "assetUri": "/ukchina/trad/52713550", - "cpsUrn": "urn:bbc:content:assetUri:ukchina/trad/52713550", - "curie": "http://www.bbc.co.uk/asset/29fc3e35-3876-f24c-abc5-e1f07c4cf089", - "assetId": "52713550" - }, - "summary": "伊凡和她的家人在她小時候就被納粹德軍關進集中營,但她決定餘生不要活在憤怒之中,她選擇原諒這些令她受苦的人。", - "timestamp": 1589831998000, - "language": "zh-Hant", - "passport": { - "category": { - "categoryId": "http://www.bbc.co.uk/ontologies/applicationlogic-news/Feature", - "categoryName": "Feature" - }, - "campaigns": [ - { - "campaignId": "5a988e2139461b000e9dabf7", - "campaignName": "WS - Inspire me" - } - ], - "taggings": [] - }, - "media": { - "id": "52497364", - "subType": "primary", - "format": "video", - "externalId": "p08bz13d", - "entityType": "Clip", - "caption": "猶太人大屠殺倖存者的故事:\"我選擇寬恕納粹黨人\"", - "type": "external_vpid" - }, - "indexImage": { - "id": "112054792", - "subType": "index", - "href": "http://c.files.bbci.co.uk/7431/production/_112054792_p08bz311.jpg", - "path": "/cpsprodpb/7431/production/_112054792_p08bz311.jpg", - "height": 549, - "width": 976, - "altText": "猶太人大屠殺倖存者的故事", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:ukchina/trad/52713550", - "type": "cps" - } - } - ] -} From 4d00184416e2d2dd0572705f9aa1741f5032d758 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CLilyL0u=E2=80=9D?= Date: Tue, 18 Jun 2024 10:42:12 +0100 Subject: [PATCH 26/51] delete most watched container --- .../legacy/containers/MostWatched/index.jsx | 38 ------------ .../containers/MostWatched/index.stories.jsx | 37 ------------ .../containers/MostWatched/index.test.jsx | 59 ------------------- 3 files changed, 134 deletions(-) delete mode 100644 src/app/legacy/containers/MostWatched/index.jsx delete mode 100644 src/app/legacy/containers/MostWatched/index.stories.jsx delete mode 100644 src/app/legacy/containers/MostWatched/index.test.jsx diff --git a/src/app/legacy/containers/MostWatched/index.jsx b/src/app/legacy/containers/MostWatched/index.jsx deleted file mode 100644 index 797ca6a11a4..00000000000 --- a/src/app/legacy/containers/MostWatched/index.jsx +++ /dev/null @@ -1,38 +0,0 @@ -import React, { useContext } from 'react'; -import styled from '@emotion/styled'; -import { GEL_GROUP_4_SCREEN_WIDTH_MIN } from '#psammead/gel-foundations/src/breakpoints'; -import { ServiceContext } from '../../../contexts/ServiceContext'; -import CpsOnwardJourney from '../CpsOnwardJourney'; -import RelatedContentPromo from '../CpsRelatedContent/RelatedContentPromo'; -import RelatedContentPromoList from '../CpsRelatedContent/RelatedContentPromoList'; - -const StyledCpsOnwardJourney = styled(CpsOnwardJourney)` - @media (max-width: ${GEL_GROUP_4_SCREEN_WIDTH_MIN}) { - padding: 0; - } -`; - -const MostWatched = ({ data = null }) => { - const { mostWatched } = useContext(ServiceContext); - const { header } = mostWatched; - - if (!data || !data.length) { - return null; - } - - return ( - - ); -}; - -export default MostWatched; diff --git a/src/app/legacy/containers/MostWatched/index.stories.jsx b/src/app/legacy/containers/MostWatched/index.stories.jsx deleted file mode 100644 index ca3541db7e7..00000000000 --- a/src/app/legacy/containers/MostWatched/index.stories.jsx +++ /dev/null @@ -1,37 +0,0 @@ -import React from 'react'; -import { RequestContextProvider } from '#contexts/RequestContext'; -import { ToggleContextProvider } from '#contexts/ToggleContext'; -import mostWatchedData from '#data/pidgin/mostWatched/index.json'; -import { MEDIA_ASSET_PAGE } from '#app/routes/utils/pageTypes'; -import MostWatchedContainer from '.'; - -const promos = mostWatchedData.records.slice(0, 5).map(item => item.promo); - -const Component = () => { - return ( - - - - - - ); -}; - -export default { - title: 'Containers/Most Watched', - Component, - parameters: { chromatic: { disable: true } }, -}; - -export const MostWatched = Component; diff --git a/src/app/legacy/containers/MostWatched/index.test.jsx b/src/app/legacy/containers/MostWatched/index.test.jsx deleted file mode 100644 index c73c30b83e8..00000000000 --- a/src/app/legacy/containers/MostWatched/index.test.jsx +++ /dev/null @@ -1,59 +0,0 @@ -import React from 'react'; -import { render } from '@testing-library/react'; - -import { RequestContextProvider } from '#contexts/RequestContext'; -import { ToggleContextProvider } from '#contexts/ToggleContext'; -import mostWatchedData from '#data/pidgin/mostWatched/index.json'; -import { MEDIA_ASSET_PAGE } from '#app/routes/utils/pageTypes'; -import { ServiceContextProvider } from '../../../contexts/ServiceContext'; -import ThemeProvider from '../../../components/ThemeProvider'; -import MostWatched from '.'; - -jest.mock('../../../components/ThemeProvider'); - -const promos = mostWatchedData.records.slice(0, 5).map(item => item.promo); -const MostWatchedComponent = ({ data, isAmp }) => ( - - - - - - - - - -); - -describe('MostWatched', () => { - it('should render the component on Canonical', async () => { - const { container } = await render( - , - ); - expect(container.querySelector('ol')).toBeInTheDocument(); - }); - - it('should render the component on AMP', async () => { - const { container } = await render( - , - ); - expect(container.querySelector('ol')).toBeInTheDocument(); - }); - - it('should not render the component when data is empty', async () => { - const { container } = await render( - , - ); - expect(container.querySelector('ol')).not.toBeInTheDocument(); - }); -}); From eb9dff846f91703a1ff529bba229f92c08af3183 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CLilyL0u=E2=80=9D?= Date: Tue, 18 Jun 2024 10:44:16 +0100 Subject: [PATCH 27/51] remove most watched from related content promo list --- .../RelatedContentPromoList/index.jsx | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/src/app/legacy/containers/CpsRelatedContent/RelatedContentPromoList/index.jsx b/src/app/legacy/containers/CpsRelatedContent/RelatedContentPromoList/index.jsx index 447e149282b..dfb1f23fd5c 100644 --- a/src/app/legacy/containers/CpsRelatedContent/RelatedContentPromoList/index.jsx +++ b/src/app/legacy/containers/CpsRelatedContent/RelatedContentPromoList/index.jsx @@ -18,17 +18,6 @@ const MediaStoryPromoLi = styled(StoryPromoLi)` } `; -const MostWatchedOl = styled.ol` - list-style-type: none; - margin: 0; - padding: 0; -`; - -MostWatchedOl.defaultProps = { - role: 'list', - 'data-e2e': 'most-watched-ol', -}; - const RelatedContentPromoList = ({ promoItems, dir, @@ -48,7 +37,7 @@ const RelatedContentPromoList = ({ group4: 8, group5: 8, }} - as={isMediaContent ? MostWatchedOl : StoryPromoUl} + as={StoryPromoUl} enableGelGutters > {promoItems.map((item, index) => ( From 9fa67951145f34ee59789ce0f14d37304d7c1bb8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CLilyL0u=E2=80=9D?= Date: Tue, 18 Jun 2024 10:51:39 +0100 Subject: [PATCH 28/51] remove getMostWatchedUrl --- .../getUrlHelpers/getMostWatchedUrl/index.js | 14 ---------- .../getMostWatchedUrl/index.test.js | 28 ------------------- 2 files changed, 42 deletions(-) delete mode 100644 src/app/lib/utilities/getUrlHelpers/getMostWatchedUrl/index.js delete mode 100644 src/app/lib/utilities/getUrlHelpers/getMostWatchedUrl/index.test.js diff --git a/src/app/lib/utilities/getUrlHelpers/getMostWatchedUrl/index.js b/src/app/lib/utilities/getUrlHelpers/getMostWatchedUrl/index.js deleted file mode 100644 index 5e61170e92f..00000000000 --- a/src/app/lib/utilities/getUrlHelpers/getMostWatchedUrl/index.js +++ /dev/null @@ -1,14 +0,0 @@ -const getBaseUrl = env => - ({ - live: 'https://www.bbc.com/', - test: 'https://www.test.bbc.com/', - })[env] || '/'; - -const getExtension = env => (env !== 'local' ? '.json' : ''); - -const getMostWatchedEndpoint = ({ service, variant, env }) => - variant - ? `${getBaseUrl(env)}${service}/mostwatched/${variant}${getExtension(env)}` - : `${getBaseUrl(env)}${service}/mostwatched${getExtension(env)}`; - -export default getMostWatchedEndpoint; diff --git a/src/app/lib/utilities/getUrlHelpers/getMostWatchedUrl/index.test.js b/src/app/lib/utilities/getUrlHelpers/getMostWatchedUrl/index.test.js deleted file mode 100644 index e17565e6de3..00000000000 --- a/src/app/lib/utilities/getUrlHelpers/getMostWatchedUrl/index.test.js +++ /dev/null @@ -1,28 +0,0 @@ -import getMostWatchedEndpoint from '.'; - -describe('getMostWatchEndpoint', () => { - it('should not return base path nor append .json when env is local', () => { - expect(getMostWatchedEndpoint({ service: 'hausa', env: 'local' })).toBe( - '/hausa/mostwatched', - ); - }); - it('should return test base path and append .json when env is test', () => { - expect(getMostWatchedEndpoint({ service: 'hausa', env: 'test' })).toBe( - 'https://www.test.bbc.com/hausa/mostwatched.json', - ); - }); - it('should return live base path and append .json when env is live', () => { - expect(getMostWatchedEndpoint({ service: 'hausa', env: 'live' })).toBe( - 'https://www.bbc.com/hausa/mostwatched.json', - ); - }); - it('should return correct path when passed service and variant', () => { - expect( - getMostWatchedEndpoint({ - service: 'serbian', - variant: 'lat', - env: 'local', - }), - ).toBe('/serbian/mostwatched/lat'); - }); -}); From 4249b1fa8b7f4412320b3c35a94a9f27ea2eb8b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CLilyL0u=E2=80=9D?= Date: Tue, 18 Jun 2024 10:54:10 +0100 Subject: [PATCH 29/51] remove most watched from MAP --- src/app/pages/MediaAssetPage/MediaAssetPage.jsx | 11 ----------- src/app/pages/MediaAssetPage/index.test.jsx | 6 +----- 2 files changed, 1 insertion(+), 16 deletions(-) diff --git a/src/app/pages/MediaAssetPage/MediaAssetPage.jsx b/src/app/pages/MediaAssetPage/MediaAssetPage.jsx index 0833fb42498..b2399a73d1d 100644 --- a/src/app/pages/MediaAssetPage/MediaAssetPage.jsx +++ b/src/app/pages/MediaAssetPage/MediaAssetPage.jsx @@ -22,7 +22,6 @@ import ComscoreAnalytics from '#containers/ComscoreAnalytics'; import CpsAssetMediaPlayer from '#containers/CpsAssetMediaPlayer'; import Blocks from '#containers/Blocks'; import CpsRelatedContent from '#containers/CpsRelatedContent'; -import MostWatchedContainer from '#containers/MostWatched'; import fauxHeadline from '#containers/FauxHeadline'; import visuallyHiddenHeadline from '#containers/VisuallyHiddenHeadline'; import { @@ -114,7 +113,6 @@ const MediaAssetPage = ({ pageData }) => { const firstPublished = getFirstPublished(pageData); const lastPublished = getLastPublished(pageData); const aboutTags = getAboutTags(pageData); - const mostWatchedData = path(['mostWatched'], pageData); // ATI const { atiAnalytics } = metadata; @@ -187,10 +185,6 @@ const MediaAssetPage = ({ pageData }) => { } `; - const MostWatchedWrapper = styled.div` - padding-bottom: ${GEL_SPACING_QUAD}; - `; - return ( <> { )} - {!isAmp && ( - - - - )} ); }; diff --git a/src/app/pages/MediaAssetPage/index.test.jsx b/src/app/pages/MediaAssetPage/index.test.jsx index 056ff94bf90..f2abd770b7b 100644 --- a/src/app/pages/MediaAssetPage/index.test.jsx +++ b/src/app/pages/MediaAssetPage/index.test.jsx @@ -9,7 +9,6 @@ import { RequestContextProvider } from '#contexts/RequestContext'; import { ToggleContextProvider } from '#contexts/ToggleContext'; import mapPageData from '#data/pidgin/cpsAssets/23248703-LEGACY.json'; import uzbekPageData from '#data/uzbek/cpsAssets/sport-23248721.json'; -import mostWatchedData from '#data/pidgin/mostWatched/index.json'; import igboPageData from '#data/igbo/cpsAssets/afirika-23252735'; import getInitialData from '#app/routes/cpsAsset/getInitialData'; import { ServiceContextProvider } from '../../contexts/ServiceContext'; @@ -115,13 +114,10 @@ const pageType = 'cpsAsset'; fetchMock.config.overwriteRoutes = true; -const mockInitialData = ({ service, assetId, pageData, mostWatched }) => { +const mockInitialData = ({ service, assetId, pageData }) => { fetch.mockResponse( JSON.stringify({ ...pageData, - secondaryData: { - mostWatched: mostWatched || mostWatchedData, - }, }), ); From 42ce65be3558cbdac0f03c2ac6e4c63a870046cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CLilyL0u=E2=80=9D?= Date: Tue, 18 Jun 2024 10:55:12 +0100 Subject: [PATCH 30/51] delete processMostWatched --- .../routes/utils/processMostWatched/index.js | 63 ----------- .../utils/processMostWatched/index.test.js | 104 ------------------ 2 files changed, 167 deletions(-) delete mode 100644 src/app/routes/utils/processMostWatched/index.js delete mode 100644 src/app/routes/utils/processMostWatched/index.test.js diff --git a/src/app/routes/utils/processMostWatched/index.js b/src/app/routes/utils/processMostWatched/index.js deleted file mode 100644 index 234f468077a..00000000000 --- a/src/app/routes/utils/processMostWatched/index.js +++ /dev/null @@ -1,63 +0,0 @@ -import pathOr from 'ramda/src/pathOr'; -import nodeLogger from '#lib/logger.node'; -import { MOST_WATCHED_PROCESS_ERROR } from '#lib/logger.const'; -import filterPopularStaleData from '#app/lib/utilities/filterPopularStaleData'; - -const logger = nodeLogger(__filename); - -const processToggles = ({ toggles, service, path, page }) => { - try { - const { mostPopularMedia, mostPopularMediaPage } = toggles; - const { enabled, value } = - page === 'mostWatched' ? mostPopularMediaPage : mostPopularMedia; - - const numberOfItems = parseInt(value, 10); - - if (Number.isNaN(numberOfItems)) { - throw Error('Invalid number of items'); - } - - return { enabled, numberOfItems }; - } catch (e) { - logger.warn(MOST_WATCHED_PROCESS_ERROR, { - message: e.message, - service, - path, - }); - return { enabled: false, numberOfItems: 10 }; - } -}; - -const processMostWatched = ({ data, path, service, toggles, page }) => { - if (!data || !data.mostWatched) { - return data; - } - - const { mostWatched } = data; - const { enabled, numberOfItems } = processToggles({ - toggles, - service, - path, - page, - }); - const filteredData = filterPopularStaleData({ - data: mostWatched, - path, - service, - popularType: 'mostWatched', - }); - - if (!filteredData || !enabled) { - return { ...data, mostWatched: null }; - } - - const records = pathOr([], ['records'], filteredData); - const processedRecords = records - .slice(0, numberOfItems) - .sort((a, b) => a.rank - b.rank) - .map(item => item.promo); - - return { ...data, mostWatched: processedRecords }; -}; - -export default processMostWatched; diff --git a/src/app/routes/utils/processMostWatched/index.test.js b/src/app/routes/utils/processMostWatched/index.test.js deleted file mode 100644 index 4676793dd18..00000000000 --- a/src/app/routes/utils/processMostWatched/index.test.js +++ /dev/null @@ -1,104 +0,0 @@ -import nodeLogger from '#testHelpers/loggerMock'; -import mostWatchedData from '#data/pidgin/mostWatched/index.json'; -import { - MOST_WATCHED_PROCESS_ERROR, - MOST_WATCHED_STALE_DATA, -} from '#lib/logger.const'; -import processMostWatched from '.'; -import isLive from '../../../lib/utilities/isLive'; - -jest.mock('../../../lib/utilities/isLive', () => - jest.fn().mockImplementation(() => false), -); - -const toggles = { - mostPopularMedia: { enabled: true, value: '5' }, -}; - -describe('processMostWatched', () => { - beforeEach(() => { - jest.clearAllMocks(); - }); - - it('should return null if data is null', () => { - const data = processMostWatched({ - data: null, - path: 'some-path', - toggles, - service: 'pidgin', - }); - expect(data).toBe(null); - }); - - it('should return null if data is stale on live environment', () => { - isLive.mockImplementationOnce(() => true); - const staleData = { - lastRecordTimeStamp: '2019-11-06T16:28:00Z', - generated: '2019-11-06T17:05:17.981Z', - records: ['some records'], - }; - const processedData = processMostWatched({ - data: { mostWatched: staleData }, - path: 'some-path', - toggles, - service: 'pidgin', - }); - expect(processedData.mostWatched).toBe(null); - expect(nodeLogger.warn).toHaveBeenCalledWith(MOST_WATCHED_STALE_DATA, { - message: 'lastRecordTimeStamp is greater than 60min', - service: 'pidgin', - path: 'some-path', - generated: '2019-11-06T17:05:17.981Z', - lastRecordTimeStamp: '2019-11-06T16:28:00Z', - isAmp: undefined, - }); - }); - - it('should return the proper number of items in the right format', () => { - const { records } = mostWatchedData; - const expectedData = { - mostWatched: records.slice(0, 5).map(item => item.promo), - }; - - const data = processMostWatched({ - data: { mostWatched: mostWatchedData }, - path: 'some-path', - toggles, - service: 'pidgin', - }); - expect(data.mostWatched.length).toBe(5); - expect(data).toEqual(expectedData); - }); - - it('should log a message when the toggle is invalid', () => { - const data = processMostWatched({ - data: { mostWatched: mostWatchedData }, - path: 'some-path', - toggles: { invalidToggle: true }, - service: 'pidgin', - }); - expect(data.mostWatched).toBe(null); - expect(nodeLogger.warn).toHaveBeenCalledWith(MOST_WATCHED_PROCESS_ERROR, { - message: "Cannot read properties of undefined (reading 'enabled')", - service: 'pidgin', - path: 'some-path', - }); - }); - - it('should log a message when the toggle value is not a number', () => { - const data = processMostWatched({ - data: { mostWatched: mostWatchedData }, - path: 'some-path', - toggles: { - mostPopularMedia: { enabled: true, value: '{numberOfItems: 5}' }, - }, - service: 'pidgin', - }); - expect(data.mostWatched).toBe(null); - expect(nodeLogger.warn).toHaveBeenCalledWith(MOST_WATCHED_PROCESS_ERROR, { - message: 'Invalid number of items', - service: 'pidgin', - path: 'some-path', - }); - }); -}); From 84b9e0bce80ee848ffba9b2352915ebeb7a807e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CLilyL0u=E2=80=9D?= Date: Tue, 18 Jun 2024 10:56:51 +0100 Subject: [PATCH 31/51] remove most watched references in storyPage --- src/app/components/Image/index.tsx | 3 ++- .../StoryPage/fixtureData/russianPageDataWithoutPromo.json | 3 +-- src/app/pages/StoryPage/index.test.jsx | 1 - 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/src/app/components/Image/index.tsx b/src/app/components/Image/index.tsx index cd51024927d..383cef0f473 100644 --- a/src/app/components/Image/index.tsx +++ b/src/app/components/Image/index.tsx @@ -101,6 +101,7 @@ const Image = ({ }; const imgSrcSet = getImgSrcSet(); const imgSizes = getImgSizes(); + console.log('src in Image before helmet', src); return ( <> {preload && ( @@ -108,7 +109,7 @@ const Image = ({ diff --git a/src/app/pages/StoryPage/fixtureData/russianPageDataWithoutPromo.json b/src/app/pages/StoryPage/fixtureData/russianPageDataWithoutPromo.json index 8f09beed9e8..e48211d7a69 100644 --- a/src/app/pages/StoryPage/fixtureData/russianPageDataWithoutPromo.json +++ b/src/app/pages/StoryPage/fixtureData/russianPageDataWithoutPromo.json @@ -1467,8 +1467,7 @@ "timestamp": 1686828420248 } ] - }, - "mostWatched": null + } } }, "contentType": "application/json; charset=utf-8" diff --git a/src/app/pages/StoryPage/index.test.jsx b/src/app/pages/StoryPage/index.test.jsx index 604488f0557..3662ff1aaa8 100644 --- a/src/app/pages/StoryPage/index.test.jsx +++ b/src/app/pages/StoryPage/index.test.jsx @@ -207,7 +207,6 @@ describe('Story Page', () => { topStories: null, features: null, mostRead: pidginMostReadData, - mostWatched: null, }, }, }), From 452511888d1c0d1d30ee1cd86d1f32345a214828 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CLilyL0u=E2=80=9D?= Date: Tue, 18 Jun 2024 10:58:25 +0100 Subject: [PATCH 32/51] remove most watched from getInitialData --- src/app/routes/article/getInitialData/index.test.ts | 1 - src/app/routes/article/getInitialData/index.ts | 4 +--- src/app/routes/cpsAsset/getInitialData/index.js | 10 ---------- src/app/routes/frontPage/getInitialData/index.test.js | 1 - 4 files changed, 1 insertion(+), 15 deletions(-) diff --git a/src/app/routes/article/getInitialData/index.test.ts b/src/app/routes/article/getInitialData/index.test.ts index 419734dad1e..fa07bcb2f8a 100644 --- a/src/app/routes/article/getInitialData/index.test.ts +++ b/src/app/routes/article/getInitialData/index.test.ts @@ -297,6 +297,5 @@ describe('Articles - BFF Fetching', () => { expect(pageData.secondaryColumn).toHaveProperty('features'); expect(pageData.secondaryColumn).toHaveProperty('latestMedia'); expect(pageData).toHaveProperty('mostRead'); - expect(pageData).toHaveProperty('mostWatched'); }); }); diff --git a/src/app/routes/article/getInitialData/index.ts b/src/app/routes/article/getInitialData/index.ts index 8e5cca7e426..262118143b3 100644 --- a/src/app/routes/article/getInitialData/index.ts +++ b/src/app/routes/article/getInitialData/index.ts @@ -71,8 +71,7 @@ export default async ({ } } - const { topStories, features, latestMedia, mostRead, mostWatched } = - secondaryData; + const { topStories, features, latestMedia, mostRead } = secondaryData; const response = { status, @@ -84,7 +83,6 @@ export default async ({ latestMedia, }, mostRead, - mostWatched, ...(wsojData && wsojData), }, }; diff --git a/src/app/routes/cpsAsset/getInitialData/index.js b/src/app/routes/cpsAsset/getInitialData/index.js index f3998df79c6..3587998688b 100644 --- a/src/app/routes/cpsAsset/getInitialData/index.js +++ b/src/app/routes/cpsAsset/getInitialData/index.js @@ -25,7 +25,6 @@ import addMpuBlock from './addMpuBlock'; import addAnalyticsCounterName from './addAnalyticsCounterName'; import convertToOptimoBlocks from './convertToOptimoBlocks'; import processUnavailableMedia from './processUnavailableMedia'; -import processMostWatched from '../../utils/processMostWatched'; import getErrorStatusCode from '../../utils/fetchPageData/utils/getErrorStatusCode'; import isListWithLink from '../../utils/isListWithLink'; import addIndexToBlockGroups from '../../utils/sharedDataTransformers/addIndexToBlockGroups'; @@ -128,14 +127,6 @@ export default async ({ throw handleError('CPS asset data fetch error', status); } - const { mostWatched } = processMostWatched({ - data: article, - service: derivedService, - path: derivedPath, - toggles, - page: pageType, - }); - const { topStories, features } = secondaryColumn; const { mostRead } = article; @@ -154,7 +145,6 @@ export default async ({ features, }, mostRead, - mostWatched, recommendations, }, }; diff --git a/src/app/routes/frontPage/getInitialData/index.test.js b/src/app/routes/frontPage/getInitialData/index.test.js index 89fbd209ff0..7ac639dfb4f 100644 --- a/src/app/routes/frontPage/getInitialData/index.test.js +++ b/src/app/routes/frontPage/getInitialData/index.test.js @@ -27,7 +27,6 @@ const bffFrontPageJson = { topStories: null, features: null, mostRead: null, - mostWatched: null, }, }, }; From 69350d343384b9e46adf169897fdf9d0aca351a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CLilyL0u=E2=80=9D?= Date: Tue, 18 Jun 2024 11:00:16 +0100 Subject: [PATCH 33/51] remove most watched from routes tests --- src/app/routes/index.test.jsx | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/app/routes/index.test.jsx b/src/app/routes/index.test.jsx index b85a564eb6e..c78ed52468a 100644 --- a/src/app/routes/index.test.jsx +++ b/src/app/routes/index.test.jsx @@ -22,7 +22,6 @@ import storyPageRecommendationsData from '#data/mundo/recommendations/index.json import onDemandTvPageJson from '#data/pashto/bbc_pashto_tv/tv_programmes/w13xttn4.json'; import articlePageJson from '#data/persian/articles/c4vlle3q337o.json'; import storyPageMostReadData from '#data/pidgin/mostRead/index.json'; -import mostWatchedData from '#data/pidgin/mostWatched/index.json'; import frontPageJson from '#data/serbian/frontpage/lat.json'; import sportArticlePageJson from '#data/sport/judo/articles/cj80n66ddnko.json'; import mediaAssetPageJson from '#data/yoruba/cpsAssets/media-23256797.json'; @@ -308,7 +307,6 @@ describe('Routes', () => { fetch.mockResponse( JSON.stringify({ ...mediaAssetPageJson, - secondaryData: { mostWatched: mostWatchedData }, }), ); @@ -339,7 +337,6 @@ describe('Routes', () => { fetch.mockResponse( JSON.stringify({ ...legacyMediaAssetPage, - secondaryData: { mostWatched: mostWatchedData }, }), ); From 66934f86e629003eccd3fc3d47af7e5de6f7092a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CLilyL0u=E2=80=9D?= Date: Tue, 18 Jun 2024 11:01:28 +0100 Subject: [PATCH 34/51] remove most watched from regex --- src/app/routes/utils/regex/index.js | 3 --- src/app/routes/utils/regex/index.test.js | 17 ----------------- src/app/routes/utils/regex/utils/index.js | 5 ----- 3 files changed, 25 deletions(-) diff --git a/src/app/routes/utils/regex/index.js b/src/app/routes/utils/regex/index.js index 9033f19e577..18f9232ad09 100644 --- a/src/app/routes/utils/regex/index.js +++ b/src/app/routes/utils/regex/index.js @@ -19,7 +19,6 @@ import { getLegacyAssetRegex, getMostReadPageRegex, getMostReadDataRegex, - getMostWatchedDataRegex, getSecondaryColumnDataRegex, getRecommendationsDataRegex, getAfricaEyeTVPageRegex, @@ -74,8 +73,6 @@ export const legacyAssetPageDataPath = `${legacyAssetPagePath}.json`; export const mostReadPagePath = getMostReadPageRegex(allServices); export const mostReadDataRegexPath = getMostReadDataRegex(allServices); -export const mostWatchedDataPath = getMostWatchedDataRegex(allServices); - export const secondaryColumnDataRegexPath = getSecondaryColumnDataRegex(allServices); diff --git a/src/app/routes/utils/regex/index.test.js b/src/app/routes/utils/regex/index.test.js index a4b43ed2cf5..6b5dad1a3db 100644 --- a/src/app/routes/utils/regex/index.test.js +++ b/src/app/routes/utils/regex/index.test.js @@ -14,7 +14,6 @@ import { legacyAssetPagePath, liveRadioPath, mostReadDataRegexPath, - mostWatchedDataPath, onDemandRadioPath, onDemandTvPath, podcastBrandPath, @@ -325,22 +324,6 @@ describe('mostReadDataRegexPath', () => { shouldNotMatchInvalidRoutes(invalidRoutes, mostReadDataRegexPath); }); -describe('mostWatchedDataPath', () => { - const validRoutes = [ - '/news/mostwatched.json', - '/zhongwen/mostwatched/simp.json', - ]; - shouldMatchValidRoutes(validRoutes, mostWatchedDataPath); - - const invalidRoutes = [ - '/foobar/mostwatched.json', - '/foobar/mostwatched', - '/foobar/mostwatched.js', - '/news/trad/mostwatched.json', - ]; - shouldNotMatchInvalidRoutes(invalidRoutes, mostWatchedDataPath); -}); - describe('secondaryColumnDataRegexPath', () => { const validRoutes = [ '/mundo/sty-secondary-column.json', diff --git a/src/app/routes/utils/regex/utils/index.js b/src/app/routes/utils/regex/utils/index.js index 5e310520402..01ea784f6e9 100644 --- a/src/app/routes/utils/regex/utils/index.js +++ b/src/app/routes/utils/regex/utils/index.js @@ -174,11 +174,6 @@ export const getMostReadDataRegex = services => { return `/:service(${serviceRegex})/mostread:variant(${variantRegex})?.json`; }; -export const getMostWatchedDataRegex = services => { - const serviceRegex = getServiceRegex(services); - return `/:service(${serviceRegex})/mostwatched:variant(${variantRegex})?.json`; -}; - export const getSecondaryColumnDataRegex = services => { const serviceRegex = getServiceRegex(services); return `/:service(${serviceRegex})/sty-secondary-column:variant(${variantRegex})?.json`; From 761b6dfefc2c1cb0193ff3a7ba52feef64fb842a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CLilyL0u=E2=80=9D?= Date: Tue, 18 Jun 2024 11:02:11 +0100 Subject: [PATCH 35/51] remove most watched models types --- src/app/models/types/serviceConfig.ts | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/app/models/types/serviceConfig.ts b/src/app/models/types/serviceConfig.ts index 7feca3d0fc8..50734a0ebdf 100644 --- a/src/app/models/types/serviceConfig.ts +++ b/src/app/models/types/serviceConfig.ts @@ -89,7 +89,6 @@ export type ServiceConfig = { }; translations: Translations; mostRead: MostRead; - mostWatched: MostWatched; radioSchedule?: RadioSchedule; recommendations?: Recommendations; footer: Footer; @@ -136,12 +135,6 @@ export interface MostRead { hasMostRead: boolean; } -export interface MostWatched { - header: string; - numberOfItems?: number; - hasMostWatched: boolean; -} - export interface RadioSchedule { hasRadioSchedule?: boolean; frequenciesPageUrl?: string; From bf0623a772ec9b2b4dbe9726b7ce664097758eb6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CLilyL0u=E2=80=9D?= Date: Tue, 18 Jun 2024 11:03:26 +0100 Subject: [PATCH 36/51] remove most watched from constructDataFilePath --- .../local/constructDataFilePath/index.js | 1 - .../local/constructDataFilePath/index.test.js | 18 ------------------ 2 files changed, 19 deletions(-) diff --git a/src/server/local/constructDataFilePath/index.js b/src/server/local/constructDataFilePath/index.js index 1aaff010eb4..c49d00eb5d6 100644 --- a/src/server/local/constructDataFilePath/index.js +++ b/src/server/local/constructDataFilePath/index.js @@ -15,7 +15,6 @@ export default ({ case 'frontpage': case 'homePage': case 'mostRead': - case 'mostWatched': case 'secondaryColumn': case 'recommendations': dataPath = `${variant || 'index'}.json`; diff --git a/src/server/local/constructDataFilePath/index.test.js b/src/server/local/constructDataFilePath/index.test.js index 903af2bea33..b9f5f0fa2f1 100644 --- a/src/server/local/constructDataFilePath/index.test.js +++ b/src/server/local/constructDataFilePath/index.test.js @@ -49,24 +49,6 @@ describe('constructDataFilePath', () => { }); }); - describe('Most Watched', () => { - it('should construct correct data file path', () => { - expect( - constructDataFilePath({ pageType: 'mostWatched', service: 'igbo' }), - ).toEqual(`${DATA_PATH}/data/igbo/mostWatched/index.json`); - }); - - it('should construct correct data file path with variant', () => { - expect( - constructDataFilePath({ - pageType: 'mostWatched', - service: 'ukchina', - variant: '/simp', - }), - ).toEqual(`${DATA_PATH}/data/ukchina/mostWatched/simp.json`); - }); - }); - describe('Secondary Column', () => { it('should construct correct data file path', () => { expect( From de18a20ccd8561096ebf31f9109e5a1a37263007 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CLilyL0u=E2=80=9D?= Date: Tue, 18 Jun 2024 11:05:00 +0100 Subject: [PATCH 37/51] remove most watched from server local --- .vscode/settings.json | 3 +++ src/server/local/index.test.js | 3 --- 2 files changed, 3 insertions(+), 3 deletions(-) create mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 00000000000..6f3a2913e19 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "liveServer.settings.port": 5501 +} \ No newline at end of file diff --git a/src/server/local/index.test.js b/src/server/local/index.test.js index 76cd1be038c..73f44a86493 100644 --- a/src/server/local/index.test.js +++ b/src/server/local/index.test.js @@ -24,9 +24,6 @@ describe('Local Server', () => { ${'Migrated Home Page'} | ${'/pidgin.json'} | ${'/pidgin/homePage/index.json'} ${'Home Page'} | ${'/kyrgyz/tipohome.json'} | ${'/kyrgyz/homePage/index.json'} ${'Most Read'} | ${'/pidgin/mostread.json'} | ${'/pidgin/mostRead/index.json'} - ${'Most Read with variant'} | ${'/zhongwen/mostread/trad.json'} | ${'/zhongwen/mostRead/trad.json'} - ${'Most Watched'} | ${'/pidgin/mostwatched.json'} | ${'/pidgin/mostWatched/index.json'} - ${'Most Watched with variant'} | ${'/zhongwen/mostwatched/trad.json'} | ${'/zhongwen/mostWatched/trad.json'} ${'On Demand Radio Brand'} | ${'/korean/bbc_korean_radio/w3ct0kn5.json'} | ${'/korean/bbc_korean_radio/w3ct0kn5.json'} ${'On Demand Radio Episode'} | ${'/afaanoromoo/bbc_afaanoromoo_radio/programmes/w13xttnw.json'} | ${'/afaanoromoo/bbc_afaanoromoo_radio/w13xttnw.json'} ${'On Demand TV Brand'} | ${'/pashto/bbc_pashto_tv/tv/w172xcldhhrhmcf.json'} | ${'/pashto/bbc_pashto_tv/tv/w172xcldhhrhmcf.json'} From e85d3f9f4fd65e969f4d1c8c9c930c4646fa7edd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CLilyL0u=E2=80=9D?= Date: Tue, 18 Jun 2024 11:13:04 +0100 Subject: [PATCH 38/51] replace mostwatched with mostread in fetch data path test --- src/app/routes/utils/fetchPageData/index.test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/routes/utils/fetchPageData/index.test.js b/src/app/routes/utils/fetchPageData/index.test.js index db9166abe67..d26ea2901f2 100644 --- a/src/app/routes/utils/fetchPageData/index.test.js +++ b/src/app/routes/utils/fetchPageData/index.test.js @@ -13,8 +13,8 @@ import fetchPageData from '.'; const expectedBaseUrl = 'http://localhost'; const requestedPathname = '/path/to/asset'; -const fullTestPath = 'https://test.bbc.com/hausa/mostwatched.json'; -const fullLivePath = 'https://www.bbc.com/hausa/mostwatched.json'; +const fullTestPath = 'https://test.bbc.com/hausa/mostread.json'; +const fullLivePath = 'https://www.bbc.com/hausa/mostread.json'; const expectedUrl = `${expectedBaseUrl}${requestedPathname}.json`; const pageType = 'Fetch Page Data'; const requestOrigin = 'Jest Test'; From 597ed7ba7f7f275fc682fc74a464953a758ba2ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CLilyL0u=E2=80=9D?= Date: Tue, 18 Jun 2024 11:21:07 +0100 Subject: [PATCH 39/51] remove most watched from filterPopularStaleData --- src/app/lib/logger.const.js | 4 --- .../utilities/filterPopularStaleData/index.js | 16 ++-------- .../filterPopularStaleData/index.test.js | 31 +------------------ 3 files changed, 4 insertions(+), 47 deletions(-) diff --git a/src/app/lib/logger.const.js b/src/app/lib/logger.const.js index 59f50859395..79677238891 100644 --- a/src/app/lib/logger.const.js +++ b/src/app/lib/logger.const.js @@ -74,10 +74,6 @@ const logCodes = { MOST_READ_DATA_INCOMPLETE: 'most_read_data_incomplete', MOST_READ_STALE_DATA: 'most_read_stale_data', - // Most Watched - MOST_WATCHED_PROCESS_ERROR: 'most_watched_process_error', - MOST_WATCHED_STALE_DATA: 'most_watched_stale_data', - // Include INCLUDE_ERROR: 'include_error', INCLUDE_FETCH_ERROR: 'include_fetch_error', diff --git a/src/app/lib/utilities/filterPopularStaleData/index.js b/src/app/lib/utilities/filterPopularStaleData/index.js index c37226c59da..63ae3052281 100644 --- a/src/app/lib/utilities/filterPopularStaleData/index.js +++ b/src/app/lib/utilities/filterPopularStaleData/index.js @@ -1,26 +1,16 @@ import nodeLogger from '#lib/logger.node'; -import { - MOST_WATCHED_STALE_DATA, - MOST_READ_STALE_DATA, -} from '#lib/logger.const'; +import { MOST_READ_STALE_DATA } from '#lib/logger.const'; import { isDataStale } from './isDataStale'; import isLive from '../isLive'; const logger = nodeLogger(__filename); -const filterPopularStaleData = ({ - data, - isAmp, - path = undefined, - service, - popularType, -}) => { +const filterPopularStaleData = ({ data, isAmp, path = undefined, service }) => { if (!data) { return null; } // The local/test data for most read/watched renders fixture data, so the data is stale - const logEvent = - popularType === 'mostRead' ? MOST_READ_STALE_DATA : MOST_WATCHED_STALE_DATA; + const logEvent = MOST_READ_STALE_DATA; // Do not show most read if lastRecordUpdated is greater than 60min as this means PopAPI has failed twice // in succession. This suggests ATI may be having issues, hence risk of stale data. diff --git a/src/app/lib/utilities/filterPopularStaleData/index.test.js b/src/app/lib/utilities/filterPopularStaleData/index.test.js index e998798bb24..4d7088d4bd2 100644 --- a/src/app/lib/utilities/filterPopularStaleData/index.test.js +++ b/src/app/lib/utilities/filterPopularStaleData/index.test.js @@ -1,8 +1,5 @@ import nodeLogger from '#testHelpers/loggerMock'; -import { - MOST_READ_STALE_DATA, - MOST_WATCHED_STALE_DATA, -} from '#lib/logger.const'; +import { MOST_READ_STALE_DATA } from '#lib/logger.const'; import filterPopularStaleData from '.'; import isLive from '../isLive'; @@ -19,7 +16,6 @@ describe('filterPopularStaleData', () => { }; const filteredData = filterPopularStaleData({ data: staleData, - popularType: 'mostRead', service: 'pidgin', isAmp: true, }); @@ -33,30 +29,6 @@ describe('filterPopularStaleData', () => { expect(filteredData).toBe(null); }); - it('should log MOST_WATCHED_STALE_DATA when lastRecordTimestamp is greater than 60min on live environment', () => { - isLive.mockImplementationOnce(() => true); - - const staleData = { - lastRecordTimeStamp: '2019-11-06T16:28:00Z', - generated: '2019-11-06T17:05:17.981Z', - records: ['some records'], - }; - const filteredData = filterPopularStaleData({ - data: staleData, - popularType: 'mostWatched', - service: 'pidgin', - isAmp: true, - }); - expect(nodeLogger.warn).toHaveBeenCalledWith(MOST_WATCHED_STALE_DATA, { - lastRecordTimeStamp: '2019-11-06T16:28:00Z', - message: 'lastRecordTimeStamp is greater than 60min', - generated: '2019-11-06T17:05:17.981Z', - service: 'pidgin', - isAmp: true, - }); - expect(filteredData).toBe(null); - }); - describe('non-live environment is always fresh', () => { const originalAppEnv = process.env.SIMORGH_APP_ENV; @@ -79,7 +51,6 @@ describe('filterPopularStaleData', () => { }; const filteredData = filterPopularStaleData({ data: staleData, - popularType: 'mostWatched', service: 'pidgin', isAmp: true, }); From 136d3cd71fc4dea0e8068330e63615158adc6561 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CLilyL0u=E2=80=9D?= Date: Tue, 18 Jun 2024 11:21:36 +0100 Subject: [PATCH 40/51] remove missed server local line of most watched path --- src/server/local/index.js | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/src/server/local/index.js b/src/server/local/index.js index ad8496fcc97..36ba9c07a70 100644 --- a/src/server/local/index.js +++ b/src/server/local/index.js @@ -9,7 +9,6 @@ import { tipoHomeDataPath, legacyAssetPageDataPath, mostReadDataRegexPath, - mostWatchedDataPath, onDemandRadioDataPath, onDemandTvDataPath, topicDataPath, @@ -102,16 +101,6 @@ export default server => { sendDataFile(res, dataFilePath, next); }) - .get(mostWatchedDataPath, async ({ params }, res, next) => { - const { service, variant } = params; - const dataFilePath = constructDataFilePath({ - pageType: 'mostWatched', - service, - variant, - }); - - sendDataFile(res, dataFilePath, next); - }) .get(liveRadioDataPath, async ({ params }, res, next) => { const { service, masterBrand } = params; From 6b7752f6e853c96575953033441ae0e458e10d34 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CLilyL0u=E2=80=9D?= Date: Tue, 18 Jun 2024 11:26:46 +0100 Subject: [PATCH 41/51] remove most watched from services config --- src/app/lib/config/services/afaanoromoo.ts | 5 ----- src/app/lib/config/services/afrique.ts | 5 ----- src/app/lib/config/services/amharic.ts | 5 ----- src/app/lib/config/services/arabic.ts | 5 ----- src/app/lib/config/services/archive.ts | 5 ----- src/app/lib/config/services/azeri.ts | 5 ----- src/app/lib/config/services/bengali.ts | 5 ----- src/app/lib/config/services/burmese.ts | 5 ----- src/app/lib/config/services/cymrufyw.ts | 5 ----- src/app/lib/config/services/gahuza.ts | 5 ----- src/app/lib/config/services/gujarati.ts | 5 ----- src/app/lib/config/services/hausa.ts | 5 ----- src/app/lib/config/services/hindi.ts | 5 ----- src/app/lib/config/services/igbo.ts | 5 ----- src/app/lib/config/services/indonesia.ts | 5 ----- src/app/lib/config/services/japanese.ts | 5 ----- src/app/lib/config/services/korean.ts | 5 ----- src/app/lib/config/services/kyrgyz.ts | 5 ----- src/app/lib/config/services/marathi.ts | 5 ----- src/app/lib/config/services/mundo.ts | 5 ----- src/app/lib/config/services/naidheachdan.ts | 5 ----- src/app/lib/config/services/nepali.ts | 5 ----- src/app/lib/config/services/news.ts | 5 ----- src/app/lib/config/services/newsround.ts | 5 ----- src/app/lib/config/services/pashto.ts | 5 ----- src/app/lib/config/services/persian.ts | 5 ----- src/app/lib/config/services/pidgin.ts | 5 ----- src/app/lib/config/services/portuguese.ts | 5 ----- src/app/lib/config/services/punjabi.ts | 5 ----- src/app/lib/config/services/russian.ts | 5 ----- src/app/lib/config/services/scotland.ts | 5 ----- src/app/lib/config/services/serbian.ts | 10 ---------- src/app/lib/config/services/sinhala.ts | 5 ----- src/app/lib/config/services/somali.ts | 5 ----- src/app/lib/config/services/sport.ts | 5 ----- src/app/lib/config/services/swahili.ts | 5 ----- src/app/lib/config/services/tamil.ts | 5 ----- src/app/lib/config/services/telugu.ts | 5 ----- src/app/lib/config/services/thai.ts | 5 ----- src/app/lib/config/services/tigrinya.ts | 5 ----- src/app/lib/config/services/turkce.ts | 5 ----- src/app/lib/config/services/ukchina.ts | 10 ---------- src/app/lib/config/services/ukrainian.ts | 5 ----- src/app/lib/config/services/urdu.ts | 5 ----- src/app/lib/config/services/uzbek.ts | 5 ----- src/app/lib/config/services/vietnamese.ts | 5 ----- src/app/lib/config/services/ws.ts | 5 ----- src/app/lib/config/services/yoruba.ts | 5 ----- src/app/lib/config/services/zhongwen.ts | 10 ---------- 49 files changed, 260 deletions(-) diff --git a/src/app/lib/config/services/afaanoromoo.ts b/src/app/lib/config/services/afaanoromoo.ts index 9c24f926c6d..da559996842 100644 --- a/src/app/lib/config/services/afaanoromoo.ts +++ b/src/app/lib/config/services/afaanoromoo.ts @@ -267,11 +267,6 @@ export const service: DefaultServiceConfig = { numberOfItems: 10, hasMostRead: true, }, - mostWatched: { - header: 'Hedduu kan ilaalaman', - numberOfItems: 5, - hasMostWatched: true, - }, radioSchedule: { hasRadioSchedule: true, header: 'Dhaggeeffadhaa', diff --git a/src/app/lib/config/services/afrique.ts b/src/app/lib/config/services/afrique.ts index 7f70e146ffe..a2ec617ed3b 100644 --- a/src/app/lib/config/services/afrique.ts +++ b/src/app/lib/config/services/afrique.ts @@ -270,11 +270,6 @@ export const service: DefaultServiceConfig = { numberOfItems: 5, hasMostRead: true, }, - mostWatched: { - header: 'Les plus vus', - numberOfItems: 10, - hasMostWatched: true, - }, radioSchedule: { hasRadioSchedule: true, header: 'Journaux et Magazines', diff --git a/src/app/lib/config/services/amharic.ts b/src/app/lib/config/services/amharic.ts index ba6ecce0d8f..d67081e442d 100644 --- a/src/app/lib/config/services/amharic.ts +++ b/src/app/lib/config/services/amharic.ts @@ -255,11 +255,6 @@ export const service: DefaultServiceConfig = { numberOfItems: 10, hasMostRead: true, }, - mostWatched: { - header: 'በብዛት የታዩ', - numberOfItems: 5, - hasMostWatched: true, - }, radioSchedule: { hasRadioSchedule: true, header: 'ያድምጡ', diff --git a/src/app/lib/config/services/arabic.ts b/src/app/lib/config/services/arabic.ts index 5dda580a918..8e5b1fb8302 100644 --- a/src/app/lib/config/services/arabic.ts +++ b/src/app/lib/config/services/arabic.ts @@ -283,11 +283,6 @@ export const service: DefaultServiceConfig = { numberOfItems: 10, hasMostRead: true, }, - mostWatched: { - header: 'الأكثر مشاهدة', - numberOfItems: 10, - hasMostWatched: true, - }, radioSchedule: { hasRadioSchedule: true, frequenciesPageUrl: '/arabic/tv-and-radio-57895092', diff --git a/src/app/lib/config/services/archive.ts b/src/app/lib/config/services/archive.ts index 05e8729d9f3..d846e86d9d5 100644 --- a/src/app/lib/config/services/archive.ts +++ b/src/app/lib/config/services/archive.ts @@ -206,11 +206,6 @@ export const service: DefaultServiceConfig = { hasMostRead: false, numberOfItems: 10, }, - mostWatched: { - header: 'Most watched', - numberOfItems: 10, - hasMostWatched: false, - }, radioSchedule: { hasRadioSchedule: false, }, diff --git a/src/app/lib/config/services/azeri.ts b/src/app/lib/config/services/azeri.ts index 012281567bb..1f1cbb55281 100644 --- a/src/app/lib/config/services/azeri.ts +++ b/src/app/lib/config/services/azeri.ts @@ -261,11 +261,6 @@ export const service: DefaultServiceConfig = { numberOfItems: 5, hasMostRead: true, }, - mostWatched: { - header: 'Ən çox baxılanlar', - numberOfItems: 10, - hasMostWatched: true, - }, radioSchedule: { hasRadioSchedule: false, }, diff --git a/src/app/lib/config/services/bengali.ts b/src/app/lib/config/services/bengali.ts index 21caf7bc1d7..1f4fe7ff83b 100644 --- a/src/app/lib/config/services/bengali.ts +++ b/src/app/lib/config/services/bengali.ts @@ -264,11 +264,6 @@ export const service: DefaultServiceConfig = { numberOfItems: 5, hasMostRead: true, }, - mostWatched: { - header: 'সবচেয়ে বেশি দেখা হয়েছে', - numberOfItems: 10, - hasMostWatched: true, - }, radioSchedule: { hasRadioSchedule: true, header: 'রেডিও অনুষ্ঠান', diff --git a/src/app/lib/config/services/burmese.ts b/src/app/lib/config/services/burmese.ts index c991633d10b..e7c3aa3edd6 100644 --- a/src/app/lib/config/services/burmese.ts +++ b/src/app/lib/config/services/burmese.ts @@ -294,11 +294,6 @@ export const service: DefaultServiceConfig = { numberOfItems: 5, hasMostRead: true, }, - mostWatched: { - header: 'လူကြည့်အများဆုံး', - numberOfItems: 5, - hasMostWatched: true, - }, radioSchedule: { hasRadioSchedule: true, header: 'နောက်ဆုံးလွှင့် အစီအစဉ်များ', diff --git a/src/app/lib/config/services/cymrufyw.ts b/src/app/lib/config/services/cymrufyw.ts index 9040d6232cd..54eac8a4ca0 100644 --- a/src/app/lib/config/services/cymrufyw.ts +++ b/src/app/lib/config/services/cymrufyw.ts @@ -246,11 +246,6 @@ export const service: DefaultServiceConfig = { numberOfItems: 5, hasMostRead: false, }, - mostWatched: { - header: 'Mwyaf poblogaidd', - numberOfItems: 5, - hasMostWatched: false, - }, radioSchedule: { hasRadioSchedule: false, }, diff --git a/src/app/lib/config/services/gahuza.ts b/src/app/lib/config/services/gahuza.ts index 75a09652755..87be6f22f7c 100644 --- a/src/app/lib/config/services/gahuza.ts +++ b/src/app/lib/config/services/gahuza.ts @@ -282,11 +282,6 @@ export const service: DefaultServiceConfig = { numberOfItems: 5, hasMostRead: true, }, - mostWatched: { - header: 'Ivyarabwe cane', - numberOfItems: 10, - hasMostWatched: true, - }, radioSchedule: { hasRadioSchedule: true, header: 'Ibiganiro bishya', diff --git a/src/app/lib/config/services/gujarati.ts b/src/app/lib/config/services/gujarati.ts index 6869220d3e7..8ecb4fe67f1 100644 --- a/src/app/lib/config/services/gujarati.ts +++ b/src/app/lib/config/services/gujarati.ts @@ -267,11 +267,6 @@ export const service: DefaultServiceConfig = { numberOfItems: 10, hasMostRead: true, }, - mostWatched: { - header: 'સૌથી વધુ જોવાયેલ', - numberOfItems: 10, - hasMostWatched: true, - }, radioSchedule: { hasRadioSchedule: false, }, diff --git a/src/app/lib/config/services/hausa.ts b/src/app/lib/config/services/hausa.ts index 6c263307ed0..c3d2c7b8432 100644 --- a/src/app/lib/config/services/hausa.ts +++ b/src/app/lib/config/services/hausa.ts @@ -287,11 +287,6 @@ export const service: DefaultServiceConfig = { numberOfItems: 5, hasMostRead: true, }, - mostWatched: { - header: 'Wadanda aka fi kallo', - numberOfItems: 10, - hasMostWatched: true, - }, radioSchedule: { hasRadioSchedule: true, frequenciesPageLabel: 'Mitocinmu da sauko da sautin labarai', diff --git a/src/app/lib/config/services/hindi.ts b/src/app/lib/config/services/hindi.ts index c71ad0c6ccd..d2d58ecc70d 100644 --- a/src/app/lib/config/services/hindi.ts +++ b/src/app/lib/config/services/hindi.ts @@ -300,11 +300,6 @@ export const service: DefaultServiceConfig = { numberOfItems: 10, hasMostRead: true, }, - mostWatched: { - header: 'सबसे ज्यादा देखे गए', - numberOfItems: 10, - hasMostWatched: true, - }, radioSchedule: { hasRadioSchedule: false, }, diff --git a/src/app/lib/config/services/igbo.ts b/src/app/lib/config/services/igbo.ts index 12465b815db..e1a3b1b6c20 100644 --- a/src/app/lib/config/services/igbo.ts +++ b/src/app/lib/config/services/igbo.ts @@ -267,11 +267,6 @@ export const service: DefaultServiceConfig = { numberOfItems: 5, hasMostRead: true, }, - mostWatched: { - header: 'Elelere', - numberOfItems: 10, - hasMostWatched: true, - }, radioSchedule: { hasRadioSchedule: false, }, diff --git a/src/app/lib/config/services/indonesia.ts b/src/app/lib/config/services/indonesia.ts index 70c25bfc8c9..11607607f7a 100644 --- a/src/app/lib/config/services/indonesia.ts +++ b/src/app/lib/config/services/indonesia.ts @@ -289,11 +289,6 @@ export const service: DefaultServiceConfig = { numberOfItems: 5, hasMostRead: true, }, - mostWatched: { - header: 'Terpopuler', - numberOfItems: 5, - hasMostWatched: true, - }, radioSchedule: { hasRadioSchedule: true, header: 'Siaran radio', diff --git a/src/app/lib/config/services/japanese.ts b/src/app/lib/config/services/japanese.ts index f92d7770cf0..be3e4897860 100644 --- a/src/app/lib/config/services/japanese.ts +++ b/src/app/lib/config/services/japanese.ts @@ -250,11 +250,6 @@ export const service: DefaultServiceConfig = { numberOfItems: 10, hasMostRead: true, }, - mostWatched: { - header: 'よく見られています', - numberOfItems: 10, - hasMostWatched: true, - }, radioSchedule: { hasRadioSchedule: false, }, diff --git a/src/app/lib/config/services/korean.ts b/src/app/lib/config/services/korean.ts index b58a8455d2a..e58bb74ac9a 100644 --- a/src/app/lib/config/services/korean.ts +++ b/src/app/lib/config/services/korean.ts @@ -262,11 +262,6 @@ export const service: DefaultServiceConfig = { numberOfItems: 10, hasMostRead: true, }, - mostWatched: { - header: '인기 콘텐츠', - numberOfItems: 10, - hasMostWatched: true, - }, radioSchedule: { hasRadioSchedule: true, header: 'BBC 코리아 라디오', diff --git a/src/app/lib/config/services/kyrgyz.ts b/src/app/lib/config/services/kyrgyz.ts index 681dc618973..af9473db888 100644 --- a/src/app/lib/config/services/kyrgyz.ts +++ b/src/app/lib/config/services/kyrgyz.ts @@ -269,11 +269,6 @@ export const service: DefaultServiceConfig = { numberOfItems: 5, hasMostRead: true, }, - mostWatched: { - header: 'Эң көп көрүлгөндөр', - numberOfItems: 5, - hasMostWatched: true, - }, radioSchedule: { hasRadioSchedule: false, }, diff --git a/src/app/lib/config/services/marathi.ts b/src/app/lib/config/services/marathi.ts index 05126a1f7a6..7415366168a 100644 --- a/src/app/lib/config/services/marathi.ts +++ b/src/app/lib/config/services/marathi.ts @@ -279,11 +279,6 @@ export const service: DefaultServiceConfig = { numberOfItems: 10, hasMostRead: true, }, - mostWatched: { - header: 'सर्वाधिक पाहिलेले', - numberOfItems: 10, - hasMostWatched: true, - }, radioSchedule: { hasRadioSchedule: false, }, diff --git a/src/app/lib/config/services/mundo.ts b/src/app/lib/config/services/mundo.ts index c99c249d45f..b2fbdd6b292 100644 --- a/src/app/lib/config/services/mundo.ts +++ b/src/app/lib/config/services/mundo.ts @@ -284,11 +284,6 @@ export const service: DefaultServiceConfig = { numberOfItems: 10, hasMostRead: true, }, - mostWatched: { - header: 'Más vistos', - numberOfItems: 10, - hasMostWatched: true, - }, radioSchedule: { hasRadioSchedule: false, }, diff --git a/src/app/lib/config/services/naidheachdan.ts b/src/app/lib/config/services/naidheachdan.ts index be898247a7d..e11492466a0 100644 --- a/src/app/lib/config/services/naidheachdan.ts +++ b/src/app/lib/config/services/naidheachdan.ts @@ -248,11 +248,6 @@ export const service: DefaultServiceConfig = { numberOfItems: 5, hasMostRead: false, }, - mostWatched: { - header: 'As motha leughte', - numberOfItems: 10, - hasMostWatched: false, - }, radioSchedule: { hasRadioSchedule: false, }, diff --git a/src/app/lib/config/services/nepali.ts b/src/app/lib/config/services/nepali.ts index fc1b458d3bf..96cb346b392 100644 --- a/src/app/lib/config/services/nepali.ts +++ b/src/app/lib/config/services/nepali.ts @@ -263,11 +263,6 @@ export const service: DefaultServiceConfig = { numberOfItems: 5, hasMostRead: true, }, - mostWatched: { - header: 'धेरै हेरिएको', - numberOfItems: 10, - hasMostWatched: true, - }, radioSchedule: { hasRadioSchedule: true, header: 'पछिल्लो कार्यक्रम सुन्नुहोस्', diff --git a/src/app/lib/config/services/news.ts b/src/app/lib/config/services/news.ts index 332d01ddf9e..d57c88cd065 100644 --- a/src/app/lib/config/services/news.ts +++ b/src/app/lib/config/services/news.ts @@ -209,11 +209,6 @@ export const service: DefaultServiceConfig = { numberOfItems: 10, hasMostRead: true, }, - mostWatched: { - header: 'Most watched', - numberOfItems: 10, - hasMostWatched: false, - }, radioSchedule: { hasRadioSchedule: false, }, diff --git a/src/app/lib/config/services/newsround.ts b/src/app/lib/config/services/newsround.ts index f7056367da5..4fd03710a57 100644 --- a/src/app/lib/config/services/newsround.ts +++ b/src/app/lib/config/services/newsround.ts @@ -207,11 +207,6 @@ export const service: DefaultServiceConfig = { numberOfItems: 10, hasMostRead: false, }, - mostWatched: { - header: 'Most watched', - numberOfItems: 10, - hasMostWatched: false, - }, radioSchedule: { hasRadioSchedule: false, }, diff --git a/src/app/lib/config/services/pashto.ts b/src/app/lib/config/services/pashto.ts index 62912bd3de0..63ba8d26721 100644 --- a/src/app/lib/config/services/pashto.ts +++ b/src/app/lib/config/services/pashto.ts @@ -275,11 +275,6 @@ export const service: DefaultServiceConfig = { numberOfItems: 10, hasMostRead: true, }, - mostWatched: { - header: 'تر ټولو ډېر لیدل شوی', - numberOfItems: 10, - hasMostWatched: true, - }, radioSchedule: { hasRadioSchedule: true, frequenciesPageUrl: '/pashto/institutional/2012/03/000001_frequencies', diff --git a/src/app/lib/config/services/persian.ts b/src/app/lib/config/services/persian.ts index f7d36d1b70a..fe1eb10e551 100644 --- a/src/app/lib/config/services/persian.ts +++ b/src/app/lib/config/services/persian.ts @@ -305,11 +305,6 @@ export const service: DefaultServiceConfig = { numberOfItems: 10, hasMostRead: true, }, - mostWatched: { - header: 'پربیننده ترین', - numberOfItems: 10, - hasMostWatched: true, - }, radioSchedule: { hasRadioSchedule: true, header: 'برنامه‌های رادیو', diff --git a/src/app/lib/config/services/pidgin.ts b/src/app/lib/config/services/pidgin.ts index 1222c51d488..74e54e6a5e0 100644 --- a/src/app/lib/config/services/pidgin.ts +++ b/src/app/lib/config/services/pidgin.ts @@ -258,11 +258,6 @@ export const service: DefaultServiceConfig = { numberOfItems: 10, hasMostRead: true, }, - mostWatched: { - header: 'De one we dem don look', - numberOfItems: 10, - hasMostWatched: true, - }, radioSchedule: { hasRadioSchedule: false, }, diff --git a/src/app/lib/config/services/portuguese.ts b/src/app/lib/config/services/portuguese.ts index 893032dab83..d6bedb1b854 100644 --- a/src/app/lib/config/services/portuguese.ts +++ b/src/app/lib/config/services/portuguese.ts @@ -286,11 +286,6 @@ export const service: DefaultServiceConfig = { numberOfItems: 10, hasMostRead: true, }, - mostWatched: { - header: 'Mais assistido', - numberOfItems: 10, - hasMostWatched: true, - }, radioSchedule: { hasRadioSchedule: false, }, diff --git a/src/app/lib/config/services/punjabi.ts b/src/app/lib/config/services/punjabi.ts index db38a1715a2..8c2d8faf121 100644 --- a/src/app/lib/config/services/punjabi.ts +++ b/src/app/lib/config/services/punjabi.ts @@ -262,11 +262,6 @@ export const service: DefaultServiceConfig = { numberOfItems: 10, hasMostRead: true, }, - mostWatched: { - header: 'ਸਭ ਤੋਂ ਵੱਧ ਦੇਖਿਆ', - numberOfItems: 10, - hasMostWatched: true, - }, radioSchedule: { hasRadioSchedule: false, }, diff --git a/src/app/lib/config/services/russian.ts b/src/app/lib/config/services/russian.ts index c96d0d2cbde..ee22af1246c 100644 --- a/src/app/lib/config/services/russian.ts +++ b/src/app/lib/config/services/russian.ts @@ -289,11 +289,6 @@ export const service: DefaultServiceConfig = { numberOfItems: 10, hasMostRead: true, }, - mostWatched: { - header: 'Самое популярное видео', - numberOfItems: 10, - hasMostWatched: true, - }, podcastPromo: { title: 'Подкаст', brandTitle: 'Что это было?', diff --git a/src/app/lib/config/services/scotland.ts b/src/app/lib/config/services/scotland.ts index bdbe843577f..dd89b22fcd7 100644 --- a/src/app/lib/config/services/scotland.ts +++ b/src/app/lib/config/services/scotland.ts @@ -207,11 +207,6 @@ export const service: DefaultServiceConfig = { numberOfItems: 5, hasMostRead: false, }, - mostWatched: { - header: 'Most watched', - numberOfItems: 10, - hasMostWatched: false, - }, radioSchedule: { hasRadioSchedule: false, }, diff --git a/src/app/lib/config/services/serbian.ts b/src/app/lib/config/services/serbian.ts index 2e3e649f38b..d8295a505b8 100644 --- a/src/app/lib/config/services/serbian.ts +++ b/src/app/lib/config/services/serbian.ts @@ -105,11 +105,6 @@ export const service: SerbianConfig = { numberOfItems: 10, hasMostRead: true, }, - mostWatched: { - header: 'Najgledanije', - numberOfItems: 10, - hasMostWatched: true, - }, navigation: [ { title: 'Početna strana', @@ -434,11 +429,6 @@ export const service: SerbianConfig = { numberOfItems: 10, hasMostRead: true, }, - mostWatched: { - header: 'Најгледаније', - numberOfItems: 5, - hasMostWatched: true, - }, navigation: [ { title: 'Почетна страна', diff --git a/src/app/lib/config/services/sinhala.ts b/src/app/lib/config/services/sinhala.ts index 1462b074b0a..0e0e7e12fbe 100644 --- a/src/app/lib/config/services/sinhala.ts +++ b/src/app/lib/config/services/sinhala.ts @@ -261,11 +261,6 @@ export const service: DefaultServiceConfig = { numberOfItems: 5, hasMostRead: true, }, - mostWatched: { - header: 'වැඩියෙන්ම නැරඹූ', - numberOfItems: 10, - hasMostWatched: true, - }, radioSchedule: { hasRadioSchedule: false, }, diff --git a/src/app/lib/config/services/somali.ts b/src/app/lib/config/services/somali.ts index baa7c076be3..8bcf01b50d4 100644 --- a/src/app/lib/config/services/somali.ts +++ b/src/app/lib/config/services/somali.ts @@ -271,11 +271,6 @@ export const service: DefaultServiceConfig = { numberOfItems: 5, hasMostRead: true, }, - mostWatched: { - header: 'Ugu daawasho badan', - numberOfItems: 10, - hasMostWatched: true, - }, radioSchedule: { hasRadioSchedule: true, header: 'Barnaamijyada Idaacadda', diff --git a/src/app/lib/config/services/sport.ts b/src/app/lib/config/services/sport.ts index 102f4e0d49c..a732ac9d7b6 100644 --- a/src/app/lib/config/services/sport.ts +++ b/src/app/lib/config/services/sport.ts @@ -206,11 +206,6 @@ export const service: DefaultServiceConfig = { numberOfItems: 10, hasMostRead: false, }, - mostWatched: { - header: 'Most watched', - numberOfItems: 10, - hasMostWatched: false, - }, radioSchedule: { hasRadioSchedule: false, }, diff --git a/src/app/lib/config/services/swahili.ts b/src/app/lib/config/services/swahili.ts index 6299280b84d..b04c491f1c3 100644 --- a/src/app/lib/config/services/swahili.ts +++ b/src/app/lib/config/services/swahili.ts @@ -269,11 +269,6 @@ export const service: DefaultServiceConfig = { numberOfItems: 5, hasMostRead: true, }, - mostWatched: { - header: 'Iliyoangaliwa zaidi', - numberOfItems: 10, - hasMostWatched: true, - }, radioSchedule: { hasRadioSchedule: true, header: 'Vipindi vya Redio', diff --git a/src/app/lib/config/services/tamil.ts b/src/app/lib/config/services/tamil.ts index db133e64725..ad27f1d5e77 100644 --- a/src/app/lib/config/services/tamil.ts +++ b/src/app/lib/config/services/tamil.ts @@ -280,11 +280,6 @@ export const service: DefaultServiceConfig = { numberOfItems: 10, hasMostRead: true, }, - mostWatched: { - header: 'அதிகம் பார்க்கப்பட்டது', - numberOfItems: 10, - hasMostWatched: true, - }, radioSchedule: { hasRadioSchedule: false, }, diff --git a/src/app/lib/config/services/telugu.ts b/src/app/lib/config/services/telugu.ts index f09cd61796c..6609c7b1f0d 100644 --- a/src/app/lib/config/services/telugu.ts +++ b/src/app/lib/config/services/telugu.ts @@ -270,11 +270,6 @@ export const service: DefaultServiceConfig = { numberOfItems: 10, hasMostRead: true, }, - mostWatched: { - header: 'ఎక్కువగా చూసినవి', - numberOfItems: 10, - hasMostWatched: true, - }, radioSchedule: { hasRadioSchedule: false, }, diff --git a/src/app/lib/config/services/thai.ts b/src/app/lib/config/services/thai.ts index c9ed28596b4..ad195b5ddc2 100644 --- a/src/app/lib/config/services/thai.ts +++ b/src/app/lib/config/services/thai.ts @@ -254,11 +254,6 @@ export const service: DefaultServiceConfig = { numberOfItems: 5, hasMostRead: true, }, - mostWatched: { - header: 'มียอดชมมากที่สุด', - numberOfItems: 10, - hasMostWatched: true, - }, radioSchedule: { hasRadioSchedule: false, }, diff --git a/src/app/lib/config/services/tigrinya.ts b/src/app/lib/config/services/tigrinya.ts index ee1f6b6ca82..20ccf8282aa 100644 --- a/src/app/lib/config/services/tigrinya.ts +++ b/src/app/lib/config/services/tigrinya.ts @@ -243,11 +243,6 @@ export const service: DefaultServiceConfig = { numberOfItems: 10, hasMostRead: true, }, - mostWatched: { - header: 'ብብዝሒ ዝተራእየ', - numberOfItems: 2, - hasMostWatched: false, - }, radioSchedule: { hasRadioSchedule: true, header: 'ስምዑ', diff --git a/src/app/lib/config/services/turkce.ts b/src/app/lib/config/services/turkce.ts index b6ad3b5eda6..3482a1a0a29 100644 --- a/src/app/lib/config/services/turkce.ts +++ b/src/app/lib/config/services/turkce.ts @@ -263,11 +263,6 @@ export const service: DefaultServiceConfig = { numberOfItems: 10, hasMostRead: true, }, - mostWatched: { - header: 'En fazla izlenen içerik', - numberOfItems: 5, - hasMostWatched: true, - }, radioSchedule: { hasRadioSchedule: false, }, diff --git a/src/app/lib/config/services/ukchina.ts b/src/app/lib/config/services/ukchina.ts index 8d44ece5af9..317dd2a653a 100644 --- a/src/app/lib/config/services/ukchina.ts +++ b/src/app/lib/config/services/ukchina.ts @@ -92,11 +92,6 @@ export const service: ChineseConfig = { numberOfItems: 10, hasMostRead: true, }, - mostWatched: { - header: '热播', - numberOfItems: 5, - hasMostWatched: false, - }, radioSchedule: { hasRadioSchedule: false, }, @@ -359,11 +354,6 @@ export const service: ChineseConfig = { numberOfItems: 10, hasMostRead: true, }, - mostWatched: { - header: '熱播', - numberOfItems: 5, - hasMostWatched: false, - }, recommendations: { hasStoryRecommendations: false, }, diff --git a/src/app/lib/config/services/ukrainian.ts b/src/app/lib/config/services/ukrainian.ts index 743240b49d4..ead682480d9 100644 --- a/src/app/lib/config/services/ukrainian.ts +++ b/src/app/lib/config/services/ukrainian.ts @@ -279,11 +279,6 @@ const baseServiceConfig = { numberOfItems: 10, hasMostRead: true, }, - mostWatched: { - header: 'Найпопулярніше', - numberOfItems: 5, - hasMostWatched: false, - }, radioSchedule: { hasRadioSchedule: false, }, diff --git a/src/app/lib/config/services/urdu.ts b/src/app/lib/config/services/urdu.ts index 133b3c9d0f6..3f36e23bb21 100644 --- a/src/app/lib/config/services/urdu.ts +++ b/src/app/lib/config/services/urdu.ts @@ -284,11 +284,6 @@ export const service: DefaultServiceConfig = { numberOfItems: 10, hasMostRead: true, }, - mostWatched: { - header: 'سب سے زیادہ دیکھی گئی', - numberOfItems: 10, - hasMostWatched: true, - }, radioSchedule: { hasRadioSchedule: true, header: 'ایف ایم بلیٹن', diff --git a/src/app/lib/config/services/uzbek.ts b/src/app/lib/config/services/uzbek.ts index 8f5b50ace2d..9f8ee181286 100644 --- a/src/app/lib/config/services/uzbek.ts +++ b/src/app/lib/config/services/uzbek.ts @@ -277,11 +277,6 @@ const defaultCyrillicConfig = { numberOfItems: 5, hasMostRead: true, }, - mostWatched: { - header: 'Энг кўп кўрилган', - numberOfItems: 5, - hasMostWatched: true, - }, footer: { trustProjectLink: { href: 'https://www.bbc.com/uzbek/institutional-50220995', diff --git a/src/app/lib/config/services/vietnamese.ts b/src/app/lib/config/services/vietnamese.ts index f27335e3629..ef30e4a3d9c 100644 --- a/src/app/lib/config/services/vietnamese.ts +++ b/src/app/lib/config/services/vietnamese.ts @@ -262,11 +262,6 @@ export const service: DefaultServiceConfig = { numberOfItems: 10, hasMostRead: true, }, - mostWatched: { - header: 'Nghe/Xem nhiều nhất', - numberOfItems: 10, - hasMostWatched: true, - }, radioSchedule: { hasRadioSchedule: false, }, diff --git a/src/app/lib/config/services/ws.ts b/src/app/lib/config/services/ws.ts index 332d01ddf9e..d57c88cd065 100644 --- a/src/app/lib/config/services/ws.ts +++ b/src/app/lib/config/services/ws.ts @@ -209,11 +209,6 @@ export const service: DefaultServiceConfig = { numberOfItems: 10, hasMostRead: true, }, - mostWatched: { - header: 'Most watched', - numberOfItems: 10, - hasMostWatched: false, - }, radioSchedule: { hasRadioSchedule: false, }, diff --git a/src/app/lib/config/services/yoruba.ts b/src/app/lib/config/services/yoruba.ts index dea7edb869b..77a6fb4f576 100644 --- a/src/app/lib/config/services/yoruba.ts +++ b/src/app/lib/config/services/yoruba.ts @@ -252,11 +252,6 @@ export const service: DefaultServiceConfig = { numberOfItems: 10, hasMostRead: true, }, - mostWatched: { - header: 'Èyí tí a wò jùlọ', - numberOfItems: 10, - hasMostWatched: true, - }, radioSchedule: { hasRadioSchedule: false, }, diff --git a/src/app/lib/config/services/zhongwen.ts b/src/app/lib/config/services/zhongwen.ts index 1c910492d12..34f7735a22a 100644 --- a/src/app/lib/config/services/zhongwen.ts +++ b/src/app/lib/config/services/zhongwen.ts @@ -113,11 +113,6 @@ export const service: ZhongwenConfig = { numberOfItems: 10, hasMostRead: true, }, - mostWatched: { - header: '热播', - numberOfItems: 10, - hasMostWatched: true, - }, navigation: [ { title: '主页', @@ -413,11 +408,6 @@ export const service: ZhongwenConfig = { numberOfItems: 10, hasMostRead: true, }, - mostWatched: { - header: '熱播', - numberOfItems: 10, - hasMostWatched: true, - }, navigation: [ { title: '主頁', From 10175c09dda85512e34019729057efc603515a97 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CLilyL0u=E2=80=9D?= Date: Tue, 18 Jun 2024 11:27:46 +0100 Subject: [PATCH 42/51] remove accidental image commit --- src/app/components/Image/index.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/app/components/Image/index.tsx b/src/app/components/Image/index.tsx index 383cef0f473..cd51024927d 100644 --- a/src/app/components/Image/index.tsx +++ b/src/app/components/Image/index.tsx @@ -101,7 +101,6 @@ const Image = ({ }; const imgSrcSet = getImgSrcSet(); const imgSizes = getImgSizes(); - console.log('src in Image before helmet', src); return ( <> {preload && ( @@ -109,7 +108,7 @@ const Image = ({ From 0d2dabf53fbcdb7e126f03a30ce574c6e4e0e404 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CLilyL0u=E2=80=9D?= Date: Tue, 18 Jun 2024 11:28:34 +0100 Subject: [PATCH 43/51] remove most watched toggles --- src/app/lib/config/toggles/liveConfig.js | 3 --- src/app/lib/config/toggles/localConfig.js | 3 --- src/app/lib/config/toggles/testConfig.js | 3 --- 3 files changed, 9 deletions(-) diff --git a/src/app/lib/config/toggles/liveConfig.js b/src/app/lib/config/toggles/liveConfig.js index a41365ea18b..963795badc1 100644 --- a/src/app/lib/config/toggles/liveConfig.js +++ b/src/app/lib/config/toggles/liveConfig.js @@ -23,9 +23,6 @@ export default { mostRead: { enabled: true, }, - mostWatched: { - enabled: false, - }, navOnArticles: { enabled: true, }, diff --git a/src/app/lib/config/toggles/localConfig.js b/src/app/lib/config/toggles/localConfig.js index c12c7b35f6e..f2c3782cf21 100644 --- a/src/app/lib/config/toggles/localConfig.js +++ b/src/app/lib/config/toggles/localConfig.js @@ -26,9 +26,6 @@ export default { mostRead: { enabled: true, }, - mostWatched: { - enabled: true, - }, navOnArticles: { enabled: true, }, diff --git a/src/app/lib/config/toggles/testConfig.js b/src/app/lib/config/toggles/testConfig.js index 1c5a84a0dc4..8f0baa8e715 100644 --- a/src/app/lib/config/toggles/testConfig.js +++ b/src/app/lib/config/toggles/testConfig.js @@ -23,9 +23,6 @@ export default { mostRead: { enabled: true, }, - mostWatched: { - enabled: true, - }, navOnArticles: { enabled: true, }, From d06321b311cac92dbae1e6f5dfe6e23744c1fa98 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CLilyL0u=E2=80=9D?= Date: Tue, 18 Jun 2024 11:38:18 +0100 Subject: [PATCH 44/51] clean up unused vars --- src/app/pages/MediaAssetPage/MediaAssetPage.jsx | 2 +- src/app/routes/cpsAsset/getInitialData/index.js | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/app/pages/MediaAssetPage/MediaAssetPage.jsx b/src/app/pages/MediaAssetPage/MediaAssetPage.jsx index b2399a73d1d..3149dbcbec1 100644 --- a/src/app/pages/MediaAssetPage/MediaAssetPage.jsx +++ b/src/app/pages/MediaAssetPage/MediaAssetPage.jsx @@ -80,7 +80,7 @@ const StyledImageWrapper = styled.div` const MediaAssetPage = ({ pageData }) => { const { brandName, showRelatedTopics } = useContext(ServiceContext); - const { canonicalLink, isAmp } = useContext(RequestContext); + const { canonicalLink } = useContext(RequestContext); const isLegacyMediaAssetPage = () => canonicalLink.split('/').length > 7; const title = path(['promo', 'headlines', 'headline'], pageData); diff --git a/src/app/routes/cpsAsset/getInitialData/index.js b/src/app/routes/cpsAsset/getInitialData/index.js index 3587998688b..96e84b058ea 100644 --- a/src/app/routes/cpsAsset/getInitialData/index.js +++ b/src/app/routes/cpsAsset/getInitialData/index.js @@ -102,7 +102,6 @@ export default async ({ path: pathname, service, variant, - pageType, toggles, isCaf, isAmp, From ab98c3477f5cd16328b556b96b6ac1297acd77b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CLilyL0u=E2=80=9D?= Date: Tue, 18 Jun 2024 12:51:46 +0100 Subject: [PATCH 45/51] some snapshot updates --- .../__snapshots__/withContexts.test.jsx.snap | 2 +- .../lib/config/toggles/__snapshots__/index.test.js.snap | 9 --------- 2 files changed, 1 insertion(+), 10 deletions(-) diff --git a/src/app/legacy/containers/PageHandlers/__snapshots__/withContexts.test.jsx.snap b/src/app/legacy/containers/PageHandlers/__snapshots__/withContexts.test.jsx.snap index 1a4526a9e3a..95f2cfe0932 100644 --- a/src/app/legacy/containers/PageHandlers/__snapshots__/withContexts.test.jsx.snap +++ b/src/app/legacy/containers/PageHandlers/__snapshots__/withContexts.test.jsx.snap @@ -3,7 +3,7 @@ exports[`withContexts HOC should return all context providers 1`] = `
- {"lang":"en-GB","articleAuthor":"https://www.facebook.com/bbcnews","articleTimestampPrefix":"Updated","articleTimestampSuffix":"","atiAnalyticsAppName":"news","atiAnalyticsProducerId":"64","chartbeatDomain":"bbc.co.uk","brandName":"BBC News","product":"BBC News","defaultImage":"https://static.files.bbci.co.uk/ws/simorgh-assets/public/news/images/metadata/poster-1024x576.png","defaultImageAltText":"BBC News","dir":"ltr","externalLinkText":", external","imageCaptionOffscreenText":"Image caption, ","videoCaptionOffscreenText":"Video caption, ","audioCaptionOffscreenText":"Audio caption","defaultCaptionOffscreenText":"Caption, ","imageCopyrightOffscreenText":"Image source, ","locale":"en_GB","datetimeLocale":"en-gb","service":"news","serviceName":"News","languageName":"English","twitterCreator":"@BBCNews","twitterSite":"@BBCNews","noBylinesPolicy":"https://www.bbc.com/news/help-41670342#authorexpertise","publishingPrinciples":"https://www.bbc.com/news/help-41670342","isTrustProjectParticipant":true,"script":{"atlas":{"groupA":{"fontSize":78,"lineHeight":84},"groupB":{"fontSize":96,"lineHeight":104},"groupD":{"fontSize":140,"lineHeight":148}},"elephant":{"groupA":{"fontSize":60,"lineHeight":64},"groupB":{"fontSize":78,"lineHeight":84},"groupD":{"fontSize":116,"lineHeight":124}},"imperial":{"groupA":{"fontSize":50,"lineHeight":54},"groupB":{"fontSize":64,"lineHeight":72},"groupD":{"fontSize":96,"lineHeight":104}},"royal":{"groupA":{"fontSize":40,"lineHeight":44},"groupB":{"fontSize":52,"lineHeight":60},"groupD":{"fontSize":76,"lineHeight":84}},"foolscap":{"groupA":{"fontSize":32,"lineHeight":36},"groupB":{"fontSize":40,"lineHeight":44},"groupD":{"fontSize":56,"lineHeight":60}},"canon":{"groupA":{"fontSize":28,"lineHeight":32},"groupB":{"fontSize":32,"lineHeight":36},"groupD":{"fontSize":44,"lineHeight":48}},"trafalgar":{"groupA":{"fontSize":20,"lineHeight":24},"groupB":{"fontSize":24,"lineHeight":28},"groupD":{"fontSize":32,"lineHeight":36}},"paragon":{"groupA":{"fontSize":20,"lineHeight":24},"groupB":{"fontSize":22,"lineHeight":26},"groupD":{"fontSize":28,"lineHeight":32}},"doublePica":{"groupA":{"fontSize":18,"lineHeight":22},"groupB":{"fontSize":20,"lineHeight":24},"groupD":{"fontSize":24,"lineHeight":28}},"greatPrimer":{"groupA":{"fontSize":18,"lineHeight":22},"groupB":{"fontSize":18,"lineHeight":22},"groupD":{"fontSize":20,"lineHeight":24}},"bodyCopy":{"groupA":{"fontSize":15,"lineHeight":20},"groupB":{"fontSize":16,"lineHeight":22},"groupD":{"fontSize":16,"lineHeight":22}},"pica":{"groupA":{"fontSize":15,"lineHeight":20},"groupB":{"fontSize":16,"lineHeight":20},"groupD":{"fontSize":16,"lineHeight":20}},"longPrimer":{"groupA":{"fontSize":15,"lineHeight":18},"groupB":{"fontSize":15,"lineHeight":18},"groupD":{"fontSize":14,"lineHeight":18}},"brevier":{"groupA":{"fontSize":14,"lineHeight":18},"groupB":{"fontSize":14,"lineHeight":18},"groupD":{"fontSize":13,"lineHeight":16}},"minion":{"groupA":{"fontSize":12,"lineHeight":16},"groupB":{"fontSize":12,"lineHeight":16},"groupD":{"fontSize":12,"lineHeight":16}}},"manifestPath":"/articles/manifest.json","frontPageTitle":"Home","showAdPlaceholder":false,"showRelatedTopics":true,"translations":{"ads":{"advertisementLabel":"Advertisement"},"home":"Home","currentPage":"Current page","skipLinkText":"Skip to content","relatedContent":"Related content","relatedTopics":"Related topics","navMenuText":"Sections","mediaAssetPage":{"mediaPlayer":"Media player","audioPlayer":"Audio player","videoPlayer":"Video player"},"liveExperiencePage":{"liveLabel":"Live","liveCoverage":"Live Coverage","breaking":"Breaking","postedAt":"Posted at","summary":"Summary"},"gist":"At a glance","error":{"404":{"statusCode":"404","title":"Page cannot be found","message":"Sorry, we're unable to bring you the page you're looking for. Please try:","solutions":["Double checking the url","Hitting the refresh button in your browser","Searching for this page using the BBC search bar"],"callToActionFirst":"Alternatively, please visit the ","callToActionLinkText":"BBC News homepage.","callToActionLast":"","callToActionLinkUrl":"https://www.bbc.com/news"},"500":{"statusCode":"500","title":"Internal server error","message":"Sorry, we're currently unable to bring you the page you're looking for. Please try:","solutions":["Hitting the refresh button in your browser","Coming back again later"],"callToActionFirst":"Alternatively, please visit the ","callToActionLinkText":"BBC News homepage.","callToActionLast":"","callToActionLinkUrl":"https://www.bbc.com/news"}},"consentBanner":{"privacy":{"title":"We've updated our Privacy and Cookies Policy","description":{"uk":{"first":"We've made some important changes to our Privacy and Cookies Policy and we want you to know what this means for you and your data.","linkText":null,"last":null,"linkUrl":null},"international":{"first":"We've made some important changes to our Privacy and Cookies Policy and we want you to know what this means for you and your data.","linkText":null,"last":null,"linkUrl":null}},"accept":"OK","reject":"Find out what's changed","rejectUrl":"https://www.bbc.co.uk/usingthebbc/your-data-matters"},"cookie":{"amp":{"accept":"Accept data collection and continue","reject":"Reject data collection and continue","initial":{"title":"Let us know you agree to data collection on AMP","description":{"first":"We and our partners use technologies, such as ","linkText":"cookies","last":", and collect browsing data to give you the best online experience and to personalise the content and advertising shown to you. Please let us know if you agree.","linkUrl":"https://www.bbc.co.uk/usingthebbc/cookies/what-do-i-need-to-know-about-cookies/"},"manage":"Manage my settings"},"manage":{"title":"Manage consent settings on AMP pages","description":{"para1":"These settings apply to AMP pages only. You may be asked to set these preferences again when you visit non-AMP BBC pages.","para2":"The lightweight mobile page you have visited has been built using Google AMP technology.","heading2":"Strictly necessary data collection","para3":"To make our web pages work, we store some limited information on your device without your consent.","para4":{"text":"Read more about the essential information we store on your device to make our web pages work.","url":"https://www.bbc.co.uk/usingthebbc/strictly-necessary-cookies/"},"para5":"We use local storage to store your consent preferences on your device.","heading3":"Optional data collection","para6":"When you consent to data collection on AMP pages you are consenting to allow us to display personalised ads that are relevant to you when you are outside of the UK.","para7":{"text":"Read more about how we personalise ads in the BBC and our advertising partners.","url":"https://www.bbc.com/usingthebbc/cookies/how-does-the-bbc-use-cookies-for-advertising/"},"para8":"You can choose not to receive personalised ads by clicking “Reject data collection and continue” below. Please note that you will still see advertising, but it will not be personalised to you.","para9":"You can change these settings by clicking “Ad Choices / Do not sell my info” in the footer at any time."}}},"canonical":{"title":"Let us know you agree to cookies","description":{"uk":{"first":"We use ","linkText":"cookies","last":" to give you the best online experience. Please let us know if you agree to all of these cookies.","linkUrl":"https://www.bbc.co.uk/usingthebbc/cookies/what-do-i-need-to-know-about-cookies/"},"international":{"first":"We use ","linkText":"cookies","last":" to give you the best online experience. Please let us know if you agree to all of these cookies.","linkUrl":"https://www.bbc.co.uk/usingthebbc/cookies/what-do-i-need-to-know-about-cookies/"}},"accept":"Yes, I agree","reject":"No, take me to settings","rejectUrl":"https://www.bbc.co.uk/usingthebbc/cookies/how-can-i-change-my-bbc-cookie-settings/"}}},"media":{"noJs":"To play this content, please enable JavaScript, or try a different browser","contentExpired":"This content is no longer available","audio":"Audio","photogallery":"Image gallery","video":"Video","listen":"Listen","watch":"Watch","liveLabel":"LIVE","nextLabel":"NEXT","previousRadioShow":"Previous radio show","nextRadioShow":"Next radio show","duration":"Duration"},"socialEmbed":{}},"mostRead":{"header":"Most read","lastUpdated":"Last updated:","numberOfItems":10,"hasMostRead":true},"mostWatched":{"header":"Most watched","numberOfItems":10,"hasMostWatched":false},"radioSchedule":{"hasRadioSchedule":false},"recommendations":{"hasStoryRecommendations":false},"footer":{"trustProjectLink":{"href":"https://www.bbc.com/news/help-41670342","text":"Why you can trust the BBC"},"externalLink":{"href":"https://www.bbc.co.uk/editorialguidelines/guidance/feeds-and-links","text":"Read about our approach to external linking."},"links":[{"href":"https://www.bbc.com/terms","text":"Terms of Use"},{"href":"https://www.bbc.co.uk/aboutthebbc/","text":"About the BBC"},{"href":"https://www.bbc.com/privacy/","text":"Privacy Policy"},{"href":"https://www.bbc.com/usingthebbc/cookies/","text":"Cookies"},{"href":"https://www.bbc.com/accessibility/","text":"Accessibility Help"},{"href":"https://www.bbc.com/contact/","text":"Contact the BBC"},{"id":"COOKIE_SETTINGS","href":"#","text":"Do not share or sell my info","lang":"en-GB"}],"copyrightText":"BBC. The BBC is not responsible for the content of external sites."},"timezone":"Europe/London","navigation":[{"title":"Home","url":"/news"},{"title":"UK","url":"/news/uk"},{"title":"World","url":"/news/world"},{"title":"Business","url":"/news/business"},{"title":"Politics","url":"/news/politics"},{"title":"Tech","url":"/news/technology"},{"title":"Science","url":"/news/science_and_environment"},{"title":"Health","url":"/news/health"},{"title":"Family & Education","url":"/news/education"},{"title":"Entertainment & Arts","url":"/news/entertainment_and_arts"},{"title":"Stories","url":"/news/stories"}]} + {"lang":"en-GB","articleAuthor":"https://www.facebook.com/bbcnews","articleTimestampPrefix":"Updated","articleTimestampSuffix":"","atiAnalyticsAppName":"news","atiAnalyticsProducerId":"64","chartbeatDomain":"bbc.co.uk","brandName":"BBC News","product":"BBC News","defaultImage":"https://static.files.bbci.co.uk/ws/simorgh-assets/public/news/images/metadata/poster-1024x576.png","defaultImageAltText":"BBC News","dir":"ltr","externalLinkText":", external","imageCaptionOffscreenText":"Image caption, ","videoCaptionOffscreenText":"Video caption, ","audioCaptionOffscreenText":"Audio caption","defaultCaptionOffscreenText":"Caption, ","imageCopyrightOffscreenText":"Image source, ","locale":"en_GB","datetimeLocale":"en-gb","service":"news","serviceName":"News","languageName":"English","twitterCreator":"@BBCNews","twitterSite":"@BBCNews","noBylinesPolicy":"https://www.bbc.com/news/help-41670342#authorexpertise","publishingPrinciples":"https://www.bbc.com/news/help-41670342","isTrustProjectParticipant":true,"script":{"atlas":{"groupA":{"fontSize":78,"lineHeight":84},"groupB":{"fontSize":96,"lineHeight":104},"groupD":{"fontSize":140,"lineHeight":148}},"elephant":{"groupA":{"fontSize":60,"lineHeight":64},"groupB":{"fontSize":78,"lineHeight":84},"groupD":{"fontSize":116,"lineHeight":124}},"imperial":{"groupA":{"fontSize":50,"lineHeight":54},"groupB":{"fontSize":64,"lineHeight":72},"groupD":{"fontSize":96,"lineHeight":104}},"royal":{"groupA":{"fontSize":40,"lineHeight":44},"groupB":{"fontSize":52,"lineHeight":60},"groupD":{"fontSize":76,"lineHeight":84}},"foolscap":{"groupA":{"fontSize":32,"lineHeight":36},"groupB":{"fontSize":40,"lineHeight":44},"groupD":{"fontSize":56,"lineHeight":60}},"canon":{"groupA":{"fontSize":28,"lineHeight":32},"groupB":{"fontSize":32,"lineHeight":36},"groupD":{"fontSize":44,"lineHeight":48}},"trafalgar":{"groupA":{"fontSize":20,"lineHeight":24},"groupB":{"fontSize":24,"lineHeight":28},"groupD":{"fontSize":32,"lineHeight":36}},"paragon":{"groupA":{"fontSize":20,"lineHeight":24},"groupB":{"fontSize":22,"lineHeight":26},"groupD":{"fontSize":28,"lineHeight":32}},"doublePica":{"groupA":{"fontSize":18,"lineHeight":22},"groupB":{"fontSize":20,"lineHeight":24},"groupD":{"fontSize":24,"lineHeight":28}},"greatPrimer":{"groupA":{"fontSize":18,"lineHeight":22},"groupB":{"fontSize":18,"lineHeight":22},"groupD":{"fontSize":20,"lineHeight":24}},"bodyCopy":{"groupA":{"fontSize":15,"lineHeight":20},"groupB":{"fontSize":16,"lineHeight":22},"groupD":{"fontSize":16,"lineHeight":22}},"pica":{"groupA":{"fontSize":15,"lineHeight":20},"groupB":{"fontSize":16,"lineHeight":20},"groupD":{"fontSize":16,"lineHeight":20}},"longPrimer":{"groupA":{"fontSize":15,"lineHeight":18},"groupB":{"fontSize":15,"lineHeight":18},"groupD":{"fontSize":14,"lineHeight":18}},"brevier":{"groupA":{"fontSize":14,"lineHeight":18},"groupB":{"fontSize":14,"lineHeight":18},"groupD":{"fontSize":13,"lineHeight":16}},"minion":{"groupA":{"fontSize":12,"lineHeight":16},"groupB":{"fontSize":12,"lineHeight":16},"groupD":{"fontSize":12,"lineHeight":16}}},"manifestPath":"/articles/manifest.json","frontPageTitle":"Home","showAdPlaceholder":false,"showRelatedTopics":true,"translations":{"ads":{"advertisementLabel":"Advertisement"},"home":"Home","currentPage":"Current page","skipLinkText":"Skip to content","relatedContent":"Related content","relatedTopics":"Related topics","navMenuText":"Sections","mediaAssetPage":{"mediaPlayer":"Media player","audioPlayer":"Audio player","videoPlayer":"Video player"},"liveExperiencePage":{"liveLabel":"Live","liveCoverage":"Live Coverage","breaking":"Breaking","postedAt":"Posted at","summary":"Summary"},"gist":"At a glance","error":{"404":{"statusCode":"404","title":"Page cannot be found","message":"Sorry, we're unable to bring you the page you're looking for. Please try:","solutions":["Double checking the url","Hitting the refresh button in your browser","Searching for this page using the BBC search bar"],"callToActionFirst":"Alternatively, please visit the ","callToActionLinkText":"BBC News homepage.","callToActionLast":"","callToActionLinkUrl":"https://www.bbc.com/news"},"500":{"statusCode":"500","title":"Internal server error","message":"Sorry, we're currently unable to bring you the page you're looking for. Please try:","solutions":["Hitting the refresh button in your browser","Coming back again later"],"callToActionFirst":"Alternatively, please visit the ","callToActionLinkText":"BBC News homepage.","callToActionLast":"","callToActionLinkUrl":"https://www.bbc.com/news"}},"consentBanner":{"privacy":{"title":"We've updated our Privacy and Cookies Policy","description":{"uk":{"first":"We've made some important changes to our Privacy and Cookies Policy and we want you to know what this means for you and your data.","linkText":null,"last":null,"linkUrl":null},"international":{"first":"We've made some important changes to our Privacy and Cookies Policy and we want you to know what this means for you and your data.","linkText":null,"last":null,"linkUrl":null}},"accept":"OK","reject":"Find out what's changed","rejectUrl":"https://www.bbc.co.uk/usingthebbc/your-data-matters"},"cookie":{"amp":{"accept":"Accept data collection and continue","reject":"Reject data collection and continue","initial":{"title":"Let us know you agree to data collection on AMP","description":{"first":"We and our partners use technologies, such as ","linkText":"cookies","last":", and collect browsing data to give you the best online experience and to personalise the content and advertising shown to you. Please let us know if you agree.","linkUrl":"https://www.bbc.co.uk/usingthebbc/cookies/what-do-i-need-to-know-about-cookies/"},"manage":"Manage my settings"},"manage":{"title":"Manage consent settings on AMP pages","description":{"para1":"These settings apply to AMP pages only. You may be asked to set these preferences again when you visit non-AMP BBC pages.","para2":"The lightweight mobile page you have visited has been built using Google AMP technology.","heading2":"Strictly necessary data collection","para3":"To make our web pages work, we store some limited information on your device without your consent.","para4":{"text":"Read more about the essential information we store on your device to make our web pages work.","url":"https://www.bbc.co.uk/usingthebbc/strictly-necessary-cookies/"},"para5":"We use local storage to store your consent preferences on your device.","heading3":"Optional data collection","para6":"When you consent to data collection on AMP pages you are consenting to allow us to display personalised ads that are relevant to you when you are outside of the UK.","para7":{"text":"Read more about how we personalise ads in the BBC and our advertising partners.","url":"https://www.bbc.com/usingthebbc/cookies/how-does-the-bbc-use-cookies-for-advertising/"},"para8":"You can choose not to receive personalised ads by clicking “Reject data collection and continue” below. Please note that you will still see advertising, but it will not be personalised to you.","para9":"You can change these settings by clicking “Ad Choices / Do not sell my info” in the footer at any time."}}},"canonical":{"title":"Let us know you agree to cookies","description":{"uk":{"first":"We use ","linkText":"cookies","last":" to give you the best online experience. Please let us know if you agree to all of these cookies.","linkUrl":"https://www.bbc.co.uk/usingthebbc/cookies/what-do-i-need-to-know-about-cookies/"},"international":{"first":"We use ","linkText":"cookies","last":" to give you the best online experience. Please let us know if you agree to all of these cookies.","linkUrl":"https://www.bbc.co.uk/usingthebbc/cookies/what-do-i-need-to-know-about-cookies/"}},"accept":"Yes, I agree","reject":"No, take me to settings","rejectUrl":"https://www.bbc.co.uk/usingthebbc/cookies/how-can-i-change-my-bbc-cookie-settings/"}}},"media":{"noJs":"To play this content, please enable JavaScript, or try a different browser","contentExpired":"This content is no longer available","audio":"Audio","photogallery":"Image gallery","video":"Video","listen":"Listen","watch":"Watch","liveLabel":"LIVE","nextLabel":"NEXT","previousRadioShow":"Previous radio show","nextRadioShow":"Next radio show","duration":"Duration"},"socialEmbed":{}},"mostRead":{"header":"Most read","lastUpdated":"Last updated:","numberOfItems":10,"hasMostRead":true},"radioSchedule":{"hasRadioSchedule":false},"recommendations":{"hasStoryRecommendations":false},"footer":{"trustProjectLink":{"href":"https://www.bbc.com/news/help-41670342","text":"Why you can trust the BBC"},"externalLink":{"href":"https://www.bbc.co.uk/editorialguidelines/guidance/feeds-and-links","text":"Read about our approach to external linking."},"links":[{"href":"https://www.bbc.com/terms","text":"Terms of Use"},{"href":"https://www.bbc.co.uk/aboutthebbc/","text":"About the BBC"},{"href":"https://www.bbc.com/privacy/","text":"Privacy Policy"},{"href":"https://www.bbc.com/usingthebbc/cookies/","text":"Cookies"},{"href":"https://www.bbc.com/accessibility/","text":"Accessibility Help"},{"href":"https://www.bbc.com/contact/","text":"Contact the BBC"},{"id":"COOKIE_SETTINGS","href":"#","text":"Do not share or sell my info","lang":"en-GB"}],"copyrightText":"BBC. The BBC is not responsible for the content of external sites."},"timezone":"Europe/London","navigation":[{"title":"Home","url":"/news"},{"title":"UK","url":"/news/uk"},{"title":"World","url":"/news/world"},{"title":"Business","url":"/news/business"},{"title":"Politics","url":"/news/politics"},{"title":"Tech","url":"/news/technology"},{"title":"Science","url":"/news/science_and_environment"},{"title":"Health","url":"/news/health"},{"title":"Family & Education","url":"/news/education"},{"title":"Entertainment & Arts","url":"/news/entertainment_and_arts"},{"title":"Stories","url":"/news/stories"}]} {"env":"live","id":"c0000000000o","isUK":true,"origin":"https://www.bbc.com","pageType":"article","derivedPageType":null,"isAmp":true,"isApp":false,"isLite":false,"isCaf":false,"isNextJs":false,"platform":"amp","statsDestination":"NEWS_PS_TEST","statsPageIdentifier":"news.articles.c0000000000o.page","statusCode":200,"previousPath":null,"variant":null,"timeOnServer":null,"showAdsBasedOnLocation":true,"showCookieBannerBasedOnCountry":true,"service":"news","pathname":"/pathname","counterName":null,"canonicalLink":"https://www.bbc.com/pathname","ampLink":"https://www.bbc.com/pathname.amp","canonicalUkLink":"https://www.bbc.co.uk/pathname","ampUkLink":"https://www.bbc.co.uk/pathname.amp","canonicalNonUkLink":"https://www.bbc.com/pathname","ampNonUkLink":"https://www.bbc.com/pathname.amp","mvtExperiments":[{"experimentName":"foo","variation":"bar"}]} diff --git a/src/app/lib/config/toggles/__snapshots__/index.test.js.snap b/src/app/lib/config/toggles/__snapshots__/index.test.js.snap index 7fea3884975..199e24cfcdf 100644 --- a/src/app/lib/config/toggles/__snapshots__/index.test.js.snap +++ b/src/app/lib/config/toggles/__snapshots__/index.test.js.snap @@ -25,9 +25,6 @@ exports[`Toggles Config when application environment is live should contain corr "mostRead": { "enabled": true, }, - "mostWatched": { - "enabled": false, - }, "navOnArticles": { "enabled": true, }, @@ -83,9 +80,6 @@ exports[`Toggles Config when application environment is local should contain cor "mostRead": { "enabled": true, }, - "mostWatched": { - "enabled": true, - }, "navOnArticles": { "enabled": true, }, @@ -138,9 +132,6 @@ exports[`Toggles Config when application environment is test should contain corr "mostRead": { "enabled": true, }, - "mostWatched": { - "enabled": true, - }, "navOnArticles": { "enabled": true, }, From ca5a72088c4c2b6cae52a5d0ce4660ba2685dfb2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CLilyL0u=E2=80=9D?= Date: Tue, 18 Jun 2024 15:45:41 +0100 Subject: [PATCH 46/51] remove most watched from fixture data --- data/afaanoromoo/cpsAssets/oduu-41217768.json | 3 +- data/afrique/cpsAssets/48465371.json | 3 +- .../worldnews/2015/11/151120_t_arabic_av.json | 545 +- data/azeri/cpsAssets/azerbaijan-44208474.json | 3 +- .../2012/09/120919_georgia_prison_video.json | 1473 +---- data/gahuza/cpsAssets/23313911.json | 3 +- data/gahuza/cpsAssets/amakuru-23257470.json | 808 +-- .../2016/02/160215_map_amakuru_test1.json | 808 +-- .../multimedia/2012/07/120712_click.json | 4862 +---------------- data/igbo/cpsAssets/afirika-23252735.json | 3 +- .../cpsAssets/indonesia-41635759.json | 3 +- data/kyrgyz/cpsAssets/23292889.json | 3 +- data/mundo/cpsAssets/23263889.json | 3 +- data/mundo/cpsAssets/deportes-36935058.json | 3 +- .../noticias-internacional-51266689.json | 3 +- .../noticias-internacional-53826365.json | 3 +- data/news/frontpage/index.json | 3 +- data/pashto/cpsAssets/columns-54029178.json | 3 +- data/pashto/cpsAssets/media-23257523.json | 806 +-- .../world/2016/09/160921_tc2_testmap1.json | 808 +-- data/persian/cpsAssets/iran-23231114.json | 2040 +------ .../iran/2016/09/160907_tc2_testmap1.json | 2040 +------ data/pidgin/cpsAssets/23248703-LEGACY.json | 82 +- data/pidgin/cpsAssets/media-23256549.json | 84 +- data/pidgin/cpsAssets/tori-49450859.json | 84 +- data/pidgin/cpsAssets/world-23252817.json | 3 +- data/russian/cpsAssets/features-45782775.json | 3 +- data/russian/cpsAssets/features-54391793.json | 3 +- data/russian/cpsAssets/media-49281069.json | 3751 +------------ data/serbian/frontpage/cyr.json | 3 +- data/serbian/frontpage/lat.json | 3 +- data/ukchina/cpsAssets/trad/23307454.json | 3 +- data/ukchina/frontpage/simp.json | 3 +- data/ukchina/frontpage/trad.json | 3 +- .../cpsAssets/news-russian-23333960.json | 3 +- data/urdu/cpsAssets/science-51314202.json | 3 +- data/urdu/frontpage/index.json | 3 +- data/uzbek/cpsAssets/sport-23248721.json | 237 +- data/uzbek/cpsAssets/uzbekistan-53263099.json | 3 +- data/yoruba/cpsAssets/media-23256797.json | 1456 +---- .../cpsAssets/trad/chinese-news-49065935.json | 3 +- data/zhongwen/frontpage/simp.json | 3 +- data/zhongwen/frontpage/trad.json | 3 +- 43 files changed, 43 insertions(+), 19925 deletions(-) diff --git a/data/afaanoromoo/cpsAssets/oduu-41217768.json b/data/afaanoromoo/cpsAssets/oduu-41217768.json index 309dcd7f5d1..f7e399ee514 100644 --- a/data/afaanoromoo/cpsAssets/oduu-41217768.json +++ b/data/afaanoromoo/cpsAssets/oduu-41217768.json @@ -320,8 +320,7 @@ "secondaryData": { "topStories": null, "features": null, - "mostRead": null, - "mostWatched": null + "mostRead": null } }, "contentType": "application/json; charset=utf-8" diff --git a/data/afrique/cpsAssets/48465371.json b/data/afrique/cpsAssets/48465371.json index b2aed19a565..c636d6cc831 100644 --- a/data/afrique/cpsAssets/48465371.json +++ b/data/afrique/cpsAssets/48465371.json @@ -3754,8 +3754,7 @@ "secondaryData": { "topStories": null, "features": null, - "mostRead": null, - "mostWatched": null + "mostRead": null } }, "contentType": "application/json; charset=utf-8" diff --git a/data/arabic/legacyAssets/worldnews/2015/11/151120_t_arabic_av.json b/data/arabic/legacyAssets/worldnews/2015/11/151120_t_arabic_av.json index 189f4b83fa1..7cbffecb745 100644 --- a/data/arabic/legacyAssets/worldnews/2015/11/151120_t_arabic_av.json +++ b/data/arabic/legacyAssets/worldnews/2015/11/151120_t_arabic_av.json @@ -209,550 +209,7 @@ "secondaryData": { "topStories": null, "features": null, - "mostRead": null, - "mostWatched": { - "generated": "2023-06-20T15:03:59.29Z", - "lastRecordTimeStamp": "2021-05-04T11:53:00Z", - "firstRecordTimeStamp": "2021-05-04T09:53:00Z", - "totalRecords": 10, - "records": [ - { - "id": "bb996d99-f92b-8345-b19a-62aedbc60249", - "rank": 1, - "count": 9828, - "urn": "urn:bbc:curie:asset:bb996d99-f92b-8345-b19a-62aedbc60249", - "promo": { - "headlines": { - "shortHeadline": "تحديات تواجه ذوي الإعاقات غير المرئية video 93", - "headline": "أكثر من 100 مدرسة في محافظة ذي قار العراقية بنيت من الطين short سغىخحسهس" - }, - "locators": { - "assetUri": "/arabic/media-23138145", - "curieCpsUrn": "urn:bbc:cps:curie:asset:bb996d99-f92b-8345-b19a-62aedbc60249", - "assetId": "23138145", - "cpsUrn": "urn:bbc:content:assetUri:arabic/media-23138145", - "curie": "http://www.bbc.co.uk/asset/bb996d99-f92b-8345-b19a-62aedbc60249" - }, - "summary": "عاد ملايين التلاميذ في العراق إلى مدارسهم، لكن الهاجس الأمني ليس الوحيد الذي يعكر medium synopsis صفو الموسم الدراسي الجديد، فألوف من التلاميذ لا يجدون حتى مدارس لائقة.", - "timestamp": 1499338566000, - "language": "ar", - "passport": { - "home": "http://www.bbc.co.uk/ontologies/passport/home/Arabic", - "taggings": [] - }, - "media": { - "id": "23081668", - "subType": "primary", - "format": "video", - "externalId": "p015xz8c", - "entityType": "Clip", - "caption": "شقشلاهؤ media caption لالاؤ ؤمهح", - "statusCode": 404, - "statusMessage": "Asset could not be found. Perhaps it was withdrawn.", - "type": "external_vpid" - }, - "indexImage": { - "id": "63539209", - "subType": "index", - "href": "http://b.files.bbci.co.uk/160B5/test/_63539209_mediaitem63539207.jpg", - "path": "/cpsdevpb/160B5/test/_63539209_mediaitem63539207.jpg", - "height": 549, - "width": 976, - "altText": "نوي صغيرة المساحة", - "copyrightHolder": "iStock", - "type": "image" - }, - "id": "urn:bbc:ares::asset:arabic/media-23138145", - "type": "cps" - } - }, - { - "id": "195a61d2-887b-c74c-a56f-387322fcb134", - "rank": 2, - "count": 9480, - "urn": "urn:bbc:curie:asset:195a61d2-887b-c74c-a56f-387322fcb134", - "promo": { - "headlines": { - "shortHeadline": "شقشلاهؤ ؤشسفشصشغ ؤمهح Title أكثر من 100 مدرسة في محافظة ذي قار العراقية بنيت من الطين 06", - "headline": "أكثر من 100 مدرسة في محافظة ذي قار العراقية بنيت من الطين short سغىخحسهس" - }, - "locators": { - "assetUri": "/arabic/blog-tv-and-radio-23087757", - "curieCpsUrn": "urn:bbc:cps:curie:asset:195a61d2-887b-c74c-a56f-387322fcb134", - "assetId": "23087757", - "cpsUrn": "urn:bbc:content:assetUri:arabic/blog-tv-and-radio-23087757", - "curie": "http://www.bbc.co.uk/asset/195a61d2-887b-c74c-a56f-387322fcb134" - }, - "summary": "عاد ملايين التلاميذ في العراق إلى مدارسهم، لكن الهاجس الأمني ليس الوحيد الذي يعكر medium synopsis صفو الموسم الدراسي الجديد، فألوف من التلاميذ لا يجدون حتى مدارس لائقة.", - "timestamp": 1477955659000, - "language": "ar", - "passport": { - "home": "http://www.bbc.co.uk/ontologies/passport/home/Arabic", - "taggings": [] - }, - "media": { - "id": "23081668", - "subType": "primary", - "format": "video", - "externalId": "p015xz8c", - "entityType": "Clip", - "caption": "شقشلاهؤ media caption لالاؤ ؤمهح", - "statusCode": 404, - "statusMessage": "Asset could not be found. Perhaps it was withdrawn.", - "type": "external_vpid" - }, - "indexImage": { - "id": "63520130", - "subType": "index", - "href": "http://b.files.bbci.co.uk/0C1E/test/_63520130_p015xzbw.jpg", - "path": "/cpsdevpb/0C1E/test/_63520130_p015xzbw.jpg", - "height": 576, - "width": 1024, - "altText": "شقشلاهؤ شمف فثءف", - "copyrightHolder": "لالاؤ", - "type": "image" - }, - "id": "urn:bbc:ares::asset:arabic/blog-tv-and-radio-23087757", - "type": "cps" - } - }, - { - "id": "ab07aee9-4815-7443-8521-2b484c38fb95", - "rank": 3, - "count": 8425, - "urn": "urn:bbc:curie:asset:ab07aee9-4815-7443-8521-2b484c38fb95", - "promo": { - "headlines": { - "shortHeadline": "تحديات تواجه ذوي الإعاقات غير المرئية 91", - "headline": "أكثر من 100 مدرسة في محافظة ذي قار العراقية بنيت من الطين short سغىخحسهس" - }, - "locators": { - "assetUri": "/arabic/media-23137400", - "curieCpsUrn": "urn:bbc:cps:curie:asset:ab07aee9-4815-7443-8521-2b484c38fb95", - "assetId": "23137400", - "cpsUrn": "urn:bbc:content:assetUri:arabic/media-23137400", - "curie": "http://www.bbc.co.uk/asset/ab07aee9-4815-7443-8521-2b484c38fb95" - }, - "summary": "عاد ملايين التلاميذ في العراق إلى مدارسهم، لكن الهاجس الأمني ليس الوحيد الذي يعكر medium synopsis صفو الموسم الدراسي الجديد، فألوف من التلاميذ لا يجدون حتى مدارس لائقة.", - "timestamp": 1499093788000, - "language": "ar", - "passport": { - "home": "http://www.bbc.co.uk/ontologies/passport/home/Arabic", - "taggings": [] - }, - "media": { - "id": "23081668", - "subType": "primary", - "format": "video", - "externalId": "p015xz8c", - "entityType": "Clip", - "caption": "شقشلاهؤ media caption لالاؤ ؤمهح", - "statusCode": 404, - "statusMessage": "Asset could not be found. Perhaps it was withdrawn.", - "type": "external_vpid" - }, - "indexImage": { - "id": "63539209", - "subType": "index", - "href": "http://b.files.bbci.co.uk/160B5/test/_63539209_mediaitem63539207.jpg", - "path": "/cpsdevpb/160B5/test/_63539209_mediaitem63539207.jpg", - "height": 549, - "width": 976, - "altText": "نوي صغيرة المساحة", - "copyrightHolder": "iStock", - "type": "image" - }, - "id": "urn:bbc:ares::asset:arabic/media-23137400", - "type": "cps" - } - }, - { - "id": "16a0e46d-caf2-064a-ab2f-6f7fe46367ff", - "rank": 4, - "count": 6893, - "urn": "urn:bbc:curie:asset:16a0e46d-caf2-064a-ab2f-6f7fe46367ff", - "promo": { - "headlines": { - "shortHeadline": "شقشلاهؤ ؤشسفشصشغ ؤمهح Title أكثر من 100 مدرسة في محافظة ذي قار العراقية بنيت من الطين 04", - "headline": "أكثر من 100 مدرسة في محافظة ذي قار العراقية بنيت من الطين short سغىخحسهس" - }, - "locators": { - "assetUri": "/arabic/blog-tv-and-radio-23087755", - "curieCpsUrn": "urn:bbc:cps:curie:asset:16a0e46d-caf2-064a-ab2f-6f7fe46367ff", - "assetId": "23087755", - "cpsUrn": "urn:bbc:content:assetUri:arabic/blog-tv-and-radio-23087755", - "curie": "http://www.bbc.co.uk/asset/16a0e46d-caf2-064a-ab2f-6f7fe46367ff" - }, - "summary": "عاد ملايين التلاميذ في العراق إلى مدارسهم، لكن الهاجس الأمني ليس الوحيد الذي يعكر medium synopsis صفو الموسم الدراسي الجديد، فألوف من التلاميذ لا يجدون حتى مدارس لائقة.", - "timestamp": 1477955636000, - "language": "ar", - "passport": { - "home": "http://www.bbc.co.uk/ontologies/passport/home/Arabic", - "taggings": [] - }, - "media": { - "id": "23081668", - "subType": "primary", - "format": "video", - "externalId": "p015xz8c", - "entityType": "Clip", - "caption": "شقشلاهؤ media caption لالاؤ ؤمهح", - "statusCode": 404, - "statusMessage": "Asset could not be found. Perhaps it was withdrawn.", - "type": "external_vpid" - }, - "indexImage": { - "id": "63520130", - "subType": "index", - "href": "http://b.files.bbci.co.uk/0C1E/test/_63520130_p015xzbw.jpg", - "path": "/cpsdevpb/0C1E/test/_63520130_p015xzbw.jpg", - "height": 576, - "width": 1024, - "altText": "شقشلاهؤ شمف فثءف", - "copyrightHolder": "لالاؤ", - "type": "image" - }, - "id": "urn:bbc:ares::asset:arabic/blog-tv-and-radio-23087755", - "type": "cps" - } - }, - { - "id": "056de8e2-6479-fc43-8984-db199b3c70eb", - "rank": 5, - "count": 5736, - "urn": "urn:bbc:curie:asset:056de8e2-6479-fc43-8984-db199b3c70eb", - "promo": { - "headlines": { - "shortHeadline": "تحديات تواجه ذوي الإعاقات غير المرئية 92", - "headline": "أكثر من 100 مدرسة في محافظة ذي قار العراقية بنيت من الطين short سغىخحسهس" - }, - "locators": { - "assetUri": "/arabic/media-23137401", - "curieCpsUrn": "urn:bbc:cps:curie:asset:056de8e2-6479-fc43-8984-db199b3c70eb", - "assetId": "23137401", - "cpsUrn": "urn:bbc:content:assetUri:arabic/media-23137401", - "curie": "http://www.bbc.co.uk/asset/056de8e2-6479-fc43-8984-db199b3c70eb" - }, - "summary": "عاد ملايين التلاميذ في العراق إلى مدارسهم، لكن الهاجس الأمني ليس الوحيد الذي يعكر medium synopsis صفو الموسم الدراسي الجديد، فألوف من التلاميذ لا يجدون حتى مدارس لائقة.", - "timestamp": 1499093799000, - "language": "ar", - "passport": { - "home": "http://www.bbc.co.uk/ontologies/passport/home/Arabic", - "taggings": [] - }, - "media": { - "id": "23081668", - "subType": "primary", - "format": "video", - "externalId": "p015xz8c", - "entityType": "Clip", - "caption": "شقشلاهؤ media caption لالاؤ ؤمهح", - "statusCode": 404, - "statusMessage": "Asset could not be found. Perhaps it was withdrawn.", - "type": "external_vpid" - }, - "indexImage": { - "id": "63539209", - "subType": "index", - "href": "http://b.files.bbci.co.uk/160B5/test/_63539209_mediaitem63539207.jpg", - "path": "/cpsdevpb/160B5/test/_63539209_mediaitem63539207.jpg", - "height": 549, - "width": 976, - "altText": "نوي صغيرة المساحة", - "copyrightHolder": "iStock", - "type": "image" - }, - "id": "urn:bbc:ares::asset:arabic/media-23137401", - "type": "cps" - } - }, - { - "id": "3f5571c4-15e9-084d-9616-b3a805162513", - "rank": 6, - "count": 5541, - "urn": "urn:bbc:curie:asset:3f5571c4-15e9-084d-9616-b3a805162513", - "promo": { - "headlines": { - "shortHeadline": "تشديد القوانين الخاصة بشراء واستخدام الطائرات المسيرة الصغيرة في الاماراتAV", - "headline": "تشديد القوانين الخاصة بشراء واستخدام الطائرات المسيرة الصغيرة في الاماراتAV" - }, - "locators": { - "assetUri": "/arabic/23078450", - "curieCpsUrn": "urn:bbc:cps:curie:asset:3f5571c4-15e9-084d-9616-b3a805162513", - "assetId": "23078450", - "cpsUrn": "urn:bbc:content:assetUri:arabic/23078450", - "curie": "http://www.bbc.co.uk/asset/3f5571c4-15e9-084d-9616-b3a805162513" - }, - "summary": "تشديد القوانين الخاصة بشراء واستخدام الطائرات المسيرة الصغيرة في الامارات", - "timestamp": 1474899790000, - "language": "ar", - "passport": { - "home": "http://www.bbc.co.uk/ontologies/passport/home/Arabic", - "taggings": [] - }, - "media": { - "id": "63501296", - "subType": "primary", - "format": "video", - "externalId": "journalism_world_service_stream_01", - "duration": "PT0S", - "caption": "الامارات", - "image": { - "id": "63501296", - "subType": "thumbnail", - "href": "http://b.files.bbci.co.uk/11E69/test/_63512337_160926115449_drone__640x360_ap_nocredit.jpg", - "path": "/cpsdevpb/11E69/test/_63512337_160926115449_drone__640x360_ap_nocredit.jpg", - "height": 360, - "width": 640, - "altText": "الامارات", - "copyrightHolder": "AP", - "type": "image" - }, - "embedding": false, - "available": true, - "live": true, - "type": "version" - }, - "indexImage": { - "id": "63512338", - "subType": "index", - "href": "http://b.files.bbci.co.uk/14579/test/_63512338_160926115449_drone__640x360_ap_nocredit.jpg", - "path": "/cpsdevpb/14579/test/_63512338_160926115449_drone__640x360_ap_nocredit.jpg", - "height": 371, - "width": 660, - "altText": "الامارات", - "caption": "الامارات", - "copyrightHolder": "AP", - "type": "image" - }, - "id": "urn:bbc:ares::asset:arabic/23078450", - "type": "cps" - } - }, - { - "id": "30c9cf84-a950-f54f-b5ba-49bce8c283e9", - "rank": 7, - "count": 4084, - "urn": "urn:bbc:curie:asset:30c9cf84-a950-f54f-b5ba-49bce8c283e9", - "promo": { - "headlines": { - "shortHeadline": "عنوان", - "headline": "ملخص" - }, - "locators": { - "assetUri": "/arabic/23201401", - "curieCpsUrn": "urn:bbc:cps:curie:asset:30c9cf84-a950-f54f-b5ba-49bce8c283e9", - "assetId": "23201401", - "cpsUrn": "urn:bbc:content:assetUri:arabic/23201401", - "curie": "http://www.bbc.co.uk/asset/30c9cf84-a950-f54f-b5ba-49bce8c283e9" - }, - "summary": "ملخص", - "timestamp": 1526915914000, - "language": "ar", - "passport": { - "home": "http://www.bbc.co.uk/ontologies/passport/home/Arabic", - "taggings": [] - }, - "media": { - "id": "p01hj5mz", - "subType": "clip", - "format": "video", - "title": "عنوان", - "synopses": { - "short": "ملخص" - }, - "imageUrl": "ichef.test.bbci.co.uk/images/ic/$recipe/p01hshf5.jpg", - "embedding": true, - "advertising": true, - "caption": "شرح", - "versions": [ - { - "versionId": "p01hj5n1", - "types": [ - "Original" - ], - "duration": 11, - "durationISO8601": "PT11S", - "warnings": {}, - "availableTerritories": { - "uk": true, - "nonUk": true - }, - "availableFrom": 1525096797000 - } - ], - "imageCopyright": "BBC", - "smpKind": "programme", - "type": "media" - }, - "indexImage": { - "id": "63679666", - "subType": "index", - "href": "http://b.files.bbci.co.uk/10489/test/_63679666_p01hj5r3.jpg", - "path": "/cpsdevpb/10489/test/_63679666_p01hj5r3.jpg", - "height": 576, - "width": 1024, - "altText": "cyclists", - "copyrightHolder": "BBC", - "allowSyndication": false, - "type": "image" - }, - "id": "urn:bbc:ares::asset:arabic/23201401", - "type": "cps" - } - }, - { - "id": "f95c1e77-4cea-5248-bb7b-99dca8921f06", - "rank": 8, - "count": 3354, - "urn": "urn:bbc:curie:asset:f95c1e77-4cea-5248-bb7b-99dca8921f06", - "promo": { - "headlines": { - "shortHeadline": "تحديات تواجه ذوي الإعاقات غير المرئية 90", - "headline": "أكثر من 100 مدرسة في محافظة ذي قار العراقية بنيت من الطين short سغىخحسهس" - }, - "locators": { - "assetUri": "/arabic/media-23137399", - "curieCpsUrn": "urn:bbc:cps:curie:asset:f95c1e77-4cea-5248-bb7b-99dca8921f06", - "assetId": "23137399", - "cpsUrn": "urn:bbc:content:assetUri:arabic/media-23137399", - "curie": "http://www.bbc.co.uk/asset/f95c1e77-4cea-5248-bb7b-99dca8921f06" - }, - "summary": "عاد ملايين التلاميذ في العراق إلى مدارسهم، لكن الهاجس الأمني ليس الوحيد الذي يعكر medium synopsis صفو الموسم الدراسي الجديد، فألوف من التلاميذ لا يجدون حتى مدارس لائقة.", - "timestamp": 1499093773000, - "language": "ar", - "passport": { - "home": "http://www.bbc.co.uk/ontologies/passport/home/Arabic", - "taggings": [] - }, - "media": { - "id": "23081668", - "subType": "primary", - "format": "video", - "externalId": "p015xz8c", - "entityType": "Clip", - "caption": "شقشلاهؤ media caption لالاؤ ؤمهح", - "statusCode": 404, - "statusMessage": "Asset could not be found. Perhaps it was withdrawn.", - "type": "external_vpid" - }, - "indexImage": { - "id": "63539209", - "subType": "index", - "href": "http://b.files.bbci.co.uk/160B5/test/_63539209_mediaitem63539207.jpg", - "path": "/cpsdevpb/160B5/test/_63539209_mediaitem63539207.jpg", - "height": 549, - "width": 976, - "altText": "نوي صغيرة المساحة", - "copyrightHolder": "iStock", - "type": "image" - }, - "id": "urn:bbc:ares::asset:arabic/media-23137399", - "type": "cps" - } - }, - { - "id": "6b312a66-aab1-fc4c-9841-03e2d06949ff", - "rank": 9, - "count": 2914, - "urn": "urn:bbc:curie:asset:6b312a66-aab1-fc4c-9841-03e2d06949ff", - "promo": { - "headlines": { - "shortHeadline": "تحديات تواجه ذوي الإعاقات غير المرئية 93", - "headline": "أكثر من 100 مدرسة في محافظة ذي قار العراقية بنيت من الطين short سغىخحسهس" - }, - "locators": { - "assetUri": "/arabic/media-23137402", - "curieCpsUrn": "urn:bbc:cps:curie:asset:6b312a66-aab1-fc4c-9841-03e2d06949ff", - "assetId": "23137402", - "cpsUrn": "urn:bbc:content:assetUri:arabic/media-23137402", - "curie": "http://www.bbc.co.uk/asset/6b312a66-aab1-fc4c-9841-03e2d06949ff" - }, - "summary": "عاد ملايين التلاميذ في العراق إلى مدارسهم، لكن الهاجس الأمني ليس الوحيد الذي يعكر medium synopsis صفو الموسم الدراسي الجديد، فألوف من التلاميذ لا يجدون حتى مدارس لائقة.", - "timestamp": 1499093824000, - "language": "ar", - "passport": { - "home": "http://www.bbc.co.uk/ontologies/passport/home/Arabic", - "taggings": [] - }, - "media": { - "id": "23081668", - "subType": "primary", - "format": "video", - "externalId": "p015xz8c", - "entityType": "Clip", - "caption": "شقشلاهؤ media caption لالاؤ ؤمهح", - "statusCode": 404, - "statusMessage": "Asset could not be found. Perhaps it was withdrawn.", - "type": "external_vpid" - }, - "indexImage": { - "id": "63539209", - "subType": "index", - "href": "http://b.files.bbci.co.uk/160B5/test/_63539209_mediaitem63539207.jpg", - "path": "/cpsdevpb/160B5/test/_63539209_mediaitem63539207.jpg", - "height": 549, - "width": 976, - "altText": "نوي صغيرة المساحة", - "copyrightHolder": "iStock", - "type": "image" - }, - "id": "urn:bbc:ares::asset:arabic/media-23137402", - "type": "cps" - } - }, - { - "id": "3b379033-def7-e747-b71d-4568e918753d", - "rank": 10, - "count": 1185, - "urn": "urn:bbc:curie:asset:3b379033-def7-e747-b71d-4568e918753d", - "promo": { - "headlines": { - "shortHeadline": "تحديات تواجه ذوي الإعاقات غير المرئية video 92", - "headline": "أكثر من 100 مدرسة في محافظة ذي قار العراقية بنيت من الطين short سغىخحسهس" - }, - "locators": { - "assetUri": "/arabic/media-23138144", - "curieCpsUrn": "urn:bbc:cps:curie:asset:3b379033-def7-e747-b71d-4568e918753d", - "assetId": "23138144", - "cpsUrn": "urn:bbc:content:assetUri:arabic/media-23138144", - "curie": "http://www.bbc.co.uk/asset/3b379033-def7-e747-b71d-4568e918753d" - }, - "summary": "عاد ملايين التلاميذ في العراق إلى مدارسهم، لكن الهاجس الأمني ليس الوحيد الذي يعكر medium synopsis صفو الموسم الدراسي الجديد، فألوف من التلاميذ لا يجدون حتى مدارس لائقة.", - "timestamp": 1499338551000, - "language": "ar", - "passport": { - "home": "http://www.bbc.co.uk/ontologies/passport/home/Arabic", - "taggings": [] - }, - "media": { - "id": "23081668", - "subType": "primary", - "format": "video", - "externalId": "p015xz8c", - "entityType": "Clip", - "caption": "شقشلاهؤ media caption لالاؤ ؤمهح", - "statusCode": 404, - "statusMessage": "Asset could not be found. Perhaps it was withdrawn.", - "type": "external_vpid" - }, - "indexImage": { - "id": "63539209", - "subType": "index", - "href": "http://b.files.bbci.co.uk/160B5/test/_63539209_mediaitem63539207.jpg", - "path": "/cpsdevpb/160B5/test/_63539209_mediaitem63539207.jpg", - "height": 549, - "width": 976, - "altText": "نوي صغيرة المساحة", - "copyrightHolder": "iStock", - "type": "image" - }, - "id": "urn:bbc:ares::asset:arabic/media-23138144", - "type": "cps" - } - } - ] - } + "mostRead": null } }, "contentType": "application/json; charset=utf-8" diff --git a/data/azeri/cpsAssets/azerbaijan-44208474.json b/data/azeri/cpsAssets/azerbaijan-44208474.json index e650965b233..0a2dd1ec8c0 100644 --- a/data/azeri/cpsAssets/azerbaijan-44208474.json +++ b/data/azeri/cpsAssets/azerbaijan-44208474.json @@ -679,8 +679,7 @@ "secondaryData": { "topStories": null, "features": null, - "mostRead": null, - "mostWatched": null + "mostRead": null } }, "contentType": "application/json; charset=utf-8" diff --git a/data/azeri/legacyAssets/multimedia/2012/09/120919_georgia_prison_video.json b/data/azeri/legacyAssets/multimedia/2012/09/120919_georgia_prison_video.json index c1f6b9523be..038a630e95c 100644 --- a/data/azeri/legacyAssets/multimedia/2012/09/120919_georgia_prison_video.json +++ b/data/azeri/legacyAssets/multimedia/2012/09/120919_georgia_prison_video.json @@ -217,1478 +217,7 @@ "secondaryData": { "topStories": null, "features": null, - "mostRead": null, - "mostWatched": { - "generated": "2023-06-21T12:05:45.264Z", - "lastRecordTimeStamp": "2023-06-21T12:03:00Z", - "firstRecordTimeStamp": "2023-06-21T04:03:00Z", - "totalRecords": 20, - "records": [ - { - "id": "ae2c2c32-786a-11e7-b89b-72943db9bd6e", - "rank": 1, - "count": 4, - "urn": "urn:bbc:curie:asset:ae2c2c32-786a-11e7-b89b-72943db9bd6e", - "promo": { - "headlines": { - "shortHeadline": "Həbsxanada zorlama videosu gürcüstanlıları qəzəbləndirib", - "headline": "Həbsxanada zorlama videosu gürcüstanlıları qəzəbləndirib" - }, - "locators": { - "assetUri": "/azeri/multimedia/2012/09/120919_georgia_prison_video", - "cpsUrn": "urn:bbc:content:assetUri:azeri/multimedia/2012/09/120919_georgia_prison_video", - "curie": "http://www.bbc.co.uk/asset/ae2c2c32-786a-11e7-b89b-72943db9bd6e", - "assetId": "20005826" - }, - "summary": "Gürcustanda məhbusların gözətçilər tərəfindən zorlandığını göstərən video görüntülər çərşənbə günü hökümətə qarşı nümayişlərlə nəticələnib.", - "timestamp": 1348053367000, - "language": "az", - "media": { - "id": "20005826", - "subType": "primary", - "format": "video", - "image": { - "id": "20005826", - "subType": "thumbnail", - "href": "http://a.files.bbci.co.uk/worldservice/live/assets/images/2012/09/19/120919110953_georgia_prison_violence_640x360_reutersvideostill_nocredit.jpg", - "path": "/amz/worldservice/live/assets/images/2012/09/19/120919110953_georgia_prison_violence_640x360_reutersvideostill_nocredit.jpg", - "height": 360, - "width": 640, - "altText": "", - "copyrightHolder": "", - "type": "image" - }, - "aspectRatio": "16:9", - "live": false, - "href": "http://www.bbc.co.uk/azeri/meta/dps/2012/09/emp/120919_georgia_prison_video.emp.xml", - "playlist": [ - { - "format": "mp4", - "bitrate": "168000", - "url": "https://wsodprogrf.akamaized.net/azeri/dps/2012/09/georgia~fprison violence~f1206~f19~f9_16x9_lo.mp4" - }, - { - "format": "mp4", - "bitrate": "320000", - "url": "https://wsodprogrf.akamaized.net/azeri/dps/2012/09/georgia~fprison violence~f1206~f19~f9_16x9_med.mp4" - }, - { - "format": "mp4", - "bitrate": "904000", - "url": "https://wsodprogrf.akamaized.net/azeri/dps/2012/09/georgia~fprison violence~f1206~f19~f9_16x9_hi.mp4" - } - ], - "type": "legacyMedia" - }, - "indexImage": { - "id": "d7e216", - "subType": "index", - "href": "http://a.files.bbci.co.uk/worldservice/live/assets/images/2012/09/19/120919091538_georgia_prison_violence_112x63_reutersvideostill_nocredit.jpg", - "path": "/amz/worldservice/live/assets/images/2012/09/19/120919091538_georgia_prison_violence_112x63_reutersvideostill_nocredit.jpg", - "height": 63, - "width": 112, - "altText": "Gürcüstan həbsxanalarında zorakılıq", - "copyrightHolder": "reuters video still", - "type": "image" - }, - "id": "urn:bbc:ares::asset:azeri/multimedia/2012/09/120919_georgia_prison_video", - "type": "cps" - } - }, - { - "id": "61816573-ee24-6744-9144-130305584eeb", - "rank": 2, - "count": 4, - "urn": "urn:bbc:curie:asset:61816573-ee24-6744-9144-130305584eeb", - "promo": { - "headlines": { - "shortHeadline": "Ana və oğul 15 il sonra ilk dəfə görüşür", - "headline": "Ana və oğul 15 il sonra ilk dəfə görüşür" - }, - "locators": { - "assetUri": "/azeri/international-52725882", - "cpsUrn": "urn:bbc:content:assetUri:azeri/international-52725882", - "curie": "http://www.bbc.co.uk/asset/61816573-ee24-6744-9144-130305584eeb", - "assetId": "52725882" - }, - "summary": "İuan uşaq ikən münaqişə səbəbindən evdən qaçıb və anası ilə əlaqəsini itirmişdi.", - "timestamp": 1589901522000, - "language": "az", - "passport": { - "category": { - "categoryId": "http://www.bbc.co.uk/ontologies/applicationlogic-news/Feature", - "categoryName": "Feature" - }, - "campaigns": [ - { - "campaignId": "5a988e1739461b000e9dabf6", - "campaignName": "WS - CS" - } - ], - "taggings": [] - }, - "media": { - "id": "p08dlm71", - "subType": "clip", - "format": "video", - "title": "Ana və oğul 15 il sonra ilk dəfə görüşür", - "synopses": { - "short": "Ana və oğul 15 il sonra ilk dəfə görüşür", - "long": "Anasını 15 il görməyən bir indoneziyalı miqrant işçi BBC reportajı sayəsində yenidən ailəsinə qovuşub. \nİuan uşaq ikən münaqişə səbəbindən evdən qaçıb və ailəsi ilə əlaqəsini itirib. \nOnun sənədləri olmadığından sonralar o geriyə qayıda bilməyib.\nBBC İndoneziyadan Rohmatin Bonasir və Dwiki Marta-nın reporatjı.", - "medium": "İuan uşaq ikən münaqişə səbəbindən evdən qaçıb və anası ilə əlaqəsini itirmişdi." - }, - "imageUrl": "ichef.bbci.co.uk/images/ic/$recipe/p08dlx8k.png", - "embedding": true, - "advertising": true, - "caption": "Ana və oğul 15 il sonra ilk dəfə görüşür", - "versions": [ - { - "versionId": "p08dlm74", - "types": [ - "Original" - ], - "duration": 276, - "durationISO8601": "PT4M36S", - "warnings": {}, - "availableTerritories": { - "uk": true, - "nonUk": true - }, - "availableFrom": 1589900972000 - } - ], - "imageCopyright": "BBC", - "smpKind": "programme", - "type": "media" - }, - "indexImage": { - "id": "112358576", - "subType": "index", - "href": "http://c.files.bbci.co.uk/10801/production/_112358576_p08dlx8k.png", - "path": "/cpsprodpb/10801/production/_112358576_p08dlx8k.png", - "height": 576, - "width": 1024, - "altText": "ana oğul", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:azeri/international-52725882", - "type": "cps" - } - }, - { - "id": "a51b5d58-9584-a046-932e-1d051c50a3f6", - "rank": 3, - "count": 3, - "urn": "urn:bbc:curie:asset:a51b5d58-9584-a046-932e-1d051c50a3f6", - "promo": { - "headlines": { - "shortHeadline": "Niyə bu neft quyusu \"dünyada ilk\" hesab edilir?", - "headline": "Niyə bu neft quyusu \"dünyada ilk\" hesab edilir?" - }, - "locators": { - "assetUri": "/azeri/azerbaijan-40344556", - "cpsUrn": "urn:bbc:content:assetUri:azeri/azerbaijan-40344556", - "curie": "http://www.bbc.co.uk/asset/a51b5d58-9584-a046-932e-1d051c50a3f6", - "assetId": "40344556" - }, - "summary": "Bütün dünyada sənaye üsulu ilə qazılmış ilk neft quyusunun ABŞ-ın Pennsylvania ştatında olduğu deyilsə də, Azərbaycan bu tipli ilk quyunun məhz öz ərazisində qazıldığını bildirir.", - "timestamp": 1497965472000, - "language": "az", - "passport": { - "category": { - "categoryId": "http://www.bbc.co.uk/ontologies/applicationlogic-news/News", - "categoryName": "News" - }, - "taggings": [] - }, - "media": { - "id": "p056fvsx", - "subType": "clip", - "format": "video", - "title": "Bibiheybətdə dünyada sənaye üsulu ilə qazılmış ilk quyu bərpa edilib", - "synopses": { - "short": "Bibiheybətdə dünyada sənaye üsulu ilə qazılmış ilk quyu bərpa edilib", - "medium": "Bu ilin aprelində Bibiheybət mədəninin ərazisində 1846-cı ildə dünyada sənaye üsulu ilə qazılmış ilk quyu bərpa edilib.", - "long": "Bu ilin aprelində Bibiheybət mədəninin ərazisində 1846-cı ildə dünyada sənaye üsulu ilə qazılmış ilk quyu bərpa edilib.\n \nBütün dünyada sənaye üsulu ilə qazılmış ilk quyunun ABŞ-ın Pensilvaniya ştatında olduğu deyilsə də, Azərbaycan bu tipli ilk quyunun məhz öz ərazisində qazıldığını bildirir.\n\nMuzey mütəxəssisi Aygün Şamçıyeva deyir ki, Azərbaycanda bu quyu ABŞ-dan 13 il əvvəl qazılıb.\nDünyada daha çox ABŞ-da qazılan quyunun tanınmasının səbəbini isə o belə izah edir:\n\n“Amerikadakı quyudan sənaye həcmində neft aşkar olunub, Bakıda isə 21 metr dərinliyindən neft aşkar olunsa da həcmi çox az idi. Ona görə bu üsula çox diqqət etmədilər. Əl üsulu ilə işləməyə davam etdilər və illər sonra yenidən bu üsula qayıtdılar.”\n\nXanım Şamçıyeva bərpa edilmiş quyunun artıq turistlərin ziyarət etdiyi məkana çevrildiyini də qeyd edir. \n\nAzərbaycanda sənaye üsulu ilə neft hasilatına XIX əsrin ortalarından başlanılıb.\n\n1900-cü illərədək Azərbaycan dünya neftinin 50 faizini təmin edib." - }, - "imageUrl": "ichef.bbci.co.uk/images/ic/$recipe/p056g72x.jpg", - "embedding": true, - "advertising": true, - "caption": "Niyə bu neft quyusu \"dünyada ilk\" hesab edilir?", - "versions": [ - { - "versionId": "p056fvsz", - "types": [ - "Original" - ], - "duration": 159, - "durationISO8601": "PT2M39S", - "warnings": {}, - "availableTerritories": { - "uk": true, - "nonUk": true - }, - "availableFrom": 1497962743000 - } - ], - "smpKind": "programme", - "type": "media" - }, - "indexImage": { - "id": "96565764", - "subType": "index", - "href": "http://c.files.bbci.co.uk/B6A4/production/_96565764_bibiheybet.jpg", - "path": "/cpsprodpb/B6A4/production/_96565764_bibiheybet.jpg", - "height": 576, - "width": 1024, - "altText": "bibiheybət", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:azeri/azerbaijan-40344556", - "type": "cps" - } - }, - { - "id": "17dc6284-f94f-11e4-8909-56d03db9bd6e", - "rank": 4, - "count": 3, - "urn": "urn:bbc:curie:asset:17dc6284-f94f-11e4-8909-56d03db9bd6e", - "promo": { - "headlines": { - "shortHeadline": "Nadir yaqut daşı rekord qiymətə satılıb", - "headline": "Nadir yaqut daşı rekord qiymətə satılıb" - }, - "locators": { - "assetUri": "/azeri/multimedia/2015/05/150513_ruby_record_price", - "cpsUrn": "urn:bbc:content:assetUri:azeri/multimedia/2015/05/150513_ruby_record_price", - "curie": "http://www.bbc.co.uk/asset/17dc6284-f94f-11e4-8909-56d03db9bd6e", - "assetId": "38712682" - }, - "summary": "25,59 karat çəkisi olan yaqut daşı Cenevrədəki hərracda rekord təşkil edən 30,42 milyon dollara satılıb.", - "timestamp": 1431513869000, - "language": "az", - "media": { - "id": "38712682", - "subType": "primary", - "format": "video", - "image": { - "id": "38712682", - "subType": "thumbnail", - "href": "http://a.files.bbci.co.uk/worldservice/live/assets/images/2015/05/13/150513095806_ruby_reuters_640x360_reuters_nocredit.jpg", - "path": "/amz/worldservice/live/assets/images/2015/05/13/150513095806_ruby_reuters_640x360_reuters_nocredit.jpg", - "height": 360, - "width": 640, - "altText": "", - "copyrightHolder": "", - "type": "image" - }, - "aspectRatio": "16:9", - "live": false, - "href": "http://www.bbc.co.uk/azeri/meta/dps/2015/05/emp/150513_ruby_record_price.emp.xml", - "playlist": [ - { - "format": "mp4", - "bitrate": "168000", - "url": "https://wsodprogrf.akamaized.net/azeri/dps/2015/05/azeri~fruby~f1043~f13~f5_16x9_lo.mp4" - }, - { - "format": "mp4", - "bitrate": "320000", - "url": "https://wsodprogrf.akamaized.net/azeri/dps/2015/05/azeri~fruby~f1043~f13~f5_16x9_med.mp4" - }, - { - "format": "mp4", - "bitrate": "904000", - "url": "https://wsodprogrf.akamaized.net/azeri/dps/2015/05/azeri~fruby~f1043~f13~f5_16x9_hi.mp4" - } - ], - "type": "legacyMedia" - }, - "indexImage": { - "id": "d5e249", - "subType": "index", - "href": "http://a.files.bbci.co.uk/worldservice/live/assets/images/2015/05/13/150513095806_ruby_reuters_512x288_reuters_nocredit.jpg", - "path": "/amz/worldservice/live/assets/images/2015/05/13/150513095806_ruby_reuters_512x288_reuters_nocredit.jpg", - "height": 288, - "width": 512, - "altText": "", - "copyrightHolder": "Reuters", - "type": "image" - }, - "id": "urn:bbc:ares::asset:azeri/multimedia/2015/05/150513_ruby_record_price", - "type": "cps" - } - }, - { - "id": "bb306597-b8ea-d045-892a-fd1026905e5b", - "rank": 5, - "count": 2, - "urn": "urn:bbc:curie:asset:bb306597-b8ea-d045-892a-fd1026905e5b", - "promo": { - "headlines": { - "shortHeadline": "Körpəni yatızdıran \"10 əmzik\" kələyi", - "headline": "Körpəni yatızdıran \"10 əmzik\" kələyi" - }, - "locators": { - "assetUri": "/azeri/42697813", - "cpsUrn": "urn:bbc:content:assetUri:azeri/42697813", - "curie": "http://www.bbc.co.uk/asset/bb306597-b8ea-d045-892a-fd1026905e5b", - "assetId": "42697813" - }, - "summary": "11 aylıq Amelianı yatızdırmaq üçün anası Laura hiylə işlədir - körpənin yastığının ətrafına 10-dək əmzik qoyur ki, uşaq əlini atanda əmziyi tapsın və beləcə sakitləşsin.", - "timestamp": 1516172479000, - "language": "az", - "media": { - "id": "p05v0z1t", - "subType": "clip", - "format": "video", - "title": "Körpəni yatızdıran \"10 əmzik\" kələyi", - "synopses": { - "short": "Körpəni yatızdıran \"10 əmzik\" kələyi", - "medium": "11 aylıq Amelianı yatızdırmaq üçün anası Laura hiylə işlədir - körpənin yastığının ətrafına 10-dək əmzik qoyur ki, uşaq əlini atanda əmziyi tapsın və beləcə sakitləşsin.", - "long": "11 aylıq Amelianı yatızdırmaq üçün anası Laura hiylə işlədir - körpənin yastığının ətrafına 10-dək əmzik qoyur ki, uşaq əlini atanda əmziyi tapa bilsin və beləcə sakitləşsin." - }, - "imageUrl": "ichef.bbci.co.uk/images/ic/$recipe/p05v108r.jpg", - "embedding": true, - "advertising": true, - "caption": "Körpəni yatızdıran \"10 əmzik\" kələyi", - "versions": [ - { - "versionId": "p05v0z21", - "types": [ - "Original" - ], - "duration": 78, - "durationISO8601": "PT1M18S", - "warnings": {}, - "availableTerritories": { - "uk": true, - "nonUk": true - }, - "availableFrom": 1516107981000 - } - ], - "smpKind": "programme", - "type": "media" - }, - "indexImage": { - "id": "99608538", - "subType": "index", - "href": "http://c.files.bbci.co.uk/1467C/production/_99608538_p05v108r.jpg", - "path": "/cpsprodpb/1467C/production/_99608538_p05v108r.jpg", - "height": 576, - "width": 1024, - "altText": "Keyframe #3", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:azeri/42697813", - "type": "cps" - } - }, - { - "id": "b8858fac-6e45-11e4-974d-37ae3db9bd6e", - "rank": 6, - "count": 2, - "urn": "urn:bbc:curie:asset:b8858fac-6e45-11e4-974d-37ae3db9bd6e", - "promo": { - "headlines": { - "shortHeadline": "Dünyanın ən hündür və ən qısa boylu adamları bir arada", - "headline": "Dünyanın ən hündür və ən qısa boylu adamları bir arada" - }, - "locators": { - "assetUri": "/azeri/multimedia/2014/11/141117_tallest_smallest_guinnes_bwr", - "cpsUrn": "urn:bbc:content:assetUri:azeri/multimedia/2014/11/141117_tallest_smallest_guinnes_bwr", - "curie": "http://www.bbc.co.uk/asset/b8858fac-6e45-11e4-974d-37ae3db9bd6e", - "assetId": "35883564" - }, - "summary": "Guinness Rekordlar Kitabının 60 illiyi münasibətilə \"Dünyanın ən hündür adamı\" titulunu qazanmış 2,51 metrlik Sultan Kösen və ən qısa boylu adamı, boyu 54,6 santimetr olan nepallı Çandra Bahadur Dangi Londonda görüşüblər.", - "timestamp": 1416223061000, - "language": "az", - "media": { - "id": "35883564", - "subType": "primary", - "format": "video", - "image": { - "id": "35883564", - "subType": "thumbnail", - "href": "http://a.files.bbci.co.uk/worldservice/live/assets/images/2014/11/17/141117105216_kosen_and_chandra_640x360_afp_nocredit.jpg", - "path": "/amz/worldservice/live/assets/images/2014/11/17/141117105216_kosen_and_chandra_640x360_afp_nocredit.jpg", - "height": 360, - "width": 640, - "altText": "Kosen, Chanrda", - "copyrightHolder": "", - "type": "image" - }, - "aspectRatio": "16:9", - "live": false, - "href": "http://www.bbc.co.uk/azeri/meta/dps/2014/11/emp/141117_tallest_smallest_guinnes_bwr.emp.xml", - "playlist": [ - { - "format": "mp4", - "bitrate": "168000", - "url": "https://wsodprogrf.akamaized.net/azeri/dps/2014/11/azeri_fguinness-bwr_f1725_f14_f11_141117_tallest_smallest_guinnes_bwr_16x9_lo.mp4" - }, - { - "format": "mp4", - "bitrate": "320000", - "url": "https://wsodprogrf.akamaized.net/azeri/dps/2014/11/azeri_fguinness-bwr_f1725_f14_f11_141117_tallest_smallest_guinnes_bwr_16x9_med.mp4" - }, - { - "format": "mp4", - "bitrate": "904000", - "url": "https://wsodprogrf.akamaized.net/azeri/dps/2014/11/azeri_fguinness-bwr_f1725_f14_f11_141117_tallest_smallest_guinnes_bwr_16x9_hi.mp4" - } - ], - "type": "legacyMedia" - }, - "indexImage": { - "id": "d5e339", - "subType": "index", - "href": "http://a.files.bbci.co.uk/worldservice/live/assets/images/2014/11/17/141117105216_kosen_and_chandra_512x288_afp_nocredit.jpg", - "path": "/amz/worldservice/live/assets/images/2014/11/17/141117105216_kosen_and_chandra_512x288_afp_nocredit.jpg", - "height": 288, - "width": 512, - "altText": "Kosen, Chanrda", - "copyrightHolder": "AFP", - "type": "image" - }, - "id": "urn:bbc:ares::asset:azeri/multimedia/2014/11/141117_tallest_smallest_guinnes_bwr", - "type": "cps" - } - }, - { - "id": "a0f74104-b91a-fd49-adce-367d77537802", - "rank": 7, - "count": 2, - "urn": "urn:bbc:curie:asset:a0f74104-b91a-fd49-adce-367d77537802", - "promo": { - "headlines": { - "shortHeadline": "Qadının qarnından 19kq-lıq xərçəng şişi çıxarılıb", - "headline": "Qadının qarnından 19kq-lıq xərçəng şişi çıxarılıb" - }, - "locators": { - "assetUri": "/azeri/media-42703911", - "cpsUrn": "urn:bbc:content:assetUri:azeri/media-42703911", - "curie": "http://www.bbc.co.uk/asset/a0f74104-b91a-fd49-adce-367d77537802", - "assetId": "42703911" - }, - "summary": "Britaniyada cərrahlar qadının qarın nahiyəsindən körpə uşaq böyüklüyündə xərçəng şişini çıxarıblar.", - "timestamp": 1516100160000, - "language": "az", - "passport": { - "category": { - "categoryId": "http://www.bbc.co.uk/ontologies/applicationlogic-news/News", - "categoryName": "News" - }, - "taggings": [] - }, - "media": { - "id": "p05v0lry", - "subType": "clip", - "format": "video", - "title": "Qadının qarnından körpə uşaq böyüklüyündə xərçəng şişi çıxarılır", - "synopses": { - "short": "Qadının qarnından körpə uşaq böyüklüyündə xərçəng şişi çıxarılır", - "medium": "Cərrahlar qadının qarın nahiyəsindən körpə uşaq böyüklüyündə xərçəng şişini çıxarırlar.", - "long": "Cərrahlar qadının qarın nahiyəsindən körpə uşaq böyüklüyündə xərçəng şişini çıxarırlar. \n \nƏməliyyat Birmingham şəhərindəki Queen Elizabeth Hospital xəstəxanasında həyata keçirilib." - }, - "imageUrl": "ichef.bbci.co.uk/images/ic/$recipe/p05v0m2q.jpg", - "embedding": true, - "advertising": true, - "caption": "Qadının qarnından körpə uşaq böyüklüyündə xərçəng şişi çıxarılır", - "versions": [ - { - "versionId": "p05v0ls0", - "types": [ - "Original" - ], - "duration": 108, - "durationISO8601": "PT1M48S", - "warnings": {}, - "availableTerritories": { - "uk": true, - "nonUk": true - }, - "availableFrom": 1516098736000 - } - ], - "smpKind": "programme", - "type": "media" - }, - "indexImage": { - "id": "99614346", - "subType": "index", - "href": "http://c.files.bbci.co.uk/FB55/production/_99614346_p05v0m2q.jpg", - "path": "/cpsprodpb/FB55/production/_99614346_p05v0m2q.jpg", - "height": 576, - "width": 1024, - "altText": "Keyframe #1", - "copyrightHolder": "Surgeons", - "type": "image" - }, - "id": "urn:bbc:ares::asset:azeri/media-42703911", - "type": "cps" - } - }, - { - "id": "88855444-291f-3e4e-a08c-3c3adaa3806f", - "rank": 8, - "count": 2, - "urn": "urn:bbc:curie:asset:88855444-291f-3e4e-a08c-3c3adaa3806f", - "promo": { - "headlines": { - "shortHeadline": "Gizli çəkiliş: İspaniya istixanalarında işçilər necə istismar olunurlar?", - "headline": "Gizli çəkiliş: İspaniya istixanalarında işçilər necə istismar olunurlar?" - }, - "locators": { - "assetUri": "/azeri/international-52710002", - "cpsUrn": "urn:bbc:content:assetUri:azeri/international-52710002", - "curie": "http://www.bbc.co.uk/asset/88855444-291f-3e4e-a08c-3c3adaa3806f", - "assetId": "52710002" - }, - "summary": "İspaniyanın cənubundakı Almeriya rayonu ucuz plastik istixanalara görə tanınır. Burada əsasən miqrant işçilər çalışırlar. BBC burada əməyin istismarı iddialarını araşdırıb.", - "timestamp": 1589804868000, - "language": "az", - "passport": { - "category": { - "categoryId": "http://www.bbc.co.uk/ontologies/applicationlogic-news/Feature", - "categoryName": "Feature" - }, - "campaigns": [ - { - "campaignId": "5a988e3739461b000e9dabfa", - "campaignName": "WS - Give me perspective" - } - ], - "taggings": [] - }, - "media": { - "id": "p08dhh8f", - "subType": "clip", - "format": "video", - "title": "Meyvə-tərəvəz isçiləri: \"Qul kimi işləmək istəmirsənsə, çıx\"", - "synopses": { - "short": "Meyvə-tərəvəz isçiləri: \"Qul kimi işləmək istəmirsənsə, çıx\"", - "long": "İspaniya dünyada ən böyük meyvə-tərəvəz istehsalçısıdır. İspanlar cənubdakı Almeriya rayonunu plastik dənizi adlandırırlar. On minlərlə hektar ərazidə ucuz plastik istixanalar tikilib və miqrant fəhlələrin burada topladıqları meyvə və tərəvəzlər Avropa bazarlarında satılır. BBC burada əməyin istismarı iddialarını araşdırıb.", - "medium": "İspaniyanın cənubundakı Almeriya rayonu ucuz plastik istixanalara görə tanınır. Burada əsasən miqrant fəhlələr çalışırlar. BBC burada əməyin istismarı iddialarını araşdırıb." - }, - "imageUrl": "ichef.bbci.co.uk/images/ic/$recipe/p08dhjd1.png", - "embedding": true, - "advertising": true, - "caption": "Gizli çəkiliş: İspaniyada istixanalarında işçilər necə istismar olunurlar?", - "versions": [ - { - "versionId": "p08dhh8k", - "types": [ - "Original" - ], - "duration": 338, - "durationISO8601": "PT5M38S", - "warnings": {}, - "availableTerritories": { - "uk": true, - "nonUk": true - }, - "availableFrom": 1589802864000 - } - ], - "imageCopyright": "BBC", - "smpKind": "programme", - "type": "media" - }, - "indexImage": { - "id": "112337111", - "subType": "index", - "href": "http://c.files.bbci.co.uk/2BA5/production/_112337111_screenshot2020-05-18at17.02.53.png", - "path": "/cpsprodpb/2BA5/production/_112337111_screenshot2020-05-18at17.02.53.png", - "height": 690, - "width": 1226, - "altText": "sahibkar, ispaniya", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:azeri/international-52710002", - "type": "cps" - } - }, - { - "id": "71ad9270-18d6-4645-bb27-fe321493a4e1", - "rank": 9, - "count": 2, - "urn": "urn:bbc:curie:asset:71ad9270-18d6-4645-bb27-fe321493a4e1", - "promo": { - "headlines": { - "shortHeadline": "14 yaşında din xadimi tərfindən təcavüzə uğrayan kişinin hekayəsi", - "headline": "14 yaşında din xadimi tərfindən təcavüzə uğrayan kişinin hekayəsi" - }, - "locators": { - "assetUri": "/azeri/international-44199295", - "cpsUrn": "urn:bbc:content:assetUri:azeri/international-44199295", - "curie": "http://www.bbc.co.uk/asset/71ad9270-18d6-4645-bb27-fe321493a4e1", - "assetId": "44199295" - }, - "summary": "Din xadimi tərəfindən təcavüzə uğrayan hindistanlı kişi 14 il sonra cinayətin dəhşətindən danışır.", - "timestamp": 1526913651000, - "language": "az", - "passport": { - "category": { - "categoryId": "http://www.bbc.co.uk/ontologies/applicationlogic-news/News", - "categoryName": "News" - }, - "taggings": [] - }, - "media": { - "id": "p067ssyy", - "subType": "clip", - "format": "video", - "title": "Yeniyetmə olanda təcavüzə uğrayan kişi: \"14 il bu barədə danışa bilmədim\"", - "synopses": { - "short": "Yeniyetmə olanda təcavüzə uğrayan kişi: \"14 il bu barədə danışa bilmədim\"", - "long": "14 yaşında din xadimi tərfindən təcavüzə uğrayan hindistanlı kişi illər sonra cinayətin dəhşətindən danışır. \n O, 14 il boyunca bu barədə heç kimə heç nə deyə bilməyib. Səbəbi isə cəmiyyətdə uşaq istismarına olan münasibətdir.\nHindistanda hər 15 dəqiqədə bir uşaq cinsi istismara məruz qalır. \nTəkcə 2016-cı ildə uşaqlara cinsi istismarla bağlı 36,022 hal barədə məlumat verilib.", - "medium": "14 yaşında din xadimi tərfindən təcavüzə uğrayan hindistanlı kişi illər sonra cinayətin dəhşətindən danışır." - }, - "imageUrl": "ichef.bbci.co.uk/images/ic/$recipe/p067swq7.jpg", - "embedding": true, - "advertising": false, - "caption": "Yeniyetmə olanda təcavüzə uğrayan kişi: \"14 il bu barədə danışa bilmədim\"", - "versions": [ - { - "versionId": "p067ssz2", - "types": [ - "Original" - ], - "duration": 168, - "durationISO8601": "PT2M48S", - "warnings": {}, - "availableTerritories": { - "uk": true, - "nonUk": true - }, - "availableFrom": 1526907335000 - } - ], - "imageCopyright": "BBC", - "smpKind": "programme", - "type": "media" - }, - "indexImage": { - "id": "101662287", - "subType": "index", - "href": "http://c.files.bbci.co.uk/13192/production/_101662287_p067swq7.jpg", - "path": "/cpsprodpb/13192/production/_101662287_p067swq7.jpg", - "height": 576, - "width": 1024, - "altText": "hindistanli təcavüz qurbanı", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:azeri/international-44199295", - "type": "cps" - } - }, - { - "id": "17bd8d0e-63c8-ea44-b20a-e9da176c9fd2", - "rank": 10, - "count": 2, - "urn": "urn:bbc:curie:asset:17bd8d0e-63c8-ea44-b20a-e9da176c9fd2", - "promo": { - "headlines": { - "shortHeadline": "Futbola həvəsi olan uşaqlar hansı sınaqlardan keçir?", - "headline": "Azərbaycan: Futbola həvəsi olan uşaqlar hansı sınaqlardan keçir?" - }, - "locators": { - "assetUri": "/azeri/azerbaijan-44776438", - "cpsUrn": "urn:bbc:content:assetUri:azeri/azerbaijan-44776438", - "curie": "http://www.bbc.co.uk/asset/17bd8d0e-63c8-ea44-b20a-e9da176c9fd2", - "assetId": "44776438" - }, - "summary": "Oyunlarda məşqçilər tərəfindən bəyənilən azyaşlı, eyni zamanda iki fərqli yaş qrupu ilə futbol oynayır.", - "timestamp": 1531219603000, - "language": "az", - "passport": { - "category": { - "categoryId": "http://www.bbc.co.uk/ontologies/applicationlogic-news/News", - "categoryName": "News" - }, - "taggings": [] - }, - "media": { - "id": "p06dbzkw", - "subType": "clip", - "format": "video", - "title": "Futbol həvəsi olan uşaqlar hansı sınaqlardan keçir", - "synopses": { - "short": "Fərid Cavadlının futbola olan həvəsinə görə valideyinləri onu futbol məktəbinə yazdırıb.", - "long": "Fərid Cavadlı 4-cü sinifdə oxuyur. 2 ildir Xətai uşaq futbol klubunda məşq edir.\n\nSəhərlər erkən oyanmaq asan olmasa da, futbola olan həvəsi şirin yuxuya qalib gəlir.\nFərid deyir, kumiri portuqaliyalı futbolçu Ricardo Quaresmadır.\nHəftədə 3 dəfə məşqə gedən Fəridin futbolu seçməsi heç də asan olmayıb.\n\nFəridin anası Tamilla Qafarova deyir ki, \"Əvvəl elə bilirdim ki, bu keçici həvəsdir və keçib gedəcək, amma onu futbola qoyanda gördüm ki, həvəsi birə-beş artdı. İndi bunu zamana və Fəridin öz öhdəsinə buraxmışam\".\n\nFəridin məşq etdiyi Xətai futbol uşaq futbol klubunun məşqçisi Cəmaləddin Babayev deyir ki, uşaqların futbola cəlb ediləmsi üçün bir neçə şərt tələb olunur. \n\n\"Mütləq uşaq futbol akademiyaları olmalıdır, gənclər nəzarətsiz qalmamalıdır, elə olsa uşaqlar həm futbol oynayar, həm də dərslərindən geri qalmazlar\" Cəmaləddin Babayev belə deyir. \n \nKlubun yaradıcılarından olan Rəhman Abbasov deyir ki, klub təzə yaransa da, azyaşlılar arasında ölkə çempionatında ilk onluğa düşə bilib. \n\nRəhman Abbasovun sözlərinə görə, \"Çempionatın hər bir oyununa çıxmaq uşaqlar üçün böyük bir təcrübədir. Biz uduzmaqdan qorxmurduq, utanmırdıq. Məşqlər, oyunlar göstərdi ki, uşaqlar tez bir zamanda onlara öyrədilmiş müəyyən incəlikləri həyata keçirə bildilər\".\n\n3 il Neftçi klubunda məşqçi olmuş Ramiz Hüseynov deyir ki, Azərbaycanda futbola maraq və diqqət artmaqdadır. \n\nOnun sözlərinə görə, klubda gənc futbolçuların yetişməsi üçün şərait yaradılıb. \n\nBaş məşqçi Ramiz Hüseynov deyir: \"Uşaqları valideyinlər də gətirir, biz özümümz də gedirik məktəblərə baxırıq. Görürük ki, bir balaca yaxşı uşaq var onlarla, valideyinləri ilə danışırıq ki, belə bir klub var əgər istəyirsizsə gələ bilərsiz və biz bacardığımız gücümüzü o uşağa sərf etməyə hazırıq. \n\nFərid inanrır ki, bir gün o da ulduz futbolçu olacaq. O bunun zəhmətli məşqlərdən keçdiyini bilir və buna görə də öz üzərində saatlarla çalışır.", - "medium": "Oyunlarda məşqçilər tərəfindən bəyənilən azyaşlı, eyni zamanda iki yaş qrupu ilə futbol oynayır." - }, - "imageUrl": "ichef.bbci.co.uk/images/ic/$recipe/p06dcnlq.jpg", - "embedding": true, - "advertising": false, - "caption": "Azərbaycan: Futbola həvəsi olan uşaqlar hansı sınaqlardan keçir?", - "versions": [ - { - "versionId": "p06dcn80", - "types": [ - "Editorial" - ], - "duration": 178, - "durationISO8601": "PT2M58S", - "warnings": {}, - "availableTerritories": { - "uk": true, - "nonUk": true - }, - "availableFrom": 1531211741000 - } - ], - "imageCopyright": "BBC", - "smpKind": "programme", - "type": "media" - }, - "indexImage": { - "id": "102455203", - "subType": "index", - "href": "http://c.files.bbci.co.uk/762F/production/_102455203_p06dc277.jpg", - "path": "/cpsprodpb/762F/production/_102455203_p06dc277.jpg", - "height": 576, - "width": 1024, - "altText": "Keyframe #9", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:azeri/azerbaijan-44776438", - "type": "cps" - } - }, - { - "id": "08a67290-e816-11e4-b581-84b73db9bd6e", - "rank": 11, - "count": 2, - "urn": "urn:bbc:curie:asset:08a67290-e816-11e4-b581-84b73db9bd6e", - "promo": { - "headlines": { - "shortHeadline": "Zorxana nədir?", - "headline": "Zorxana nədir?" - }, - "locators": { - "assetUri": "/azeri/multimedia/2015/04/150421_zorkhana_video", - "cpsUrn": "urn:bbc:content:assetUri:azeri/multimedia/2015/04/150421_zorkhana_video", - "curie": "http://www.bbc.co.uk/asset/08a67290-e816-11e4-b581-84b73db9bd6e", - "assetId": "38377131" - }, - "summary": "2017-ci ildə Azərbaycanda baş tutacaq İslam Həmrəyliyi Oyunlarının proqramına milli idman növü olan Zorxana da daxil edilib.", - "timestamp": 1429619615000, - "language": "az", - "media": { - "id": "38377131", - "subType": "primary", - "format": "video", - "image": { - "id": "38377131", - "subType": "thumbnail", - "href": "http://a.files.bbci.co.uk/worldservice/live/assets/images/2015/04/21/150421114844_zorkhana_bbc_640x360_bbc_nocredit.jpg", - "path": "/amz/worldservice/live/assets/images/2015/04/21/150421114844_zorkhana_bbc_640x360_bbc_nocredit.jpg", - "height": 360, - "width": 640, - "altText": "", - "copyrightHolder": "", - "type": "image" - }, - "aspectRatio": "16:9", - "live": false, - "href": "http://www.bbc.co.uk/azeri/meta/dps/2015/04/emp/150421_zorkhana_video.emp.xml", - "playlist": [ - { - "format": "mp4", - "bitrate": "168000", - "url": "https://wsodprogrf.akamaized.net/azeri/dps/2015/04/azeri~fzor_short~f1307~f21~f4_16x9_lo.mp4" - }, - { - "format": "mp4", - "bitrate": "320000", - "url": "https://wsodprogrf.akamaized.net/azeri/dps/2015/04/azeri~fzor_short~f1307~f21~f4_16x9_med.mp4" - }, - { - "format": "mp4", - "bitrate": "904000", - "url": "https://wsodprogrf.akamaized.net/azeri/dps/2015/04/azeri~fzor_short~f1307~f21~f4_16x9_hi.mp4" - } - ], - "type": "legacyMedia" - }, - "indexImage": { - "id": "d5e257", - "subType": "index", - "href": "http://a.files.bbci.co.uk/worldservice/live/assets/images/2015/04/21/150421114844_zorkhana_bbc_512x288_bbc_nocredit.jpg", - "path": "/amz/worldservice/live/assets/images/2015/04/21/150421114844_zorkhana_bbc_512x288_bbc_nocredit.jpg", - "height": 288, - "width": 512, - "altText": "", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:azeri/multimedia/2015/04/150421_zorkhana_video", - "type": "cps" - } - }, - { - "id": "fdf8bb77-6009-8f4e-92f7-aea26a637e26", - "rank": 12, - "count": 1, - "urn": "urn:bbc:curie:asset:fdf8bb77-6009-8f4e-92f7-aea26a637e26", - "promo": { - "headlines": { - "shortHeadline": "Gündüzlər kişi, gecələr qadın...Onlar kimdir?", - "headline": "Gündüzlər kişi, gecələr qadın...Onlar kimdir?" - }, - "locators": { - "assetUri": "/azeri/international-45162632", - "cpsUrn": "urn:bbc:content:assetUri:azeri/international-45162632", - "curie": "http://www.bbc.co.uk/asset/fdf8bb77-6009-8f4e-92f7-aea26a637e26", - "assetId": "45162632" - }, - "summary": "Hindistanda kişilərin qadın geyimində çıxış etməsi yeni hadisədir.", - "timestamp": 1534075044000, - "language": "az", - "passport": { - "category": { - "categoryId": "http://www.bbc.co.uk/ontologies/applicationlogic-news/News", - "categoryName": "News" - }, - "taggings": [] - }, - "media": { - "id": "p06h3v7s", - "subType": "clip", - "format": "video", - "title": "Gündüzlər kişi, gecələr qadın olan hüquqşünaslar", - "synopses": { - "short": "Gündüzlər kişi, gecələr qadın olan hüquqşünaslar", - "long": "Hindistanda kişilərin qadın geyimində çıxış etməsi yeni hadisədir.\n\nBu isə iki hüquqşünası özlərini ifadə etməkdən çəkindirmir.", - "medium": "Hindistanda kişilərin qadın geyimində çıxış etməsi yeni hadisədir." - }, - "imageUrl": "ichef.bbci.co.uk/images/ic/$recipe/p06h3vm8.jpg", - "embedding": true, - "advertising": true, - "caption": "Gündüzlər kişi, gecələr qadın olan hüquqşünaslar", - "versions": [ - { - "versionId": "p06h3v81", - "types": [ - "Original" - ], - "duration": 102, - "durationISO8601": "PT1M42S", - "warnings": {}, - "availableTerritories": { - "uk": true, - "nonUk": true - }, - "availableFrom": 1533910862000 - } - ], - "imageCopyright": "BBC", - "smpKind": "programme", - "type": "media" - }, - "indexImage": { - "id": "102926254", - "subType": "index", - "href": "http://c.files.bbci.co.uk/B0CE/production/_102926254_p06h3vm8.jpg", - "path": "/cpsprodpb/B0CE/production/_102926254_p06h3vm8.jpg", - "height": 576, - "width": 1024, - "altText": "Keyframe #1", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:azeri/international-45162632", - "type": "cps" - } - }, - { - "id": "fa0585ea-1aea-284c-b5d2-4b53a41ce9d8", - "rank": 13, - "count": 1, - "urn": "urn:bbc:curie:asset:fa0585ea-1aea-284c-b5d2-4b53a41ce9d8", - "promo": { - "headlines": { - "shortHeadline": "Bakılı gey: Sevgilimə görə buradayam, yoxsa çoxdan getmişdim bu ölkədən", - "headline": "Bakılı gey: Sevgilimə görə buradayam, yoxsa çoxdan getmişdim bu ölkədən" - }, - "locators": { - "assetUri": "/azeri/media-39953555", - "cpsUrn": "urn:bbc:content:assetUri:azeri/media-39953555", - "curie": "http://www.bbc.co.uk/asset/fa0585ea-1aea-284c-b5d2-4b53a41ce9d8", - "assetId": "39953555" - }, - "summary": "Bu gün Beynəlxalq Homofobiya və Transfobiya ilə Mübarizə Günüdür.", - "timestamp": 1495041147000, - "language": "az", - "passport": { - "category": { - "categoryId": "http://www.bbc.co.uk/ontologies/applicationlogic-news/News", - "categoryName": "News" - }, - "taggings": [] - }, - "media": { - "id": "p0536x0p", - "subType": "clip", - "format": "video", - "title": "Bakılı gey: Sevgilimə görə burdayam, yoxsa çoxdan getmişdim bu ölkədən", - "synopses": { - "short": "Bakılı gey: Sevgilimə görə burdayam, yoxsa çoxdan getmişdim bu ölkədən", - "medium": "Bu gün Beynəlxalq Homofobiya və Transfobiya ilə Mübarizə Günüdür.", - "long": "Bu gün Beynəlxalq Homofobiya və Transfobiya ilə Mübarizə Günüdür.\n\nBəs Azərbaycanda geylər hansı təzyiqlərə məruz qalırlar?\n\nBakıda kimliyini açıqlamaq istəməyən LGBT (Lezbian, Gey, Biseksual və Transseksual) üzvü bu barədə danışıb.\n\nBBC Azərbaycanca üçün müsahibəni Bakıda Ömər Məmmədov hazırlayıb." - }, - "imageUrl": "ichef.bbci.co.uk/images/ic/$recipe/p0536xdb.jpg", - "embedding": true, - "advertising": true, - "caption": "Bakılı gey: Sevgilimə görə burdayam, yoxsa çoxdan getmişdim bu ölkədən", - "versions": [ - { - "versionId": "p0536x0r", - "types": [ - "Original" - ], - "duration": 167, - "durationISO8601": "PT2M47S", - "warnings": {}, - "availableTerritories": { - "uk": true, - "nonUk": true - }, - "availableFrom": 1495040612000 - } - ], - "smpKind": "programme", - "type": "media" - }, - "indexImage": { - "id": "96091847", - "subType": "index", - "href": "http://c.files.bbci.co.uk/12443/production/_96091847_p0536xdb.jpg", - "path": "/cpsprodpb/12443/production/_96091847_p0536xdb.jpg", - "height": 576, - "width": 1024, - "altText": "Gey", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:azeri/media-39953555", - "type": "cps" - } - }, - { - "id": "f13d6a4a-a476-a149-80f2-508089ad75be", - "rank": 14, - "count": 1, - "urn": "urn:bbc:curie:asset:f13d6a4a-a476-a149-80f2-508089ad75be", - "promo": { - "headlines": { - "shortHeadline": "Mumbay: anaları seks işçisi olan qız uşaqlarının hekayəti", - "headline": "Anaları seks işçisi olan qız uşaqlarının hekayəti" - }, - "locators": { - "assetUri": "/azeri/international-41035959", - "cpsUrn": "urn:bbc:content:assetUri:azeri/international-41035959", - "curie": "http://www.bbc.co.uk/asset/f13d6a4a-a476-a149-80f2-508089ad75be", - "assetId": "41035959" - }, - "summary": "Anaları seks işçisi olan qız uşaqları deyir ki, onlara həyatın acılıqlarına üstün gəlməyə kömək edən amil insanları bağışlamaq qabiliyyəti olub.", - "timestamp": 1503592700000, - "language": "az", - "media": { - "id": "p05d76n1", - "subType": "clip", - "format": "video", - "title": "Hindistan: qırmızı işıq rayonunda böyümüş qız uşaqları", - "synopses": { - "short": "Hindistan: Anaları seks işçisi olan qız uşaqlarının hekayəti", - "medium": "Anaları seks işçisi olan qız uşaqları deyir ki, onlara həyatın acılıqlarına üstün gəlməyə kömək edən amil insanları bağışlamaq qabiliyyəti olub.", - "long": "Anaları seks işçisi olan qız uşaqları deyir ki, onlara həyatın acılıqlarına üstün gəlməyə kömək edən amil insanları bağışlamaq qabiliyyəti olub." - }, - "imageUrl": "ichef.bbci.co.uk/images/ic/$recipe/p05d7767.jpg", - "embedding": true, - "advertising": true, - "caption": "Hindistan: Anaları seks işçisi olan qız uşaqlarının hekayəti", - "versions": [ - { - "versionId": "p05d76n3", - "types": [ - "Original" - ], - "duration": 142, - "durationISO8601": "PT2M22S", - "warnings": {}, - "availableTerritories": { - "uk": true, - "nonUk": true - }, - "availableFrom": 1503591645000 - } - ], - "smpKind": "programme", - "type": "media" - }, - "indexImage": { - "id": "97477690", - "subType": "index", - "href": "http://c.files.bbci.co.uk/25CD/production/_97477690_p05d7767.jpg", - "path": "/cpsprodpb/25CD/production/_97477690_p05d7767.jpg", - "height": 576, - "width": 1024, - "altText": "Keyframe #1", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:azeri/international-41035959", - "type": "cps" - } - }, - { - "id": "ed13cb0d-43e9-da49-8db0-731a75a6c5c1", - "rank": 15, - "count": 1, - "urn": "urn:bbc:curie:asset:ed13cb0d-43e9-da49-8db0-731a75a6c5c1", - "promo": { - "headlines": { - "shortHeadline": "Hindistan: 14 yaşında əkiz doğmuş qadın güləşçi", - "headline": "Hindistan: 14 yaşında əkiz doğmuş qadın güləşçi" - }, - "locators": { - "assetUri": "/azeri/42708561", - "cpsUrn": "urn:bbc:content:assetUri:azeri/42708561", - "curie": "http://www.bbc.co.uk/asset/ed13cb0d-43e9-da49-8db0-731a75a6c5c1", - "assetId": "42708561" - }, - "summary": "2015-ci ildə Hindistan Milli Oyunlarında bürünc medal qazanmış Neetu hazırda 2020-ci ilin Olimpiya Oyunları barədə düşünür.", - "timestamp": 1516253977000, - "language": "az", - "passport": { - "category": { - "categoryId": "http://www.bbc.co.uk/ontologies/applicationlogic-news/News", - "categoryName": "News" - }, - "taggings": [] - }, - "media": { - "id": "p05v5qxg", - "subType": "clip", - "format": "video", - "title": "Uşağikən əkiz doğmuş Hindistanın aparıcı qadın güləşçisi", - "synopses": { - "short": "Uşağikən əkiz doğmuş Hindistanın aparıcı qadın güləşçisi", - "medium": "2015-ci ildə Neetu Hindistan Milli Oyunlarında güləşdə bürünc medal qazanıb. Hazırda isə o, 2020-ci ilin\nOlimpiya Oyunları barədə düşünür.", - "long": "2015-ci ildə Neetu Hindistan Milli Oyunlarında güləşdə bürünc medal qazanıb. Hazırda isə o, 2020-ci ilin Olimpiya Oyunları barədə düşünür." - }, - "imageUrl": "ichef.bbci.co.uk/images/ic/$recipe/p05v5t7m.jpg", - "embedding": true, - "advertising": true, - "caption": "14 yaşında əkiz doğmuş Hindistanın aparıcı qadın güləşçisi", - "versions": [ - { - "versionId": "p05v5qxl", - "types": [ - "Original" - ], - "duration": 133, - "durationISO8601": "PT2M13S", - "warnings": {}, - "availableTerritories": { - "uk": true, - "nonUk": true - }, - "availableFrom": 1516206893000 - } - ], - "smpKind": "programme", - "type": "media" - }, - "indexImage": { - "id": "99637916", - "subType": "index", - "href": "http://c.files.bbci.co.uk/F215/production/_99637916_p05v5t7m.jpg", - "path": "/cpsprodpb/F215/production/_99637916_p05v5t7m.jpg", - "height": 576, - "width": 1024, - "altText": "Keyframe #3", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:azeri/42708561", - "type": "cps" - } - }, - { - "id": "e4df5268-ef89-11e2-a526-5be63db9bd6e", - "rank": 16, - "count": 1, - "urn": "urn:bbc:curie:asset:e4df5268-ef89-11e2-a526-5be63db9bd6e", - "promo": { - "headlines": { - "shortHeadline": "Marilyn Monroe-nun heç yayımlanmayan şəkilləri", - "headline": "Marilyn Monroe-nun heç yayımlanmayan şəkilləri" - }, - "locators": { - "assetUri": "/azeri/multimedia/2013/07/130718_monroe", - "cpsUrn": "urn:bbc:content:assetUri:azeri/multimedia/2013/07/130718_monroe", - "curie": "http://www.bbc.co.uk/asset/e4df5268-ef89-11e2-a526-5be63db9bd6e" - }, - "summary": "Amerikalı aktrisa və müğənni Marilyn Monroe-nun indiyədək çap olunmamış fotoşəkilləri Kaliforniyadakı hərraca çıxarılaraq böyük maraq doğurub.", - "timestamp": 1374140066000, - "language": "az", - "media": { - "id": "25933085", - "subType": "primary", - "format": "video", - "image": { - "id": "25933085", - "subType": "thumbnail", - "href": "http://a.files.bbci.co.uk/worldservice/live/assets/images/2013/07/18/130718091709_marilyn_monroe_640x360_reuters_nocredit.jpg", - "path": "/amz/worldservice/live/assets/images/2013/07/18/130718091709_marilyn_monroe_640x360_reuters_nocredit.jpg", - "height": 360, - "width": 640, - "altText": "", - "copyrightHolder": "", - "type": "image" - }, - "aspectRatio": "16:9", - "live": false, - "href": "http://www.bbc.co.uk/azeri/meta/dps/2013/07/emp/130718_monroe.emp.xml", - "playlist": [ - { - "format": "mp4", - "bitrate": "168000", - "url": "https://wsodprogrf.akamaized.net/azeri/dps/2013/07/azeri~fmonroe~f1000~f18~f7_16x9_lo.mp4" - }, - { - "format": "mp4", - "bitrate": "320000", - "url": "https://wsodprogrf.akamaized.net/azeri/dps/2013/07/azeri~fmonroe~f1000~f18~f7_16x9_med.mp4" - }, - { - "format": "mp4", - "bitrate": "904000", - "url": "https://wsodprogrf.akamaized.net/azeri/dps/2013/07/azeri~fmonroe~f1000~f18~f7_16x9_hi.mp4" - } - ], - "type": "legacyMedia" - }, - "indexImage": { - "id": "d5e208", - "subType": "index", - "href": "http://a.files.bbci.co.uk/worldservice/live/assets/images/2013/07/18/130718091708_marilyn_monroe_112x63_reuters_nocredit.jpg", - "path": "/amz/worldservice/live/assets/images/2013/07/18/130718091708_marilyn_monroe_112x63_reuters_nocredit.jpg", - "height": 63, - "width": 112, - "altText": "Marilyn Monroe", - "copyrightHolder": "", - "type": "image" - }, - "id": "urn:bbc:ares::asset:azeri/multimedia/2013/07/130718_monroe", - "type": "cps" - } - }, - { - "id": "c67b0978-8664-e744-a822-287c0724f1e9", - "rank": 17, - "count": 1, - "urn": "urn:bbc:curie:asset:c67b0978-8664-e744-a822-287c0724f1e9", - "promo": { - "headlines": { - "shortHeadline": "Avropa modasının gözü çeçen qardaşlarında", - "headline": "Avropa modasının gözü çeçen qardaşlarında" - }, - "locators": { - "assetUri": "/azeri/international-45779299", - "cpsUrn": "urn:bbc:content:assetUri:azeri/international-45779299", - "curie": "http://www.bbc.co.uk/asset/c67b0978-8664-e744-a822-287c0724f1e9", - "assetId": "45779299" - }, - "summary": "Çeçenistandan Avropaya gəlmiş Dulatov qardaşlarına Avropanın aparıcı moda brendlərinin gözü düşüb. Qardaşların dördü də müxtəlif geyim brendləri üçün modellik edirlər.", - "timestamp": 1539100797000, - "language": "az", - "passport": { - "category": { - "categoryId": "http://www.bbc.co.uk/ontologies/applicationlogic-news/News", - "categoryName": "News" - }, - "campaigns": [ - { - "campaignId": "5a988e4739461b000e9dabfc", - "campaignName": "Update me" - } - ], - "taggings": [] - }, - "media": { - "id": "p06nd6rm", - "subType": "clip", - "format": "video", - "title": "Avropa modasının gözü çeçen qardaşlarında", - "synopses": { - "short": "Avropa modasının gözü çeçen qardaşlarında", - "long": "Çeçenistandan Avropaya gəlmiş Dulatov qardaşlarına Avropanın aparıcı moda brendlərinin göü düşüb. Qardaşların dördü də müxtəlif geyim brendləri üçün modellik edir.", - "medium": "Çeçenistandan Avropaya gəlmiş Dulatov qardaşlarına Avropanın aparıcı moda brendlərinin göü düşüb. Qardaşların dördü də müxtəlif geyim brendləri üçün modellik edir." - }, - "imageUrl": "ichef.bbci.co.uk/images/ic/$recipe/p06nd7bb.jpg", - "embedding": true, - "advertising": true, - "caption": "Avropa modasının gözü çeçen qardaşlarında", - "versions": [ - { - "versionId": "p06nd6rp", - "types": [ - "Original" - ], - "duration": 135, - "durationISO8601": "PT2M15S", - "warnings": {}, - "availableTerritories": { - "uk": true, - "nonUk": true - }, - "availableFrom": 1539096085000 - } - ], - "imageCopyright": "BBC", - "smpKind": "programme", - "type": "media" - }, - "indexImage": { - "id": "103785147", - "subType": "index", - "href": "http://c.files.bbci.co.uk/121AE/production/_103785147_p06nd7bb.jpg", - "path": "/cpsprodpb/121AE/production/_103785147_p06nd7bb.jpg", - "height": 576, - "width": 1024, - "altText": "Keyframe #1", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:azeri/international-45779299", - "type": "cps" - } - }, - { - "id": "c4c9de01-b659-9647-9f6f-b118c6c8548a", - "rank": 18, - "count": 1, - "urn": "urn:bbc:curie:asset:c4c9de01-b659-9647-9f6f-b118c6c8548a", - "promo": { - "headlines": { - "shortHeadline": "\"Hansı banka girirəm deyirlər dollar yoxdur”", - "headline": "Bakıda alıcı: \"Hansı banka girirəm deyirlər dollar yoxdur”" - }, - "locators": { - "assetUri": "/azeri/azerbaijan-37250417", - "cpsUrn": "urn:bbc:content:assetUri:azeri/azerbaijan-37250417", - "curie": "http://www.bbc.co.uk/asset/c4c9de01-b659-9647-9f6f-b118c6c8548a", - "assetId": "37250417" - }, - "summary": "BBC Azərbaycanca valyuta dəyişmə məntəqələri qarşısında dollar almağa çalışan müştərilərlə söhbət edib.", - "timestamp": 1472744086000, - "language": "az", - "media": { - "id": "p046j16k", - "subType": "clip", - "format": "video", - "title": "Hansı banka girirəm deyirlər “dollar yoxdur”", - "synopses": { - "short": "Hansı banka girirəm deyirlər “dollar yoxdur”", - "medium": "BBC Azərbaycanca valyuta dəyişmə məntəqələri qarşısında dollar almağa çalışan müştərilərlə söhbət edib.", - "long": "Son bir neçə gündür paytaxtda yerləşən bankların bir hissəsi dollarla yanaşı avro və funt sterlinq kimi digər xarici valyutaların satışını da dayandırıb. \n\nBundan əvvəl isə banklar 100-300 dollar limiti ilə də olsa filiallarında valyutanın satışını həyata keçirirdi. Banklar bunu hərracdan kifayət qədər xarici valyuta ala bilməmələri ilə izah edir. \n\nMərkəzi Bank isə deyir ki, kommersiya bankları valyuta tələblərini qurumun həftədə iki dəfə keçirdiyi hərraclar vasitəsilə ödəyə bilmədikdə, əlavə olaraq banklararası valyuta bazarına müraciət etməklə öz tələblərini ödəyə bilər.\n\nValyuta alıcılarının bəziləri deyir ki, onlar iki gündür \"200 dollar pul tapa bilmir\". Onlardan bəziləri 100 dollar üçün bankların 10 filialına baş çəkdiyini də vurğulayır. \n\n\"Hansına [banka] girirəm deyir, dollar yoxdur. Alış var, amma satış yoxdur\", müştəridən biri deyir. \nBanklar vəziyyətin stabilləşməsi üçün özlərinin də gözləmə mövqeyində olduqlarını deyir, amma bank əməkdaşlarından nəyi gözlədiklərinə aydınlıq gətirən olmayıb. \n\nBBC Azərbaycancanın müxbiri Elnarə Məmmədova valyuta dəyişmə məntəqələri qarşısındakı müştərilərlə həmsöhbət olub." - }, - "imageUrl": "ichef.bbci.co.uk/images/ic/$recipe/p046jh3x.jpg", - "embedding": true, - "advertising": true, - "caption": "Hansı banka girirəm deyirlər “dollar yoxdur”", - "versions": [ - { - "versionId": "p046j16q", - "types": [ - "Original" - ], - "duration": 95, - "durationISO8601": "PT1M35S", - "warnings": {}, - "availableTerritories": { - "uk": false, - "nonUk": false - }, - "availableFrom": 1472740717000 - } - ], - "smpKind": "programme", - "type": "media" - }, - "indexImage": { - "id": "90997761", - "subType": "index", - "href": "http://c.files.bbci.co.uk/418B/production/_90997761_p046j2pl.jpg", - "path": "/cpsprodpb/418B/production/_90997761_p046j2pl.jpg", - "height": 575, - "width": 1024, - "altText": "Bank müştərisi", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:azeri/azerbaijan-37250417", - "type": "cps" - } - }, - { - "id": "b1928b27-77dc-164e-a1df-5bb2cd12a2ed", - "rank": 19, - "count": 1, - "urn": "urn:bbc:curie:asset:b1928b27-77dc-164e-a1df-5bb2cd12a2ed", - "promo": { - "headlines": { - "shortHeadline": "Həvəskar dağçı: \"Qrupun tərkibində kifayət qədər təcrübəli dağçılar olduğundan, ümid edirik salamatdırlar\"", - "headline": "Həvəskar dağçı: \"Qrupun tərkibində kifayət qədər təcrübəli dağçılar olduğundan, ümid edirik, salamatdırlar\"" - }, - "locators": { - "assetUri": "/azeri/media-42496523", - "cpsUrn": "urn:bbc:content:assetUri:azeri/media-42496523", - "curie": "http://www.bbc.co.uk/asset/b1928b27-77dc-164e-a1df-5bb2cd12a2ed", - "assetId": "42496523" - }, - "summary": "Dekabrın 23-də Azərbaycanda Tufandağ ətrafına səfər edən 3 gənc itkin düşüb.", - "timestamp": 1514385786000, - "language": "az", - "passport": { - "category": { - "categoryId": "http://www.bbc.co.uk/ontologies/applicationlogic-news/News", - "categoryName": "News" - }, - "taggings": [] - }, - "media": { - "id": "p05s420n", - "subType": "clip", - "format": "video", - "title": "\"Qrupun tərkibində kifayət qədər təcrübəli dağçılar olduğundan, ümid edirik salamatdırlar\", həvəskar dağçı", - "synopses": { - "short": "\"Qrupun tərkibində kifayət qədər təcrübəli dağçılar olduğundan, ümid edirik salamatdırlar\"", - "medium": "Dekabrın 23-də Azərbaycanda Tufandağ ətrafına səfər edən 3 gənc itkin düşüb.", - "long": "Dekabrın 23-də Azərbaycanda Tufandağ ətrafına səfər edən 3 gənc itkin düşüb. \n\nOnlar \"Gilavar\" - hava və ekstrim idman klubunun üzvləri Namiq Bünyadov, Babur Hüseynov və Fəridə Cəbrayıldır.\n\nBBC Azərbaycanca müxbiri Günel Səfərovaya danışan həvəskar dağçı və bələdçi Toğrul Cəfərov, dağçıların salamat olduğuna ümid etdiklərini bildirib." - }, - "imageUrl": "ichef.bbci.co.uk/images/ic/$recipe/p05s42ft.jpg", - "embedding": true, - "advertising": true, - "caption": "\"Qrupun tərkibində kifayət qədər təcrübəli dağçılar olduğundan, ümid edirik salamatdırlar\"", - "versions": [ - { - "versionId": "p05s420s", - "types": [ - "Original" - ], - "duration": 193, - "durationISO8601": "PT3M13S", - "warnings": {}, - "availableTerritories": { - "uk": true, - "nonUk": true - }, - "availableFrom": 1514385389000 - } - ], - "smpKind": "programme", - "type": "media" - }, - "indexImage": { - "id": "99382634", - "subType": "index", - "href": "http://c.files.bbci.co.uk/AA6C/production/_99382634_dagci2.jpg", - "path": "/cpsprodpb/AA6C/production/_99382634_dagci2.jpg", - "height": 623, - "width": 1107, - "altText": "dağçı", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:azeri/media-42496523", - "type": "cps" - } - }, - { - "id": "ade622dc-bcca-11e3-b368-10b43db9bd6e", - "rank": 20, - "count": 1, - "urn": "urn:bbc:curie:asset:ade622dc-bcca-11e3-b368-10b43db9bd6e", - "promo": { - "headlines": { - "shortHeadline": " Windows telefonları səslə idarə olunacaq", - "headline": " Windows telefonları səslə idarə olunacaq" - }, - "locators": { - "assetUri": "/azeri/multimedia/2014/04/140405_click", - "cpsUrn": "urn:bbc:content:assetUri:azeri/multimedia/2014/04/140405_click", - "curie": "http://www.bbc.co.uk/asset/ade622dc-bcca-11e3-b368-10b43db9bd6e" - }, - "summary": "Amazon TV Fire qurğusunu buraxır, Sentinel peyki təbii fəlakətlərdə kömək edəcək; Windows telefonları səslə idarə olunacaq; Pixelbot ekranlarda naxışlar yaradır.", - "timestamp": 1396708519000, - "language": "az", - "media": { - "id": "31196760", - "subType": "primary", - "format": "video", - "image": { - "id": "31196760", - "subType": "thumbnail", - "href": "http://a.files.bbci.co.uk/worldservice/live/assets/images/2014/04/05/140405141148_windows_cortana_640x360_reuters_nocredit.jpg", - "path": "/amz/worldservice/live/assets/images/2014/04/05/140405141148_windows_cortana_640x360_reuters_nocredit.jpg", - "height": 360, - "width": 640, - "altText": "", - "copyrightHolder": "", - "type": "image" - }, - "aspectRatio": "16:9", - "live": false, - "href": "http://www.bbc.co.uk/azeri/meta/dps/2014/04/emp/140405_click.emp.xml", - "playlist": [ - { - "format": "mp4", - "bitrate": "168000", - "url": "https://wsodprogrf.akamaized.net/azeri/dps/2014/04/azeri~fclick~f1420~f5~f4_16x9_lo.mp4" - }, - { - "format": "mp4", - "bitrate": "320000", - "url": "https://wsodprogrf.akamaized.net/azeri/dps/2014/04/azeri~fclick~f1420~f5~f4_16x9_med.mp4" - }, - { - "format": "mp4", - "bitrate": "904000", - "url": "https://wsodprogrf.akamaized.net/azeri/dps/2014/04/azeri~fclick~f1420~f5~f4_16x9_hi.mp4" - } - ], - "type": "legacyMedia" - }, - "indexImage": { - "id": "d5e227", - "subType": "index", - "href": "http://a.files.bbci.co.uk/worldservice/live/assets/images/2014/04/05/140405141148_windows_cortana_112x63_reuters_nocredit.jpg", - "path": "/amz/worldservice/live/assets/images/2014/04/05/140405141148_windows_cortana_112x63_reuters_nocredit.jpg", - "height": 63, - "width": 112, - "altText": "", - "copyrightHolder": "Reuters", - "type": "image" - }, - "id": "urn:bbc:ares::asset:azeri/multimedia/2014/04/140405_click", - "type": "cps" - } - } - ] - } + "mostRead": null } }, "contentType": "application/json; charset=utf-8" diff --git a/data/gahuza/cpsAssets/23313911.json b/data/gahuza/cpsAssets/23313911.json index d9e53ad12e8..b519bbeccc1 100644 --- a/data/gahuza/cpsAssets/23313911.json +++ b/data/gahuza/cpsAssets/23313911.json @@ -1077,8 +1077,7 @@ "timestamp": 1455192646000 } ] - }, - "mostWatched": null + } } }, "contentType": "application/json; charset=utf-8" diff --git a/data/gahuza/cpsAssets/amakuru-23257470.json b/data/gahuza/cpsAssets/amakuru-23257470.json index 93095f9d94b..36e4980ada7 100644 --- a/data/gahuza/cpsAssets/amakuru-23257470.json +++ b/data/gahuza/cpsAssets/amakuru-23257470.json @@ -187,813 +187,7 @@ "secondaryData": { "topStories": null, "features": null, - "mostRead": null, - "mostWatched": { - "generated": "2023-06-20T16:22:57.775Z", - "lastRecordTimeStamp": "2021-05-04T11:53:00Z", - "firstRecordTimeStamp": "2021-05-04T03:53:00Z", - "totalRecords": 13, - "records": [ - { - "id": "0816d421-f4e1-a248-a96b-2ebe04e24f49", - "rank": 1, - "count": 9940, - "urn": "urn:bbc:curie:asset:0816d421-f4e1-a248-a96b-2ebe04e24f49", - "promo": { - "headlines": { - "shortHeadline": "Buhari avuga ku ifaranga rya Naira 1 updated", - "headline": "Buhari avuga ku ifaranga rya Naira 1 updated" - }, - "locators": { - "assetUri": "/gahuza/amakuru-23022530", - "curieCpsUrn": "urn:bbc:cps:curie:asset:0816d421-f4e1-a248-a96b-2ebe04e24f49", - "assetId": "23022530", - "cpsUrn": "urn:bbc:content:assetUri:gahuza/amakuru-23022530", - "curie": "http://www.bbc.co.uk/asset/0816d421-f4e1-a248-a96b-2ebe04e24f49" - }, - "summary": "Igwa ry'ibiciro bya peteroli ku isi ryatumye agaciro k'ifaranga rya Naira rikoreshwa muri Nigeria kagwa mu bavunja amafaranga mu buryo butemewe n'amategeko.", - "timestamp": 1493909359000, - "language": "rw", - "passport": { - "category": { - "categoryId": "http://www.bbc.co.uk/ontologies/applicationlogic-news/News", - "categoryName": "News" - }, - "home": "http://www.bbc.co.uk/ontologies/passport/home/Gahuza", - "taggings": [] - }, - "media": { - "id": "63305311", - "subType": "primary", - "format": "video", - "externalId": "p00zc1p4", - "duration": "PT2M13S", - "caption": "ඉන්දියාවේ බැංගලෝර් නුවර පාසලකට කඩා වැඩුණු දිවියෙක් ඇල්ලීමට තැත් කළ පුද්ගලයන් හය දෙනෙකු තුවාල ලබා තිබේ.", - "image": { - "id": "63305311", - "subType": "thumbnail", - "href": "http://wwwpreview.test.newsonline.tc.nca.bbc.co.uk/media/images/63302000/jpg/_63302851_63302850.jpg", - "path": "/tmcs/media/images/63302000/jpg/_63302851_63302850.jpg", - "height": 360, - "width": 640, - "altText": "Facebook 1bn graphic", - "copyrightHolder": "BBC", - "type": "image" - }, - "embedding": false, - "available": true, - "live": false, - "type": "version" - }, - "indexImage": { - "id": "63302853", - "subType": "index", - "href": "http://wwwpreview.test.newsonline.tc.nca.bbc.co.uk/media/images/63302000/jpg/_63302853_63302850.jpg", - "path": "/tmcs/media/images/63302000/jpg/_63302853_63302850.jpg", - "height": 360, - "width": 640, - "altText": "Facebook 1bn graphic", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:gahuza/amakuru-23022530", - "type": "cps" - } - }, - { - "id": "427a39e7-114d-914d-bc70-ca270667f075", - "rank": 2, - "count": 9479, - "urn": "urn:bbc:curie:asset:427a39e7-114d-914d-bc70-ca270667f075", - "promo": { - "headlines": { - "shortHeadline": "Buhari avuga ku ifaranga rya Naira 3", - "headline": "Buhari avuga ku ifaranga rya Naira 3" - }, - "locators": { - "assetUri": "/gahuza/amakuru-23022532", - "curieCpsUrn": "urn:bbc:cps:curie:asset:427a39e7-114d-914d-bc70-ca270667f075", - "assetId": "23022532", - "cpsUrn": "urn:bbc:content:assetUri:gahuza/amakuru-23022532", - "curie": "http://www.bbc.co.uk/asset/427a39e7-114d-914d-bc70-ca270667f075" - }, - "summary": "Igwa ry'ibiciro bya peteroli ku isi ryatumye agaciro k'ifaranga rya Naira rikoreshwa muri Nigeria kagwa mu bavunja amafaranga mu buryo butemewe n'amategeko.", - "timestamp": 1455191397000, - "language": "rw", - "passport": { - "home": "http://www.bbc.co.uk/ontologies/passport/home/Gahuza", - "taggings": [] - }, - "media": { - "id": "63305311", - "subType": "primary", - "format": "video", - "externalId": "p00zc1p4", - "duration": "PT2M13S", - "caption": "ඉන්දියාවේ බැංගලෝර් නුවර පාසලකට කඩා වැඩුණු දිවියෙක් ඇල්ලීමට තැත් කළ පුද්ගලයන් හය දෙනෙකු තුවාල ලබා තිබේ.", - "image": { - "id": "63305311", - "subType": "thumbnail", - "href": "http://wwwpreview.test.newsonline.tc.nca.bbc.co.uk/media/images/63302000/jpg/_63302851_63302850.jpg", - "path": "/tmcs/media/images/63302000/jpg/_63302851_63302850.jpg", - "height": 360, - "width": 640, - "altText": "Facebook 1bn graphic", - "copyrightHolder": "BBC", - "type": "image" - }, - "embedding": false, - "available": true, - "live": false, - "type": "version" - }, - "indexImage": { - "id": "63302853", - "subType": "index", - "href": "http://wwwpreview.test.newsonline.tc.nca.bbc.co.uk/media/images/63302000/jpg/_63302853_63302850.jpg", - "path": "/tmcs/media/images/63302000/jpg/_63302853_63302850.jpg", - "height": 360, - "width": 640, - "altText": "Facebook 1bn graphic", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:gahuza/amakuru-23022532", - "type": "cps" - } - }, - { - "id": "f655f94e-9b53-6d47-a540-a2eda4078cb3", - "rank": 3, - "count": 8069, - "urn": "urn:bbc:curie:asset:f655f94e-9b53-6d47-a540-a2eda4078cb3", - "promo": { - "headlines": { - "shortHeadline": "Buhari avuga ku ifaranga rya Naira 4", - "headline": "Buhari avuga ku ifaranga rya Naira 4" - }, - "locators": { - "assetUri": "/gahuza/amakuru-23022533", - "curieCpsUrn": "urn:bbc:cps:curie:asset:f655f94e-9b53-6d47-a540-a2eda4078cb3", - "assetId": "23022533", - "cpsUrn": "urn:bbc:content:assetUri:gahuza/amakuru-23022533", - "curie": "http://www.bbc.co.uk/asset/f655f94e-9b53-6d47-a540-a2eda4078cb3" - }, - "summary": "Igwa ry'ibiciro bya peteroli ku isi ryatumye agaciro k'ifaranga rya Naira rikoreshwa muri Nigeria kagwa mu bavunja amafaranga mu buryo butemewe n'amategeko.", - "timestamp": 1455191419000, - "language": "rw", - "passport": { - "home": "http://www.bbc.co.uk/ontologies/passport/home/Gahuza", - "taggings": [] - }, - "media": { - "id": "63305311", - "subType": "primary", - "format": "video", - "externalId": "p00zc1p4", - "duration": "PT2M13S", - "caption": "ඉන්දියාවේ බැංගලෝර් නුවර පාසලකට කඩා වැඩුණු දිවියෙක් ඇල්ලීමට තැත් කළ පුද්ගලයන් හය දෙනෙකු තුවාල ලබා තිබේ.", - "image": { - "id": "63305311", - "subType": "thumbnail", - "href": "http://wwwpreview.test.newsonline.tc.nca.bbc.co.uk/media/images/63302000/jpg/_63302851_63302850.jpg", - "path": "/tmcs/media/images/63302000/jpg/_63302851_63302850.jpg", - "height": 360, - "width": 640, - "altText": "Facebook 1bn graphic", - "copyrightHolder": "BBC", - "type": "image" - }, - "embedding": false, - "available": true, - "live": false, - "type": "version" - }, - "indexImage": { - "id": "63302853", - "subType": "index", - "href": "http://wwwpreview.test.newsonline.tc.nca.bbc.co.uk/media/images/63302000/jpg/_63302853_63302850.jpg", - "path": "/tmcs/media/images/63302000/jpg/_63302853_63302850.jpg", - "height": 360, - "width": 640, - "altText": "Facebook 1bn graphic", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:gahuza/amakuru-23022533", - "type": "cps" - } - }, - { - "id": "a49f696e-1d3b-f94c-be78-30f807b8d404", - "rank": 4, - "count": 7006, - "urn": "urn:bbc:curie:asset:a49f696e-1d3b-f94c-be78-30f807b8d404", - "promo": { - "headlines": { - "shortHeadline": "Buhari avuga ku ifaranga rya Naira 5", - "headline": "Buhari avuga ku ifaranga rya Naira 5" - }, - "locators": { - "assetUri": "/gahuza/amakuru-23022534", - "curieCpsUrn": "urn:bbc:cps:curie:asset:a49f696e-1d3b-f94c-be78-30f807b8d404", - "assetId": "23022534", - "cpsUrn": "urn:bbc:content:assetUri:gahuza/amakuru-23022534", - "curie": "http://www.bbc.co.uk/asset/a49f696e-1d3b-f94c-be78-30f807b8d404" - }, - "summary": "Igwa ry'ibiciro bya peteroli ku isi ryatumye agaciro k'ifaranga rya Naira rikoreshwa muri Nigeria kagwa mu bavunja amafaranga mu buryo butemewe n'amategeko.", - "timestamp": 1455191438000, - "language": "rw", - "passport": { - "home": "http://www.bbc.co.uk/ontologies/passport/home/Gahuza", - "taggings": [] - }, - "media": { - "id": "63305311", - "subType": "primary", - "format": "video", - "externalId": "p00zc1p4", - "duration": "PT2M13S", - "caption": "ඉන්දියාවේ බැංගලෝර් නුවර පාසලකට කඩා වැඩුණු දිවියෙක් ඇල්ලීමට තැත් කළ පුද්ගලයන් හය දෙනෙකු තුවාල ලබා තිබේ.", - "image": { - "id": "63305311", - "subType": "thumbnail", - "href": "http://wwwpreview.test.newsonline.tc.nca.bbc.co.uk/media/images/63302000/jpg/_63302851_63302850.jpg", - "path": "/tmcs/media/images/63302000/jpg/_63302851_63302850.jpg", - "height": 360, - "width": 640, - "altText": "Facebook 1bn graphic", - "copyrightHolder": "BBC", - "type": "image" - }, - "embedding": false, - "available": true, - "live": false, - "type": "version" - }, - "indexImage": { - "id": "63302853", - "subType": "index", - "href": "http://wwwpreview.test.newsonline.tc.nca.bbc.co.uk/media/images/63302000/jpg/_63302853_63302850.jpg", - "path": "/tmcs/media/images/63302000/jpg/_63302853_63302850.jpg", - "height": 360, - "width": 640, - "altText": "Facebook 1bn graphic", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:gahuza/amakuru-23022534", - "type": "cps" - } - }, - { - "id": "9c35ecc7-b372-734c-8832-efbba6da695e", - "rank": 5, - "count": 6799, - "urn": "urn:bbc:curie:asset:9c35ecc7-b372-734c-8832-efbba6da695e", - "promo": { - "headlines": { - "shortHeadline": "Buhari avuga ku ifaranga rya Naira 2", - "headline": "Buhari avuga ku ifaranga rya Naira 2" - }, - "locators": { - "assetUri": "/gahuza/amakuru-23022531", - "curieCpsUrn": "urn:bbc:cps:curie:asset:9c35ecc7-b372-734c-8832-efbba6da695e", - "assetId": "23022531", - "cpsUrn": "urn:bbc:content:assetUri:gahuza/amakuru-23022531", - "curie": "http://www.bbc.co.uk/asset/9c35ecc7-b372-734c-8832-efbba6da695e" - }, - "summary": "Igwa ry'ibiciro bya peteroli ku isi ryatumye agaciro k'ifaranga rya Naira rikoreshwa muri Nigeria kagwa mu bavunja amafaranga mu buryo butemewe n'amategeko.", - "timestamp": 1455191377000, - "language": "rw", - "passport": { - "home": "http://www.bbc.co.uk/ontologies/passport/home/Gahuza", - "taggings": [] - }, - "media": { - "id": "63305311", - "subType": "primary", - "format": "video", - "externalId": "p00zc1p4", - "duration": "PT2M13S", - "caption": "ඉන්දියාවේ බැංගලෝර් නුවර පාසලකට කඩා වැඩුණු දිවියෙක් ඇල්ලීමට තැත් කළ පුද්ගලයන් හය දෙනෙකු තුවාල ලබා තිබේ.", - "image": { - "id": "63305311", - "subType": "thumbnail", - "href": "http://wwwpreview.test.newsonline.tc.nca.bbc.co.uk/media/images/63302000/jpg/_63302851_63302850.jpg", - "path": "/tmcs/media/images/63302000/jpg/_63302851_63302850.jpg", - "height": 360, - "width": 640, - "altText": "Facebook 1bn graphic", - "copyrightHolder": "BBC", - "type": "image" - }, - "embedding": false, - "available": true, - "live": false, - "type": "version" - }, - "indexImage": { - "id": "63302853", - "subType": "index", - "href": "http://wwwpreview.test.newsonline.tc.nca.bbc.co.uk/media/images/63302000/jpg/_63302853_63302850.jpg", - "path": "/tmcs/media/images/63302000/jpg/_63302853_63302850.jpg", - "height": 360, - "width": 640, - "altText": "Facebook 1bn graphic", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:gahuza/amakuru-23022531", - "type": "cps" - } - }, - { - "id": "7733b121-debf-944f-ba25-56af1502bb90", - "rank": 6, - "count": 5800, - "urn": "urn:bbc:curie:asset:7733b121-debf-944f-ba25-56af1502bb90", - "promo": { - "headlines": { - "shortHeadline": "Buhari avuga ku ifaranga rya Naira 11", - "headline": "Buhari avuga ku ifaranga rya Naira 11" - }, - "locators": { - "assetUri": "/gahuza/amakuru-23058545", - "curieCpsUrn": "urn:bbc:cps:curie:asset:7733b121-debf-944f-ba25-56af1502bb90", - "assetId": "23058545", - "cpsUrn": "urn:bbc:content:assetUri:gahuza/amakuru-23058545", - "curie": "http://www.bbc.co.uk/asset/7733b121-debf-944f-ba25-56af1502bb90" - }, - "summary": "Igwa ry'ibiciro bya peteroli ku isi ryatumye agaciro k'ifaranga rya Naira rikoreshwa muri Nigeria kagwa mu bavunja amafaranga mu buryo butemewe n'amategeko.", - "timestamp": 1467896549000, - "language": "rw", - "passport": { - "home": "http://www.bbc.co.uk/ontologies/passport/home/Gahuza", - "taggings": [] - }, - "media": { - "id": "63305311", - "subType": "primary", - "format": "video", - "externalId": "p00zc1p4", - "duration": "PT2M13S", - "caption": "ඉන්දියාවේ බැංගලෝර් නුවර පාසලකට කඩා වැඩුණු දිවියෙක් ඇල්ලීමට තැත් කළ පුද්ගලයන් හය දෙනෙකු තුවාල ලබා තිබේ.", - "image": { - "id": "63305311", - "subType": "thumbnail", - "href": "http://b.files.bbci.co.uk/15BB6/test/_63741098_df2ea412-123f-4de7-b86d-349aaadf44c7.jpg", - "path": "/cpsdevpb/15BB6/test/_63741098_df2ea412-123f-4de7-b86d-349aaadf44c7.jpg", - "height": 360, - "width": 640, - "altText": "Facebook 1bn graphic", - "copyrightHolder": "BBC", - "allowSyndication": true, - "type": "image" - }, - "embedding": false, - "available": true, - "live": false, - "type": "version" - }, - "indexImage": { - "id": "63741096", - "subType": "index", - "href": "http://b.files.bbci.co.uk/10D96/test/_63741096_test66.jpg", - "path": "/cpsdevpb/10D96/test/_63741096_test66.jpg", - "height": 261, - "width": 464, - "altText": "test", - "caption": "test", - "copyrightHolder": "BBC", - "allowSyndication": true, - "type": "image" - }, - "id": "urn:bbc:ares::asset:gahuza/amakuru-23058545", - "type": "cps" - } - }, - { - "id": "f9b4fbd2-e469-8f49-b1d1-e177dfa1d5a1", - "rank": 7, - "count": 4652, - "urn": "urn:bbc:curie:asset:f9b4fbd2-e469-8f49-b1d1-e177dfa1d5a1", - "promo": { - "headlines": { - "shortHeadline": "Buhari avuga ku ifaranga rya Naira 12", - "headline": "Buhari avuga ku ifaranga rya Naira 12" - }, - "locators": { - "assetUri": "/gahuza/amakuru-23058546", - "curieCpsUrn": "urn:bbc:cps:curie:asset:f9b4fbd2-e469-8f49-b1d1-e177dfa1d5a1", - "assetId": "23058546", - "cpsUrn": "urn:bbc:content:assetUri:gahuza/amakuru-23058546", - "curie": "http://www.bbc.co.uk/asset/f9b4fbd2-e469-8f49-b1d1-e177dfa1d5a1" - }, - "summary": "Igwa ry'ibiciro bya peteroli ku isi ryatumye agaciro k'ifaranga rya Naira rikoreshwa muri Nigeria kagwa mu bavunja amafaranga mu buryo butemewe n'amategeko.", - "timestamp": 1467896589000, - "language": "rw", - "passport": { - "home": "http://www.bbc.co.uk/ontologies/passport/home/Gahuza", - "taggings": [] - }, - "media": { - "id": "63305311", - "subType": "primary", - "format": "video", - "externalId": "p00zc1p4", - "duration": "PT2M13S", - "caption": "ඉන්දියාවේ බැංගලෝර් නුවර පාසලකට කඩා වැඩුණු දිවියෙක් ඇල්ලීමට තැත් කළ පුද්ගලයන් හය දෙනෙකු තුවාල ලබා තිබේ.", - "image": { - "id": "63305311", - "subType": "thumbnail", - "href": "http://wwwpreview.test.newsonline.tc.nca.bbc.co.uk/media/images/63302000/jpg/_63302851_63302850.jpg", - "path": "/tmcs/media/images/63302000/jpg/_63302851_63302850.jpg", - "height": 360, - "width": 640, - "altText": "Facebook 1bn graphic", - "copyrightHolder": "BBC", - "type": "image" - }, - "embedding": false, - "available": true, - "live": false, - "type": "version" - }, - "indexImage": { - "id": "63302853", - "subType": "index", - "href": "http://wwwpreview.test.newsonline.tc.nca.bbc.co.uk/media/images/63302000/jpg/_63302853_63302850.jpg", - "path": "/tmcs/media/images/63302000/jpg/_63302853_63302850.jpg", - "height": 360, - "width": 640, - "altText": "Facebook 1bn graphic", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:gahuza/amakuru-23058546", - "type": "cps" - } - }, - { - "id": "22eca6d1-de82-c749-ac66-7e9be6ffa10e", - "rank": 8, - "count": 3934, - "urn": "urn:bbc:curie:asset:22eca6d1-de82-c749-ac66-7e9be6ffa10e", - "promo": { - "headlines": { - "shortHeadline": "Buhari avuga ku ifaranga rya Naira 10", - "headline": "Buhari avuga ku ifaranga rya Naira 10" - }, - "locators": { - "assetUri": "/gahuza/amakuru-23058544", - "curieCpsUrn": "urn:bbc:cps:curie:asset:22eca6d1-de82-c749-ac66-7e9be6ffa10e", - "assetId": "23058544", - "cpsUrn": "urn:bbc:content:assetUri:gahuza/amakuru-23058544", - "curie": "http://www.bbc.co.uk/asset/22eca6d1-de82-c749-ac66-7e9be6ffa10e" - }, - "summary": "Igwa ry'ibiciro bya peteroli ku isi ryatumye agaciro k'ifaranga rya Naira rikoreshwa muri Nigeria kagwa mu bavunja amafaranga mu buryo butemewe n'amategeko.", - "timestamp": 1467896508000, - "language": "rw", - "passport": { - "home": "http://www.bbc.co.uk/ontologies/passport/home/Gahuza", - "taggings": [] - }, - "media": { - "id": "63305311", - "subType": "primary", - "format": "video", - "externalId": "p00zc1p4", - "duration": "PT2M13S", - "caption": "ඉන්දියාවේ බැංගලෝර් නුවර පාසලකට කඩා වැඩුණු දිවියෙක් ඇල්ලීමට තැත් කළ පුද්ගලයන් හය දෙනෙකු තුවාල ලබා තිබේ.", - "image": { - "id": "63305311", - "subType": "thumbnail", - "href": "http://wwwpreview.test.newsonline.tc.nca.bbc.co.uk/media/images/63302000/jpg/_63302851_63302850.jpg", - "path": "/tmcs/media/images/63302000/jpg/_63302851_63302850.jpg", - "height": 360, - "width": 640, - "altText": "Facebook 1bn graphic", - "copyrightHolder": "BBC", - "type": "image" - }, - "embedding": false, - "available": true, - "live": false, - "type": "version" - }, - "indexImage": { - "id": "63302853", - "subType": "index", - "href": "http://wwwpreview.test.newsonline.tc.nca.bbc.co.uk/media/images/63302000/jpg/_63302853_63302850.jpg", - "path": "/tmcs/media/images/63302000/jpg/_63302853_63302850.jpg", - "height": 360, - "width": 640, - "altText": "Facebook 1bn graphic", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:gahuza/amakuru-23058544", - "type": "cps" - } - }, - { - "id": "1400d345-2efc-b64b-b42f-62eb0a6b37b9", - "rank": 9, - "count": 3619, - "urn": "urn:bbc:curie:asset:1400d345-2efc-b64b-b42f-62eb0a6b37b9", - "promo": { - "headlines": { - "shortHeadline": "Buhari avuga ku ifaranga rya Naira", - "headline": "Buhari avuga ku ifaranga rya Naira" - }, - "locators": { - "assetUri": "/gahuza/amakuru-23022528", - "curieCpsUrn": "urn:bbc:cps:curie:asset:1400d345-2efc-b64b-b42f-62eb0a6b37b9", - "assetId": "23022528", - "cpsUrn": "urn:bbc:content:assetUri:gahuza/amakuru-23022528", - "curie": "http://www.bbc.co.uk/asset/1400d345-2efc-b64b-b42f-62eb0a6b37b9" - }, - "summary": "Igwa ry'ibiciro bya peteroli ku isi ryatumye agaciro k'ifaranga rya Naira rikoreshwa muri Nigeria kagwa mu bavunja amafaranga mu buryo butemewe n'amategeko.", - "timestamp": 1455191293000, - "language": "rw", - "passport": { - "home": "http://www.bbc.co.uk/ontologies/passport/home/Gahuza", - "taggings": [] - }, - "media": { - "id": "63305311", - "subType": "primary", - "format": "video", - "externalId": "p00zc1p4", - "duration": "PT2M13S", - "caption": "ඉන්දියාවේ බැංගලෝර් නුවර පාසලකට කඩා වැඩුණු දිවියෙක් ඇල්ලීමට තැත් කළ පුද්ගලයන් හය දෙනෙකු තුවාල ලබා තිබේ.", - "image": { - "id": "63305311", - "subType": "thumbnail", - "href": "http://wwwpreview.test.newsonline.tc.nca.bbc.co.uk/media/images/63302000/jpg/_63302851_63302850.jpg", - "path": "/tmcs/media/images/63302000/jpg/_63302851_63302850.jpg", - "height": 360, - "width": 640, - "altText": "Facebook 1bn graphic", - "copyrightHolder": "BBC", - "type": "image" - }, - "embedding": false, - "available": true, - "live": false, - "type": "version" - }, - "indexImage": { - "id": "63302853", - "subType": "index", - "href": "http://wwwpreview.test.newsonline.tc.nca.bbc.co.uk/media/images/63302000/jpg/_63302853_63302850.jpg", - "path": "/tmcs/media/images/63302000/jpg/_63302853_63302850.jpg", - "height": 360, - "width": 640, - "altText": "Facebook 1bn graphic", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:gahuza/amakuru-23022528", - "type": "cps" - } - }, - { - "id": "3ee9e218-f620-c24d-b249-89266a821e21", - "rank": 10, - "count": 3064, - "urn": "urn:bbc:curie:asset:3ee9e218-f620-c24d-b249-89266a821e21", - "promo": { - "headlines": { - "shortHeadline": "Buhari avuga ku ifaranga rya Naira 13", - "headline": "Buhari avuga ku ifaranga rya Naira 13" - }, - "locators": { - "assetUri": "/gahuza/amakuru-23058547", - "curieCpsUrn": "urn:bbc:cps:curie:asset:3ee9e218-f620-c24d-b249-89266a821e21", - "assetId": "23058547", - "cpsUrn": "urn:bbc:content:assetUri:gahuza/amakuru-23058547", - "curie": "http://www.bbc.co.uk/asset/3ee9e218-f620-c24d-b249-89266a821e21" - }, - "summary": "Igwa ry'ibiciro bya peteroli ku isi ryatumye agaciro k'ifaranga rya Naira rikoreshwa muri Nigeria kagwa mu bavunja amafaranga mu buryo butemewe n'amategeko.", - "timestamp": 1467896617000, - "language": "rw", - "passport": { - "home": "http://www.bbc.co.uk/ontologies/passport/home/Gahuza", - "taggings": [] - }, - "media": { - "id": "63305311", - "subType": "primary", - "format": "video", - "externalId": "p00zc1p4", - "duration": "PT2M13S", - "caption": "ඉන්දියාවේ බැංගලෝර් නුවර පාසලකට කඩා වැඩුණු දිවියෙක් ඇල්ලීමට තැත් කළ පුද්ගලයන් හය දෙනෙකු තුවාල ලබා තිබේ.", - "image": { - "id": "63305311", - "subType": "thumbnail", - "href": "http://wwwpreview.test.newsonline.tc.nca.bbc.co.uk/media/images/63302000/jpg/_63302851_63302850.jpg", - "path": "/tmcs/media/images/63302000/jpg/_63302851_63302850.jpg", - "height": 360, - "width": 640, - "altText": "Facebook 1bn graphic", - "copyrightHolder": "BBC", - "type": "image" - }, - "embedding": false, - "available": true, - "live": false, - "type": "version" - }, - "indexImage": { - "id": "63302853", - "subType": "index", - "href": "http://wwwpreview.test.newsonline.tc.nca.bbc.co.uk/media/images/63302000/jpg/_63302853_63302850.jpg", - "path": "/tmcs/media/images/63302000/jpg/_63302853_63302850.jpg", - "height": 360, - "width": 640, - "altText": "Facebook 1bn graphic", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:gahuza/amakuru-23058547", - "type": "cps" - } - }, - { - "id": "358696fc-4a4f-c84d-9d88-7a894176bd24", - "rank": 11, - "count": 2979, - "urn": "urn:bbc:curie:asset:358696fc-4a4f-c84d-9d88-7a894176bd24", - "promo": { - "headlines": { - "shortHeadline": "Imiliyoni z'abanyamerika zigiye kwivuza bigoranye kuva mu 2018", - "headline": "Imiliyoni z'abanyamerika zigiye kwivuza bigoranye kuva mu 2018" - }, - "locators": { - "assetUri": "/gahuza/amakuru-23108773", - "curieCpsUrn": "urn:bbc:cps:curie:asset:358696fc-4a4f-c84d-9d88-7a894176bd24", - "assetId": "23108773", - "cpsUrn": "urn:bbc:content:assetUri:gahuza/amakuru-23108773", - "curie": "http://www.bbc.co.uk/asset/358696fc-4a4f-c84d-9d88-7a894176bd24" - }, - "summary": "Abantu baharugwa ku miliyoni 14 bagiye guhagarikwa kwivuza ku buryo bworoshe bakoresha \"assurance\" kuva mu 2018 igihe itegeko ry'aba républicains ku bijanye n'amagara rizoba ritanguye kuja mu ngiro.", - "timestamp": 1489659310000, - "language": "rw", - "passport": { - "home": "http://www.bbc.co.uk/ontologies/passport/home/Gahuza", - "taggings": [] - }, - "media": { - "id": "23108775", - "subType": "primary", - "format": "audio", - "externalId": "p018xz0r", - "entityType": "Clip", - "caption": "gghhjjjjjjjjjjjj", - "statusCode": 410, - "statusMessage": "Asset could not be found. Perhaps it was withdrawn.", - "type": "external_vpid" - }, - "indexImage": { - "id": "63531145", - "subType": "index", - "href": "http://b.files.bbci.co.uk/D361/test/_63531145_p018xz27.jpg", - "path": "/cpsdevpb/D361/test/_63531145_p018xz27.jpg", - "height": 549, - "width": 976, - "altText": "mmmjjh", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:gahuza/amakuru-23108773", - "type": "cps" - } - }, - { - "id": "f048fae5-cf3f-3641-a243-9e426ca2c367", - "rank": 12, - "count": 2807, - "urn": "urn:bbc:curie:asset:f048fae5-cf3f-3641-a243-9e426ca2c367", - "promo": { - "headlines": { - "shortHeadline": "A new audio piece for Gahuza, via OMP update", - "headline": "Short synopsis for a BBC Gahuza audio, uploaded via OMP updated" - }, - "locators": { - "assetUri": "/gahuza/imikino-23026243", - "curieCpsUrn": "urn:bbc:cps:curie:asset:f048fae5-cf3f-3641-a243-9e426ca2c367", - "assetId": "23026243", - "cpsUrn": "urn:bbc:content:assetUri:gahuza/imikino-23026243", - "curie": "http://www.bbc.co.uk/asset/f048fae5-cf3f-3641-a243-9e426ca2c367" - }, - "summary": "Ariko rero kubona yari umuhanga ntabwo byatumye abona imfashanyo yari akeneye kugirango agere kure.", - "timestamp": 1456930298000, - "language": "rw", - "passport": { - "home": "http://www.bbc.co.uk/ontologies/passport/home/Gahuza", - "taggings": [] - }, - "media": { - "id": "23026244", - "subType": "primary", - "format": "audio", - "externalId": "p010h9p2", - "entityType": "Clip", - "caption": "Short synopsis for a BBC Gahuza audio, uploaded via OMP", - "statusCode": 404, - "statusMessage": "Asset could not be found. Perhaps it was withdrawn.", - "type": "external_vpid" - }, - "indexImage": { - "id": "63475932", - "subType": "index", - "href": "http://b.files.bbci.co.uk/5D95/test/_63475932_p010h9pc.jpg", - "path": "/cpsdevpb/5D95/test/_63475932_p010h9pc.jpg", - "height": 576, - "width": 1024, - "altText": "BBC gahuza audio", - "caption": "BBC gahuza audio", - "copyrightHolder": "EPA", - "type": "image" - }, - "id": "urn:bbc:ares::asset:gahuza/imikino-23026243", - "type": "cps" - } - }, - { - "id": "b7ea801b-e8e9-1940-8d14-0b0e373a8eae", - "rank": 13, - "count": 668, - "urn": "urn:bbc:curie:asset:b7ea801b-e8e9-1940-8d14-0b0e373a8eae", - "promo": { - "headlines": { - "shortHeadline": "Ethiopia humiliated by Ghanaian counterparts", - "headline": "Ethiopia humiliated by Ghanaian counterparts" - }, - "locators": { - "assetUri": "/amharic/23132860", - "curieCpsUrn": "urn:bbc:cps:curie:asset:b7ea801b-e8e9-1940-8d14-0b0e373a8eae", - "assetId": "23132860", - "cpsUrn": "urn:bbc:content:assetUri:amharic/23132860", - "curie": "http://www.bbc.co.uk/asset/b7ea801b-e8e9-1940-8d14-0b0e373a8eae" - }, - "summary": "Ethiopia loses 5-0 with tough Ghana", - "timestamp": 1497442127000, - "language": "am", - "passport": { - "home": "http://www.bbc.co.uk/ontologies/passport/home/Amharic", - "taggings": [] - }, - "media": { - "id": "p01b7w2r", - "subType": "clip", - "format": "audio", - "title": "पुणे सुपरजायंट्स आयपीएलच्या अंतिम फेरीत!", - "synopses": { - "short": "मुंबई इंडियन्सला आता दुसऱ्या क्वॉलिफायर लढतीत खेळावे लागणार आहे." - }, - "imageUrl": "ichef.test.bbci.co.uk/images/ic/$recipe/p01b7w9z.jpg", - "embedding": false, - "advertising": true, - "caption": "Pele celebrate", - "versions": [ - { - "versionId": "p01b7w2z", - "types": [ - "Original" - ], - "duration": 16, - "durationISO8601": "PT16S", - "warnings": {}, - "availableTerritories": { - "uk": true, - "nonUk": true - }, - "availableFrom": 1495467503000 - } - ], - "smpKind": "radioProgramme", - "type": "media" - }, - "indexImage": { - "id": "63542516", - "subType": "index", - "href": "http://b.files.bbci.co.uk/F054/test/_63542516_p01b7w9z.jpg", - "path": "/cpsdevpb/F054/test/_63542516_p01b7w9z.jpg", - "height": 576, - "width": 1024, - "altText": "सेहवागनं 'असा' पाहिला मुंबई-पुणे सामना", - "copyrightHolder": "Getty Images", - "type": "image" - }, - "id": "urn:bbc:ares::asset:amharic/23132860", - "type": "cps" - } - } - ] - } + "mostRead": null } }, "contentType": "application/json; charset=utf-8" diff --git a/data/gahuza/legacyAssets/amakuru/2016/02/160215_map_amakuru_test1.json b/data/gahuza/legacyAssets/amakuru/2016/02/160215_map_amakuru_test1.json index ab29674a566..f301d56506d 100644 --- a/data/gahuza/legacyAssets/amakuru/2016/02/160215_map_amakuru_test1.json +++ b/data/gahuza/legacyAssets/amakuru/2016/02/160215_map_amakuru_test1.json @@ -184,813 +184,7 @@ "secondaryData": { "topStories": null, "features": null, - "mostRead": null, - "mostWatched": { - "generated": "2023-06-20T16:37:58.294Z", - "lastRecordTimeStamp": "2021-05-04T11:53:00Z", - "firstRecordTimeStamp": "2021-05-04T03:53:00Z", - "totalRecords": 13, - "records": [ - { - "id": "0816d421-f4e1-a248-a96b-2ebe04e24f49", - "rank": 1, - "count": 9940, - "urn": "urn:bbc:curie:asset:0816d421-f4e1-a248-a96b-2ebe04e24f49", - "promo": { - "headlines": { - "shortHeadline": "Buhari avuga ku ifaranga rya Naira 1 updated", - "headline": "Buhari avuga ku ifaranga rya Naira 1 updated" - }, - "locators": { - "assetUri": "/gahuza/amakuru-23022530", - "curieCpsUrn": "urn:bbc:cps:curie:asset:0816d421-f4e1-a248-a96b-2ebe04e24f49", - "assetId": "23022530", - "cpsUrn": "urn:bbc:content:assetUri:gahuza/amakuru-23022530", - "curie": "http://www.bbc.co.uk/asset/0816d421-f4e1-a248-a96b-2ebe04e24f49" - }, - "summary": "Igwa ry'ibiciro bya peteroli ku isi ryatumye agaciro k'ifaranga rya Naira rikoreshwa muri Nigeria kagwa mu bavunja amafaranga mu buryo butemewe n'amategeko.", - "timestamp": 1493909359000, - "language": "rw", - "passport": { - "category": { - "categoryId": "http://www.bbc.co.uk/ontologies/applicationlogic-news/News", - "categoryName": "News" - }, - "home": "http://www.bbc.co.uk/ontologies/passport/home/Gahuza", - "taggings": [] - }, - "media": { - "id": "63305311", - "subType": "primary", - "format": "video", - "externalId": "p00zc1p4", - "duration": "PT2M13S", - "caption": "ඉන්දියාවේ බැංගලෝර් නුවර පාසලකට කඩා වැඩුණු දිවියෙක් ඇල්ලීමට තැත් කළ පුද්ගලයන් හය දෙනෙකු තුවාල ලබා තිබේ.", - "image": { - "id": "63305311", - "subType": "thumbnail", - "href": "http://wwwpreview.test.newsonline.tc.nca.bbc.co.uk/media/images/63302000/jpg/_63302851_63302850.jpg", - "path": "/tmcs/media/images/63302000/jpg/_63302851_63302850.jpg", - "height": 360, - "width": 640, - "altText": "Facebook 1bn graphic", - "copyrightHolder": "BBC", - "type": "image" - }, - "embedding": false, - "available": true, - "live": false, - "type": "version" - }, - "indexImage": { - "id": "63302853", - "subType": "index", - "href": "http://wwwpreview.test.newsonline.tc.nca.bbc.co.uk/media/images/63302000/jpg/_63302853_63302850.jpg", - "path": "/tmcs/media/images/63302000/jpg/_63302853_63302850.jpg", - "height": 360, - "width": 640, - "altText": "Facebook 1bn graphic", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:gahuza/amakuru-23022530", - "type": "cps" - } - }, - { - "id": "427a39e7-114d-914d-bc70-ca270667f075", - "rank": 2, - "count": 9479, - "urn": "urn:bbc:curie:asset:427a39e7-114d-914d-bc70-ca270667f075", - "promo": { - "headlines": { - "shortHeadline": "Buhari avuga ku ifaranga rya Naira 3", - "headline": "Buhari avuga ku ifaranga rya Naira 3" - }, - "locators": { - "assetUri": "/gahuza/amakuru-23022532", - "curieCpsUrn": "urn:bbc:cps:curie:asset:427a39e7-114d-914d-bc70-ca270667f075", - "assetId": "23022532", - "cpsUrn": "urn:bbc:content:assetUri:gahuza/amakuru-23022532", - "curie": "http://www.bbc.co.uk/asset/427a39e7-114d-914d-bc70-ca270667f075" - }, - "summary": "Igwa ry'ibiciro bya peteroli ku isi ryatumye agaciro k'ifaranga rya Naira rikoreshwa muri Nigeria kagwa mu bavunja amafaranga mu buryo butemewe n'amategeko.", - "timestamp": 1455191397000, - "language": "rw", - "passport": { - "home": "http://www.bbc.co.uk/ontologies/passport/home/Gahuza", - "taggings": [] - }, - "media": { - "id": "63305311", - "subType": "primary", - "format": "video", - "externalId": "p00zc1p4", - "duration": "PT2M13S", - "caption": "ඉන්දියාවේ බැංගලෝර් නුවර පාසලකට කඩා වැඩුණු දිවියෙක් ඇල්ලීමට තැත් කළ පුද්ගලයන් හය දෙනෙකු තුවාල ලබා තිබේ.", - "image": { - "id": "63305311", - "subType": "thumbnail", - "href": "http://wwwpreview.test.newsonline.tc.nca.bbc.co.uk/media/images/63302000/jpg/_63302851_63302850.jpg", - "path": "/tmcs/media/images/63302000/jpg/_63302851_63302850.jpg", - "height": 360, - "width": 640, - "altText": "Facebook 1bn graphic", - "copyrightHolder": "BBC", - "type": "image" - }, - "embedding": false, - "available": true, - "live": false, - "type": "version" - }, - "indexImage": { - "id": "63302853", - "subType": "index", - "href": "http://wwwpreview.test.newsonline.tc.nca.bbc.co.uk/media/images/63302000/jpg/_63302853_63302850.jpg", - "path": "/tmcs/media/images/63302000/jpg/_63302853_63302850.jpg", - "height": 360, - "width": 640, - "altText": "Facebook 1bn graphic", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:gahuza/amakuru-23022532", - "type": "cps" - } - }, - { - "id": "f655f94e-9b53-6d47-a540-a2eda4078cb3", - "rank": 3, - "count": 8069, - "urn": "urn:bbc:curie:asset:f655f94e-9b53-6d47-a540-a2eda4078cb3", - "promo": { - "headlines": { - "shortHeadline": "Buhari avuga ku ifaranga rya Naira 4", - "headline": "Buhari avuga ku ifaranga rya Naira 4" - }, - "locators": { - "assetUri": "/gahuza/amakuru-23022533", - "curieCpsUrn": "urn:bbc:cps:curie:asset:f655f94e-9b53-6d47-a540-a2eda4078cb3", - "assetId": "23022533", - "cpsUrn": "urn:bbc:content:assetUri:gahuza/amakuru-23022533", - "curie": "http://www.bbc.co.uk/asset/f655f94e-9b53-6d47-a540-a2eda4078cb3" - }, - "summary": "Igwa ry'ibiciro bya peteroli ku isi ryatumye agaciro k'ifaranga rya Naira rikoreshwa muri Nigeria kagwa mu bavunja amafaranga mu buryo butemewe n'amategeko.", - "timestamp": 1455191419000, - "language": "rw", - "passport": { - "home": "http://www.bbc.co.uk/ontologies/passport/home/Gahuza", - "taggings": [] - }, - "media": { - "id": "63305311", - "subType": "primary", - "format": "video", - "externalId": "p00zc1p4", - "duration": "PT2M13S", - "caption": "ඉන්දියාවේ බැංගලෝර් නුවර පාසලකට කඩා වැඩුණු දිවියෙක් ඇල්ලීමට තැත් කළ පුද්ගලයන් හය දෙනෙකු තුවාල ලබා තිබේ.", - "image": { - "id": "63305311", - "subType": "thumbnail", - "href": "http://wwwpreview.test.newsonline.tc.nca.bbc.co.uk/media/images/63302000/jpg/_63302851_63302850.jpg", - "path": "/tmcs/media/images/63302000/jpg/_63302851_63302850.jpg", - "height": 360, - "width": 640, - "altText": "Facebook 1bn graphic", - "copyrightHolder": "BBC", - "type": "image" - }, - "embedding": false, - "available": true, - "live": false, - "type": "version" - }, - "indexImage": { - "id": "63302853", - "subType": "index", - "href": "http://wwwpreview.test.newsonline.tc.nca.bbc.co.uk/media/images/63302000/jpg/_63302853_63302850.jpg", - "path": "/tmcs/media/images/63302000/jpg/_63302853_63302850.jpg", - "height": 360, - "width": 640, - "altText": "Facebook 1bn graphic", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:gahuza/amakuru-23022533", - "type": "cps" - } - }, - { - "id": "a49f696e-1d3b-f94c-be78-30f807b8d404", - "rank": 4, - "count": 7006, - "urn": "urn:bbc:curie:asset:a49f696e-1d3b-f94c-be78-30f807b8d404", - "promo": { - "headlines": { - "shortHeadline": "Buhari avuga ku ifaranga rya Naira 5", - "headline": "Buhari avuga ku ifaranga rya Naira 5" - }, - "locators": { - "assetUri": "/gahuza/amakuru-23022534", - "curieCpsUrn": "urn:bbc:cps:curie:asset:a49f696e-1d3b-f94c-be78-30f807b8d404", - "assetId": "23022534", - "cpsUrn": "urn:bbc:content:assetUri:gahuza/amakuru-23022534", - "curie": "http://www.bbc.co.uk/asset/a49f696e-1d3b-f94c-be78-30f807b8d404" - }, - "summary": "Igwa ry'ibiciro bya peteroli ku isi ryatumye agaciro k'ifaranga rya Naira rikoreshwa muri Nigeria kagwa mu bavunja amafaranga mu buryo butemewe n'amategeko.", - "timestamp": 1455191438000, - "language": "rw", - "passport": { - "home": "http://www.bbc.co.uk/ontologies/passport/home/Gahuza", - "taggings": [] - }, - "media": { - "id": "63305311", - "subType": "primary", - "format": "video", - "externalId": "p00zc1p4", - "duration": "PT2M13S", - "caption": "ඉන්දියාවේ බැංගලෝර් නුවර පාසලකට කඩා වැඩුණු දිවියෙක් ඇල්ලීමට තැත් කළ පුද්ගලයන් හය දෙනෙකු තුවාල ලබා තිබේ.", - "image": { - "id": "63305311", - "subType": "thumbnail", - "href": "http://wwwpreview.test.newsonline.tc.nca.bbc.co.uk/media/images/63302000/jpg/_63302851_63302850.jpg", - "path": "/tmcs/media/images/63302000/jpg/_63302851_63302850.jpg", - "height": 360, - "width": 640, - "altText": "Facebook 1bn graphic", - "copyrightHolder": "BBC", - "type": "image" - }, - "embedding": false, - "available": true, - "live": false, - "type": "version" - }, - "indexImage": { - "id": "63302853", - "subType": "index", - "href": "http://wwwpreview.test.newsonline.tc.nca.bbc.co.uk/media/images/63302000/jpg/_63302853_63302850.jpg", - "path": "/tmcs/media/images/63302000/jpg/_63302853_63302850.jpg", - "height": 360, - "width": 640, - "altText": "Facebook 1bn graphic", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:gahuza/amakuru-23022534", - "type": "cps" - } - }, - { - "id": "9c35ecc7-b372-734c-8832-efbba6da695e", - "rank": 5, - "count": 6799, - "urn": "urn:bbc:curie:asset:9c35ecc7-b372-734c-8832-efbba6da695e", - "promo": { - "headlines": { - "shortHeadline": "Buhari avuga ku ifaranga rya Naira 2", - "headline": "Buhari avuga ku ifaranga rya Naira 2" - }, - "locators": { - "assetUri": "/gahuza/amakuru-23022531", - "curieCpsUrn": "urn:bbc:cps:curie:asset:9c35ecc7-b372-734c-8832-efbba6da695e", - "assetId": "23022531", - "cpsUrn": "urn:bbc:content:assetUri:gahuza/amakuru-23022531", - "curie": "http://www.bbc.co.uk/asset/9c35ecc7-b372-734c-8832-efbba6da695e" - }, - "summary": "Igwa ry'ibiciro bya peteroli ku isi ryatumye agaciro k'ifaranga rya Naira rikoreshwa muri Nigeria kagwa mu bavunja amafaranga mu buryo butemewe n'amategeko.", - "timestamp": 1455191377000, - "language": "rw", - "passport": { - "home": "http://www.bbc.co.uk/ontologies/passport/home/Gahuza", - "taggings": [] - }, - "media": { - "id": "63305311", - "subType": "primary", - "format": "video", - "externalId": "p00zc1p4", - "duration": "PT2M13S", - "caption": "ඉන්දියාවේ බැංගලෝර් නුවර පාසලකට කඩා වැඩුණු දිවියෙක් ඇල්ලීමට තැත් කළ පුද්ගලයන් හය දෙනෙකු තුවාල ලබා තිබේ.", - "image": { - "id": "63305311", - "subType": "thumbnail", - "href": "http://wwwpreview.test.newsonline.tc.nca.bbc.co.uk/media/images/63302000/jpg/_63302851_63302850.jpg", - "path": "/tmcs/media/images/63302000/jpg/_63302851_63302850.jpg", - "height": 360, - "width": 640, - "altText": "Facebook 1bn graphic", - "copyrightHolder": "BBC", - "type": "image" - }, - "embedding": false, - "available": true, - "live": false, - "type": "version" - }, - "indexImage": { - "id": "63302853", - "subType": "index", - "href": "http://wwwpreview.test.newsonline.tc.nca.bbc.co.uk/media/images/63302000/jpg/_63302853_63302850.jpg", - "path": "/tmcs/media/images/63302000/jpg/_63302853_63302850.jpg", - "height": 360, - "width": 640, - "altText": "Facebook 1bn graphic", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:gahuza/amakuru-23022531", - "type": "cps" - } - }, - { - "id": "7733b121-debf-944f-ba25-56af1502bb90", - "rank": 6, - "count": 5800, - "urn": "urn:bbc:curie:asset:7733b121-debf-944f-ba25-56af1502bb90", - "promo": { - "headlines": { - "shortHeadline": "Buhari avuga ku ifaranga rya Naira 11", - "headline": "Buhari avuga ku ifaranga rya Naira 11" - }, - "locators": { - "assetUri": "/gahuza/amakuru-23058545", - "curieCpsUrn": "urn:bbc:cps:curie:asset:7733b121-debf-944f-ba25-56af1502bb90", - "assetId": "23058545", - "cpsUrn": "urn:bbc:content:assetUri:gahuza/amakuru-23058545", - "curie": "http://www.bbc.co.uk/asset/7733b121-debf-944f-ba25-56af1502bb90" - }, - "summary": "Igwa ry'ibiciro bya peteroli ku isi ryatumye agaciro k'ifaranga rya Naira rikoreshwa muri Nigeria kagwa mu bavunja amafaranga mu buryo butemewe n'amategeko.", - "timestamp": 1467896549000, - "language": "rw", - "passport": { - "home": "http://www.bbc.co.uk/ontologies/passport/home/Gahuza", - "taggings": [] - }, - "media": { - "id": "63305311", - "subType": "primary", - "format": "video", - "externalId": "p00zc1p4", - "duration": "PT2M13S", - "caption": "ඉන්දියාවේ බැංගලෝර් නුවර පාසලකට කඩා වැඩුණු දිවියෙක් ඇල්ලීමට තැත් කළ පුද්ගලයන් හය දෙනෙකු තුවාල ලබා තිබේ.", - "image": { - "id": "63305311", - "subType": "thumbnail", - "href": "http://b.files.bbci.co.uk/15BB6/test/_63741098_df2ea412-123f-4de7-b86d-349aaadf44c7.jpg", - "path": "/cpsdevpb/15BB6/test/_63741098_df2ea412-123f-4de7-b86d-349aaadf44c7.jpg", - "height": 360, - "width": 640, - "altText": "Facebook 1bn graphic", - "copyrightHolder": "BBC", - "allowSyndication": true, - "type": "image" - }, - "embedding": false, - "available": true, - "live": false, - "type": "version" - }, - "indexImage": { - "id": "63741096", - "subType": "index", - "href": "http://b.files.bbci.co.uk/10D96/test/_63741096_test66.jpg", - "path": "/cpsdevpb/10D96/test/_63741096_test66.jpg", - "height": 261, - "width": 464, - "altText": "test", - "caption": "test", - "copyrightHolder": "BBC", - "allowSyndication": true, - "type": "image" - }, - "id": "urn:bbc:ares::asset:gahuza/amakuru-23058545", - "type": "cps" - } - }, - { - "id": "f9b4fbd2-e469-8f49-b1d1-e177dfa1d5a1", - "rank": 7, - "count": 4652, - "urn": "urn:bbc:curie:asset:f9b4fbd2-e469-8f49-b1d1-e177dfa1d5a1", - "promo": { - "headlines": { - "shortHeadline": "Buhari avuga ku ifaranga rya Naira 12", - "headline": "Buhari avuga ku ifaranga rya Naira 12" - }, - "locators": { - "assetUri": "/gahuza/amakuru-23058546", - "curieCpsUrn": "urn:bbc:cps:curie:asset:f9b4fbd2-e469-8f49-b1d1-e177dfa1d5a1", - "assetId": "23058546", - "cpsUrn": "urn:bbc:content:assetUri:gahuza/amakuru-23058546", - "curie": "http://www.bbc.co.uk/asset/f9b4fbd2-e469-8f49-b1d1-e177dfa1d5a1" - }, - "summary": "Igwa ry'ibiciro bya peteroli ku isi ryatumye agaciro k'ifaranga rya Naira rikoreshwa muri Nigeria kagwa mu bavunja amafaranga mu buryo butemewe n'amategeko.", - "timestamp": 1467896589000, - "language": "rw", - "passport": { - "home": "http://www.bbc.co.uk/ontologies/passport/home/Gahuza", - "taggings": [] - }, - "media": { - "id": "63305311", - "subType": "primary", - "format": "video", - "externalId": "p00zc1p4", - "duration": "PT2M13S", - "caption": "ඉන්දියාවේ බැංගලෝර් නුවර පාසලකට කඩා වැඩුණු දිවියෙක් ඇල්ලීමට තැත් කළ පුද්ගලයන් හය දෙනෙකු තුවාල ලබා තිබේ.", - "image": { - "id": "63305311", - "subType": "thumbnail", - "href": "http://wwwpreview.test.newsonline.tc.nca.bbc.co.uk/media/images/63302000/jpg/_63302851_63302850.jpg", - "path": "/tmcs/media/images/63302000/jpg/_63302851_63302850.jpg", - "height": 360, - "width": 640, - "altText": "Facebook 1bn graphic", - "copyrightHolder": "BBC", - "type": "image" - }, - "embedding": false, - "available": true, - "live": false, - "type": "version" - }, - "indexImage": { - "id": "63302853", - "subType": "index", - "href": "http://wwwpreview.test.newsonline.tc.nca.bbc.co.uk/media/images/63302000/jpg/_63302853_63302850.jpg", - "path": "/tmcs/media/images/63302000/jpg/_63302853_63302850.jpg", - "height": 360, - "width": 640, - "altText": "Facebook 1bn graphic", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:gahuza/amakuru-23058546", - "type": "cps" - } - }, - { - "id": "22eca6d1-de82-c749-ac66-7e9be6ffa10e", - "rank": 8, - "count": 3934, - "urn": "urn:bbc:curie:asset:22eca6d1-de82-c749-ac66-7e9be6ffa10e", - "promo": { - "headlines": { - "shortHeadline": "Buhari avuga ku ifaranga rya Naira 10", - "headline": "Buhari avuga ku ifaranga rya Naira 10" - }, - "locators": { - "assetUri": "/gahuza/amakuru-23058544", - "curieCpsUrn": "urn:bbc:cps:curie:asset:22eca6d1-de82-c749-ac66-7e9be6ffa10e", - "assetId": "23058544", - "cpsUrn": "urn:bbc:content:assetUri:gahuza/amakuru-23058544", - "curie": "http://www.bbc.co.uk/asset/22eca6d1-de82-c749-ac66-7e9be6ffa10e" - }, - "summary": "Igwa ry'ibiciro bya peteroli ku isi ryatumye agaciro k'ifaranga rya Naira rikoreshwa muri Nigeria kagwa mu bavunja amafaranga mu buryo butemewe n'amategeko.", - "timestamp": 1467896508000, - "language": "rw", - "passport": { - "home": "http://www.bbc.co.uk/ontologies/passport/home/Gahuza", - "taggings": [] - }, - "media": { - "id": "63305311", - "subType": "primary", - "format": "video", - "externalId": "p00zc1p4", - "duration": "PT2M13S", - "caption": "ඉන්දියාවේ බැංගලෝර් නුවර පාසලකට කඩා වැඩුණු දිවියෙක් ඇල්ලීමට තැත් කළ පුද්ගලයන් හය දෙනෙකු තුවාල ලබා තිබේ.", - "image": { - "id": "63305311", - "subType": "thumbnail", - "href": "http://wwwpreview.test.newsonline.tc.nca.bbc.co.uk/media/images/63302000/jpg/_63302851_63302850.jpg", - "path": "/tmcs/media/images/63302000/jpg/_63302851_63302850.jpg", - "height": 360, - "width": 640, - "altText": "Facebook 1bn graphic", - "copyrightHolder": "BBC", - "type": "image" - }, - "embedding": false, - "available": true, - "live": false, - "type": "version" - }, - "indexImage": { - "id": "63302853", - "subType": "index", - "href": "http://wwwpreview.test.newsonline.tc.nca.bbc.co.uk/media/images/63302000/jpg/_63302853_63302850.jpg", - "path": "/tmcs/media/images/63302000/jpg/_63302853_63302850.jpg", - "height": 360, - "width": 640, - "altText": "Facebook 1bn graphic", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:gahuza/amakuru-23058544", - "type": "cps" - } - }, - { - "id": "1400d345-2efc-b64b-b42f-62eb0a6b37b9", - "rank": 9, - "count": 3619, - "urn": "urn:bbc:curie:asset:1400d345-2efc-b64b-b42f-62eb0a6b37b9", - "promo": { - "headlines": { - "shortHeadline": "Buhari avuga ku ifaranga rya Naira", - "headline": "Buhari avuga ku ifaranga rya Naira" - }, - "locators": { - "assetUri": "/gahuza/amakuru-23022528", - "curieCpsUrn": "urn:bbc:cps:curie:asset:1400d345-2efc-b64b-b42f-62eb0a6b37b9", - "assetId": "23022528", - "cpsUrn": "urn:bbc:content:assetUri:gahuza/amakuru-23022528", - "curie": "http://www.bbc.co.uk/asset/1400d345-2efc-b64b-b42f-62eb0a6b37b9" - }, - "summary": "Igwa ry'ibiciro bya peteroli ku isi ryatumye agaciro k'ifaranga rya Naira rikoreshwa muri Nigeria kagwa mu bavunja amafaranga mu buryo butemewe n'amategeko.", - "timestamp": 1455191293000, - "language": "rw", - "passport": { - "home": "http://www.bbc.co.uk/ontologies/passport/home/Gahuza", - "taggings": [] - }, - "media": { - "id": "63305311", - "subType": "primary", - "format": "video", - "externalId": "p00zc1p4", - "duration": "PT2M13S", - "caption": "ඉන්දියාවේ බැංගලෝර් නුවර පාසලකට කඩා වැඩුණු දිවියෙක් ඇල්ලීමට තැත් කළ පුද්ගලයන් හය දෙනෙකු තුවාල ලබා තිබේ.", - "image": { - "id": "63305311", - "subType": "thumbnail", - "href": "http://wwwpreview.test.newsonline.tc.nca.bbc.co.uk/media/images/63302000/jpg/_63302851_63302850.jpg", - "path": "/tmcs/media/images/63302000/jpg/_63302851_63302850.jpg", - "height": 360, - "width": 640, - "altText": "Facebook 1bn graphic", - "copyrightHolder": "BBC", - "type": "image" - }, - "embedding": false, - "available": true, - "live": false, - "type": "version" - }, - "indexImage": { - "id": "63302853", - "subType": "index", - "href": "http://wwwpreview.test.newsonline.tc.nca.bbc.co.uk/media/images/63302000/jpg/_63302853_63302850.jpg", - "path": "/tmcs/media/images/63302000/jpg/_63302853_63302850.jpg", - "height": 360, - "width": 640, - "altText": "Facebook 1bn graphic", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:gahuza/amakuru-23022528", - "type": "cps" - } - }, - { - "id": "3ee9e218-f620-c24d-b249-89266a821e21", - "rank": 10, - "count": 3064, - "urn": "urn:bbc:curie:asset:3ee9e218-f620-c24d-b249-89266a821e21", - "promo": { - "headlines": { - "shortHeadline": "Buhari avuga ku ifaranga rya Naira 13", - "headline": "Buhari avuga ku ifaranga rya Naira 13" - }, - "locators": { - "assetUri": "/gahuza/amakuru-23058547", - "curieCpsUrn": "urn:bbc:cps:curie:asset:3ee9e218-f620-c24d-b249-89266a821e21", - "assetId": "23058547", - "cpsUrn": "urn:bbc:content:assetUri:gahuza/amakuru-23058547", - "curie": "http://www.bbc.co.uk/asset/3ee9e218-f620-c24d-b249-89266a821e21" - }, - "summary": "Igwa ry'ibiciro bya peteroli ku isi ryatumye agaciro k'ifaranga rya Naira rikoreshwa muri Nigeria kagwa mu bavunja amafaranga mu buryo butemewe n'amategeko.", - "timestamp": 1467896617000, - "language": "rw", - "passport": { - "home": "http://www.bbc.co.uk/ontologies/passport/home/Gahuza", - "taggings": [] - }, - "media": { - "id": "63305311", - "subType": "primary", - "format": "video", - "externalId": "p00zc1p4", - "duration": "PT2M13S", - "caption": "ඉන්දියාවේ බැංගලෝර් නුවර පාසලකට කඩා වැඩුණු දිවියෙක් ඇල්ලීමට තැත් කළ පුද්ගලයන් හය දෙනෙකු තුවාල ලබා තිබේ.", - "image": { - "id": "63305311", - "subType": "thumbnail", - "href": "http://wwwpreview.test.newsonline.tc.nca.bbc.co.uk/media/images/63302000/jpg/_63302851_63302850.jpg", - "path": "/tmcs/media/images/63302000/jpg/_63302851_63302850.jpg", - "height": 360, - "width": 640, - "altText": "Facebook 1bn graphic", - "copyrightHolder": "BBC", - "type": "image" - }, - "embedding": false, - "available": true, - "live": false, - "type": "version" - }, - "indexImage": { - "id": "63302853", - "subType": "index", - "href": "http://wwwpreview.test.newsonline.tc.nca.bbc.co.uk/media/images/63302000/jpg/_63302853_63302850.jpg", - "path": "/tmcs/media/images/63302000/jpg/_63302853_63302850.jpg", - "height": 360, - "width": 640, - "altText": "Facebook 1bn graphic", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:gahuza/amakuru-23058547", - "type": "cps" - } - }, - { - "id": "358696fc-4a4f-c84d-9d88-7a894176bd24", - "rank": 11, - "count": 2979, - "urn": "urn:bbc:curie:asset:358696fc-4a4f-c84d-9d88-7a894176bd24", - "promo": { - "headlines": { - "shortHeadline": "Imiliyoni z'abanyamerika zigiye kwivuza bigoranye kuva mu 2018", - "headline": "Imiliyoni z'abanyamerika zigiye kwivuza bigoranye kuva mu 2018" - }, - "locators": { - "assetUri": "/gahuza/amakuru-23108773", - "curieCpsUrn": "urn:bbc:cps:curie:asset:358696fc-4a4f-c84d-9d88-7a894176bd24", - "assetId": "23108773", - "cpsUrn": "urn:bbc:content:assetUri:gahuza/amakuru-23108773", - "curie": "http://www.bbc.co.uk/asset/358696fc-4a4f-c84d-9d88-7a894176bd24" - }, - "summary": "Abantu baharugwa ku miliyoni 14 bagiye guhagarikwa kwivuza ku buryo bworoshe bakoresha \"assurance\" kuva mu 2018 igihe itegeko ry'aba républicains ku bijanye n'amagara rizoba ritanguye kuja mu ngiro.", - "timestamp": 1489659310000, - "language": "rw", - "passport": { - "home": "http://www.bbc.co.uk/ontologies/passport/home/Gahuza", - "taggings": [] - }, - "media": { - "id": "23108775", - "subType": "primary", - "format": "audio", - "externalId": "p018xz0r", - "entityType": "Clip", - "caption": "gghhjjjjjjjjjjjj", - "statusCode": 410, - "statusMessage": "Asset could not be found. Perhaps it was withdrawn.", - "type": "external_vpid" - }, - "indexImage": { - "id": "63531145", - "subType": "index", - "href": "http://b.files.bbci.co.uk/D361/test/_63531145_p018xz27.jpg", - "path": "/cpsdevpb/D361/test/_63531145_p018xz27.jpg", - "height": 549, - "width": 976, - "altText": "mmmjjh", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:gahuza/amakuru-23108773", - "type": "cps" - } - }, - { - "id": "f048fae5-cf3f-3641-a243-9e426ca2c367", - "rank": 12, - "count": 2807, - "urn": "urn:bbc:curie:asset:f048fae5-cf3f-3641-a243-9e426ca2c367", - "promo": { - "headlines": { - "shortHeadline": "A new audio piece for Gahuza, via OMP update", - "headline": "Short synopsis for a BBC Gahuza audio, uploaded via OMP updated" - }, - "locators": { - "assetUri": "/gahuza/imikino-23026243", - "curieCpsUrn": "urn:bbc:cps:curie:asset:f048fae5-cf3f-3641-a243-9e426ca2c367", - "assetId": "23026243", - "cpsUrn": "urn:bbc:content:assetUri:gahuza/imikino-23026243", - "curie": "http://www.bbc.co.uk/asset/f048fae5-cf3f-3641-a243-9e426ca2c367" - }, - "summary": "Ariko rero kubona yari umuhanga ntabwo byatumye abona imfashanyo yari akeneye kugirango agere kure.", - "timestamp": 1456930298000, - "language": "rw", - "passport": { - "home": "http://www.bbc.co.uk/ontologies/passport/home/Gahuza", - "taggings": [] - }, - "media": { - "id": "23026244", - "subType": "primary", - "format": "audio", - "externalId": "p010h9p2", - "entityType": "Clip", - "caption": "Short synopsis for a BBC Gahuza audio, uploaded via OMP", - "statusCode": 404, - "statusMessage": "Asset could not be found. Perhaps it was withdrawn.", - "type": "external_vpid" - }, - "indexImage": { - "id": "63475932", - "subType": "index", - "href": "http://b.files.bbci.co.uk/5D95/test/_63475932_p010h9pc.jpg", - "path": "/cpsdevpb/5D95/test/_63475932_p010h9pc.jpg", - "height": 576, - "width": 1024, - "altText": "BBC gahuza audio", - "caption": "BBC gahuza audio", - "copyrightHolder": "EPA", - "type": "image" - }, - "id": "urn:bbc:ares::asset:gahuza/imikino-23026243", - "type": "cps" - } - }, - { - "id": "b7ea801b-e8e9-1940-8d14-0b0e373a8eae", - "rank": 13, - "count": 668, - "urn": "urn:bbc:curie:asset:b7ea801b-e8e9-1940-8d14-0b0e373a8eae", - "promo": { - "headlines": { - "shortHeadline": "Ethiopia humiliated by Ghanaian counterparts", - "headline": "Ethiopia humiliated by Ghanaian counterparts" - }, - "locators": { - "assetUri": "/amharic/23132860", - "curieCpsUrn": "urn:bbc:cps:curie:asset:b7ea801b-e8e9-1940-8d14-0b0e373a8eae", - "assetId": "23132860", - "cpsUrn": "urn:bbc:content:assetUri:amharic/23132860", - "curie": "http://www.bbc.co.uk/asset/b7ea801b-e8e9-1940-8d14-0b0e373a8eae" - }, - "summary": "Ethiopia loses 5-0 with tough Ghana", - "timestamp": 1497442127000, - "language": "am", - "passport": { - "home": "http://www.bbc.co.uk/ontologies/passport/home/Amharic", - "taggings": [] - }, - "media": { - "id": "p01b7w2r", - "subType": "clip", - "format": "audio", - "title": "पुणे सुपरजायंट्स आयपीएलच्या अंतिम फेरीत!", - "synopses": { - "short": "मुंबई इंडियन्सला आता दुसऱ्या क्वॉलिफायर लढतीत खेळावे लागणार आहे." - }, - "imageUrl": "ichef.test.bbci.co.uk/images/ic/$recipe/p01b7w9z.jpg", - "embedding": false, - "advertising": true, - "caption": "Pele celebrate", - "versions": [ - { - "versionId": "p01b7w2z", - "types": [ - "Original" - ], - "duration": 16, - "durationISO8601": "PT16S", - "warnings": {}, - "availableTerritories": { - "uk": true, - "nonUk": true - }, - "availableFrom": 1495467503000 - } - ], - "smpKind": "radioProgramme", - "type": "media" - }, - "indexImage": { - "id": "63542516", - "subType": "index", - "href": "http://b.files.bbci.co.uk/F054/test/_63542516_p01b7w9z.jpg", - "path": "/cpsdevpb/F054/test/_63542516_p01b7w9z.jpg", - "height": 576, - "width": 1024, - "altText": "सेहवागनं 'असा' पाहिला मुंबई-पुणे सामना", - "copyrightHolder": "Getty Images", - "type": "image" - }, - "id": "urn:bbc:ares::asset:amharic/23132860", - "type": "cps" - } - } - ] - } + "mostRead": null } }, "contentType": "application/json; charset=utf-8" diff --git a/data/hausa/legacyAssets/multimedia/2012/07/120712_click.json b/data/hausa/legacyAssets/multimedia/2012/07/120712_click.json index b9035d9cfb8..58dd495d2a3 100644 --- a/data/hausa/legacyAssets/multimedia/2012/07/120712_click.json +++ b/data/hausa/legacyAssets/multimedia/2012/07/120712_click.json @@ -195,4867 +195,7 @@ "secondaryData": { "topStories": null, "features": null, - "mostRead": null, - "mostWatched": { - "generated": "2023-06-21T22:24:39.228Z", - "lastRecordTimeStamp": "2023-06-21T22:22:00Z", - "firstRecordTimeStamp": "2023-06-21T20:22:00Z", - "totalRecords": 20, - "records": [ - { - "id": "urn:bbc:optimo:asset:c72vx33v4yqo", - "rank": 1, - "count": 3169, - "urn": "urn:bbc:optimo:asset:c72vx33v4yqo", - "promo": { - "locators": { - "optimoUrn": "urn:bbc:optimo:asset:c72vx33v4yqo", - "canonicalUrl": "https://www.bbc.com/hausa/articles/c72vx33v4yqo" - }, - "timestamp": 1687360310930, - "suitableForSyndication": true, - "language": "ha", - "headlines": { - "seoHeadline": "Saƙon wata mai ciwon sikila ga al'umma", - "promoHeadline": { - "blocks": [ - { - "type": "text", - "model": { - "blocks": [ - { - "type": "paragraph", - "model": { - "text": "Saƙon wata mai ciwon sikila ga al'umma", - "blocks": [ - { - "type": "fragment", - "model": { - "text": "Saƙon wata mai ciwon sikila ga al'umma", - "attributes": [] - } - } - ] - } - } - ] - } - } - ] - } - }, - "images": { - "defaultPromoImage": { - "blocks": [ - { - "type": "caption", - "model": { - "blocks": [ - { - "type": "text", - "model": { - "blocks": [ - { - "type": "paragraph", - "model": { - "text": "Shamsiyya Barau", - "blocks": [ - { - "type": "fragment", - "model": { - "text": "Shamsiyya Barau", - "attributes": [] - } - } - ] - } - } - ] - } - } - ] - } - }, - { - "type": "altText", - "model": { - "blocks": [ - { - "type": "text", - "model": { - "blocks": [ - { - "type": "paragraph", - "model": { - "text": "Shamsiyya Barau", - "blocks": [ - { - "type": "fragment", - "model": { - "text": "Shamsiyya Barau", - "attributes": [] - } - } - ] - } - } - ] - } - } - ] - } - }, - { - "type": "rawImage", - "model": { - "width": 1356, - "height": 903, - "locator": "1cfa/live/90c48490-1045-11ee-816c-eb33efffe2a0.jpg", - "originCode": "cpsprodpb", - "copyrightHolder": "Shamsiyya Barau", - "suitableForSyndication": false - } - } - ] - } - }, - "summary": { - "blocks": [ - { - "type": "text", - "model": { - "blocks": [ - { - "type": "paragraph", - "model": { - "text": "Shamsiyya Barau Ahmed wata mai ɗauke da ciwon sikila ce a Najeriya, ta ce tana da saƙo mai muhimmanci ga al'umma game da cutar.", - "blocks": [ - { - "type": "fragment", - "model": { - "text": "Shamsiyya Barau Ahmed wata mai ɗauke da ciwon sikila ce a Najeriya, ta ce tana da saƙo mai muhimmanci ga al'umma game da cutar.", - "attributes": [] - } - } - ] - } - } - ] - } - } - ] - }, - "passport": { - "language": "ha", - "home": "http://www.bbc.co.uk/ontologies/passport/home/Hausa", - "locator": "urn:bbc:optimo:asset:c72vx33v4yqo", - "availability": "AVAILABLE", - "taggings": [ - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/3d5d5e30-dd50-4041-96d5-c970b20005b9#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/0f469e6a-d4a6-46f2-b727-2bd039cb6b53#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/primaryMediaType", - "value": "http://www.bbc.co.uk/things/ffc98bca-8cff-4ee6-9beb-a6ff6ef3ef9f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/audience/motivation", - "value": "http://www.bbc.co.uk/things/7047e74c-b9ae-4c02-a4a8-748df451ac58#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/audience/motivation", - "value": "http://www.bbc.co.uk/things/b1a660eb-ef14-4645-b4cd-d7bd939ce443#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/918e9487-dc88-44e2-8168-057149670ec3#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/infoClass", - "value": "http://www.bbc.co.uk/things/0db2b959-cbf8-4661-965f-050974a69bb5#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/assetType", - "value": "http://www.bbc.co.uk/things/22ea958e-2004-4f34-80a7-bf5acad52f6f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/editorialSensitivity", - "value": "http://www.bbc.co.uk/things/c6979033-cb72-4d07-9897-adc348a4332e#id" - } - ], - "schemaVersion": "1.4.0", - "publishedState": "PUBLISHED", - "predicates": { - "assetType": [ - { - "value": "http://www.bbc.co.uk/things/22ea958e-2004-4f34-80a7-bf5acad52f6f#id", - "type": "assetType" - } - ], - "primaryMediaType": [ - { - "value": "http://www.bbc.co.uk/things/ffc98bca-8cff-4ee6-9beb-a6ff6ef3ef9f#id", - "type": "primaryMediaType" - } - ], - "motivation": [], - "infoClass": [ - { - "value": "http://www.bbc.co.uk/things/0db2b959-cbf8-4661-965f-050974a69bb5#id", - "type": "infoClass" - } - ], - "editorialSensitivity": [ - { - "value": "http://www.bbc.co.uk/things/c6979033-cb72-4d07-9897-adc348a4332e#id", - "type": "editorialSensitivity" - } - ], - "about": [ - { - "value": "http://www.bbc.co.uk/things/0f469e6a-d4a6-46f2-b727-2bd039cb6b53#id", - "thingLabel": "Kimiyya", - "thingUri": "http://www.bbc.co.uk/things/0f469e6a-d4a6-46f2-b727-2bd039cb6b53#id", - "thingId": "0f469e6a-d4a6-46f2-b727-2bd039cb6b53", - "thingType": [ - "core:Thing", - "tagging:TagConcept", - "core:Theme" - ], - "thingSameAs": [ - "http://www.wikidata.org/entity/Q336", - "http://dbpedia.org/resource/Science" - ], - "thingEnglishLabel": "Science", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/3d5d5e30-dd50-4041-96d5-c970b20005b9#id", - "thingLabel": "Najeriya", - "thingUri": "http://www.bbc.co.uk/things/3d5d5e30-dd50-4041-96d5-c970b20005b9#id", - "thingId": "3d5d5e30-dd50-4041-96d5-c970b20005b9", - "thingType": [ - "core:Place", - "core:Thing", - "tagging:TagConcept" - ], - "thingSameAs": [ - "http://sws.geonames.org/2328926/" - ], - "thingEnglishLabel": "Nigeria", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/918e9487-dc88-44e2-8168-057149670ec3#id", - "thingLabel": "Magani", - "thingUri": "http://www.bbc.co.uk/things/918e9487-dc88-44e2-8168-057149670ec3#id", - "thingId": "918e9487-dc88-44e2-8168-057149670ec3", - "thingType": [ - "tagging:TagConcept", - "core:Thing", - "core:Theme" - ], - "thingSameAs": [ - "http://dbpedia.org/resource/Medicine", - "http://www.wikidata.org/entity/Q11190" - ], - "thingEnglishLabel": "Medicine", - "type": "about" - } - ] - } - }, - "id": "urn:bbc:ares::article:c72vx33v4yqo", - "type": "optimo" - } - }, - { - "id": "urn:bbc:optimo:asset:cm5887n5pero", - "rank": 2, - "count": 598, - "urn": "urn:bbc:optimo:asset:cm5887n5pero", - "promo": { - "locators": { - "optimoUrn": "urn:bbc:optimo:asset:cm5887n5pero", - "canonicalUrl": "https://www.bbc.com/hausa/articles/cm5887n5pero" - }, - "timestamp": 1687191388215, - "suitableForSyndication": true, - "language": "ha", - "headlines": { - "seoHeadline": "Halin da na samu Zamfara ya shallake hankali - Gwamna Dare", - "promoHeadline": { - "blocks": [ - { - "type": "text", - "model": { - "blocks": [ - { - "type": "paragraph", - "model": { - "text": "Halin da na samu Zamfara ya shallake hankali - Gwamna Dare", - "blocks": [ - { - "type": "fragment", - "model": { - "text": "Halin da na samu Zamfara ya shallake hankali - Gwamna Dare", - "attributes": [] - } - } - ] - } - } - ] - } - } - ] - } - }, - "images": { - "defaultPromoImage": { - "blocks": [ - { - "type": "altText", - "model": { - "blocks": [ - { - "type": "text", - "model": { - "blocks": [ - { - "type": "paragraph", - "model": { - "text": "Gov Dare", - "blocks": [ - { - "type": "fragment", - "model": { - "text": "Gov Dare", - "attributes": [] - } - } - ] - } - } - ] - } - } - ] - } - }, - { - "type": "rawImage", - "model": { - "width": 6000, - "height": 3376, - "locator": "eb63/live/9fe062e0-0ebb-11ee-9e94-25f17ea6acca.jpg", - "originCode": "cpsprodpb", - "copyrightHolder": "BBC", - "suitableForSyndication": true - } - } - ] - } - }, - "summary": { - "blocks": [ - { - "type": "text", - "model": { - "blocks": [ - { - "type": "paragraph", - "model": { - "text": "Ya yi iƙirarin cewa gwamnatin da ya wuce ta bar jihar Zamfara cikin ƙangin bashin albashin ma'aikata waɗanda suka shafe wata uku ko fiye ba tare da an biya su albashi ba. ", - "blocks": [ - { - "type": "fragment", - "model": { - "text": "Ya yi iƙirarin cewa gwamnatin da ya wuce ta bar jihar Zamfara cikin ƙangin bashin albashin ma'aikata waɗanda suka shafe wata uku ko fiye ba tare da an biya su albashi ba. ", - "attributes": [] - } - } - ] - } - } - ] - } - } - ] - }, - "passport": { - "language": "ha", - "home": "http://www.bbc.co.uk/ontologies/passport/home/Hausa", - "locator": "urn:bbc:optimo:asset:cm5887n5pero", - "availability": "AVAILABLE", - "taggings": [ - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/primaryMediaType", - "value": "http://www.bbc.co.uk/things/ffc98bca-8cff-4ee6-9beb-a6ff6ef3ef9f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/8470b75a-3b8c-42cb-9921-5953515d07cc#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/7d65828a-85c1-41f4-96cf-c758da75e401#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/ad97dddb-ea75-4493-a4ed-95ad1477049f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/39bdfb64-b820-4641-87fd-8910c1ce8e3b#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/audience/motivation", - "value": "http://www.bbc.co.uk/things/7047e74c-b9ae-4c02-a4a8-748df451ac58#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/infoClass", - "value": "http://www.bbc.co.uk/things/0db2b959-cbf8-4661-965f-050974a69bb5#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/assetType", - "value": "http://www.bbc.co.uk/things/22ea958e-2004-4f34-80a7-bf5acad52f6f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/editorialSensitivity", - "value": "http://www.bbc.co.uk/things/c6979033-cb72-4d07-9897-adc348a4332e#id" - } - ], - "schemaVersion": "1.4.0", - "publishedState": "PUBLISHED", - "predicates": { - "assetType": [ - { - "value": "http://www.bbc.co.uk/things/22ea958e-2004-4f34-80a7-bf5acad52f6f#id", - "type": "assetType" - } - ], - "primaryMediaType": [ - { - "value": "http://www.bbc.co.uk/things/ffc98bca-8cff-4ee6-9beb-a6ff6ef3ef9f#id", - "type": "primaryMediaType" - } - ], - "motivation": [], - "infoClass": [ - { - "value": "http://www.bbc.co.uk/things/0db2b959-cbf8-4661-965f-050974a69bb5#id", - "type": "infoClass" - } - ], - "editorialSensitivity": [ - { - "value": "http://www.bbc.co.uk/things/c6979033-cb72-4d07-9897-adc348a4332e#id", - "type": "editorialSensitivity" - } - ], - "about": [ - { - "value": "http://www.bbc.co.uk/things/39bdfb64-b820-4641-87fd-8910c1ce8e3b#id", - "thingLabel": "Jihar Zamfara", - "thingUri": "http://www.bbc.co.uk/things/39bdfb64-b820-4641-87fd-8910c1ce8e3b#id", - "thingId": "39bdfb64-b820-4641-87fd-8910c1ce8e3b", - "thingType": [ - "core:Place", - "core:Thing", - "tagging:TagConcept" - ], - "thingSameAs": [ - "http://dbpedia.org/resource/Zamfara_State", - "http://sws.geonames.org/2595349/" - ], - "thingEnglishLabel": "Zamfara state", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/7d65828a-85c1-41f4-96cf-c758da75e401#id", - "thingLabel": "Siyasar Najeriya", - "thingUri": "http://www.bbc.co.uk/things/7d65828a-85c1-41f4-96cf-c758da75e401#id", - "thingId": "7d65828a-85c1-41f4-96cf-c758da75e401", - "thingType": [ - "core:Thing", - "tagging:TagConcept", - "core:Theme" - ], - "thingSameAs": [ - "http://dbpedia.org/resource/Politics_of_Nigeria" - ], - "thingEnglishLabel": "Nigeria politics", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/8470b75a-3b8c-42cb-9921-5953515d07cc#id", - "thingLabel": "Aiwatar da tsaro", - "thingUri": "http://www.bbc.co.uk/things/8470b75a-3b8c-42cb-9921-5953515d07cc#id", - "thingId": "8470b75a-3b8c-42cb-9921-5953515d07cc", - "thingType": [ - "core:Thing", - "core:Theme", - "tagging:TagConcept" - ], - "thingSameAs": [ - "http://dbpedia.org/resource/Police" - ], - "thingEnglishLabel": "Policing", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/ad97dddb-ea75-4493-a4ed-95ad1477049f#id", - "thingLabel": "Zaben shugaban Najeriya na 2023", - "thingUri": "http://www.bbc.co.uk/things/ad97dddb-ea75-4493-a4ed-95ad1477049f#id", - "thingId": "ad97dddb-ea75-4493-a4ed-95ad1477049f", - "thingType": [ - "core:Event", - "tagging:TagConcept", - "core:Thing" - ], - "thingSameAs": [ - "http://dbpedia.org/resource/2023_Nigerian_general_election", - "http://www.wikidata.org/entity/Q1318985" - ], - "thingEnglishLabel": "Nigerian elections 2023", - "type": "about" - } - ] - } - }, - "id": "urn:bbc:ares::article:cm5887n5pero", - "type": "optimo" - } - }, - { - "id": "urn:bbc:optimo:asset:ckmllxjlmreo", - "rank": 3, - "count": 476, - "urn": "urn:bbc:optimo:asset:ckmllxjlmreo", - "promo": { - "locators": { - "optimoUrn": "urn:bbc:optimo:asset:ckmllxjlmreo", - "canonicalUrl": "https://www.bbc.com/hausa/articles/ckmllxjlmreo" - }, - "timestamp": 1687233711566, - "suitableForSyndication": true, - "language": "ha", - "headlines": { - "seoHeadline": "Hira da Sani, wani farfesan Amurka da ya fara koyon Hausa a birnin New York", - "promoHeadline": { - "blocks": [ - { - "type": "text", - "model": { - "blocks": [ - { - "type": "paragraph", - "model": { - "text": "Hira da Sani, wani farfesan Amurka da ya fara koyon Hausa a birnin New York", - "blocks": [ - { - "type": "fragment", - "model": { - "text": "Hira da Sani, wani farfesan Amurka da ya fara koyon Hausa a birnin New York", - "attributes": [] - } - } - ] - } - } - ] - } - } - ] - } - }, - "images": {}, - "summary": { - "blocks": [ - { - "type": "text", - "model": { - "blocks": [ - { - "type": "paragraph", - "model": { - "text": "Malamin jami'ar wanda ake kira da suna Sani a ƙasar Hausa, masani ne a fannin nazarin halayya da al'adun al'umma (anthropology).", - "blocks": [ - { - "type": "fragment", - "model": { - "text": "Malamin jami'ar wanda ake kira da suna Sani a ƙasar Hausa, masani ne a fannin nazarin halayya da al'adun al'umma (anthropology).", - "attributes": [] - } - } - ] - } - } - ] - } - } - ] - }, - "passport": { - "language": "ha", - "home": "http://www.bbc.co.uk/ontologies/passport/home/Hausa", - "locator": "urn:bbc:optimo:asset:ckmllxjlmreo", - "availability": "AVAILABLE", - "taggings": [ - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/0ddb2a64-18b7-4e25-9844-9f467489a53f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/a9aede5d-df86-4664-9800-c325b6bd2f40#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/infoClass", - "value": "http://www.bbc.co.uk/things/0db2b959-cbf8-4661-965f-050974a69bb5#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/82857f8e-8134-462a-bb32-b7b14f4eab75#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/6942cb29-9d3f-4c9c-9806-0a0578c286d6#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/audience/motivation", - "value": "http://www.bbc.co.uk/things/b1a660eb-ef14-4645-b4cd-d7bd939ce443#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/5307a8d9-f620-40f5-92d4-f99c919a6ffa#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/primaryMediaType", - "value": "http://www.bbc.co.uk/things/ffc98bca-8cff-4ee6-9beb-a6ff6ef3ef9f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/assetType", - "value": "http://www.bbc.co.uk/things/22ea958e-2004-4f34-80a7-bf5acad52f6f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/editorialSensitivity", - "value": "http://www.bbc.co.uk/things/c6979033-cb72-4d07-9897-adc348a4332e#id" - } - ], - "schemaVersion": "1.4.0", - "publishedState": "PUBLISHED", - "predicates": { - "assetType": [ - { - "value": "http://www.bbc.co.uk/things/22ea958e-2004-4f34-80a7-bf5acad52f6f#id", - "type": "assetType" - } - ], - "primaryMediaType": [ - { - "value": "http://www.bbc.co.uk/things/ffc98bca-8cff-4ee6-9beb-a6ff6ef3ef9f#id", - "type": "primaryMediaType" - } - ], - "motivation": [], - "infoClass": [ - { - "value": "http://www.bbc.co.uk/things/0db2b959-cbf8-4661-965f-050974a69bb5#id", - "type": "infoClass" - } - ], - "editorialSensitivity": [ - { - "value": "http://www.bbc.co.uk/things/c6979033-cb72-4d07-9897-adc348a4332e#id", - "type": "editorialSensitivity" - } - ], - "about": [ - { - "value": "http://www.bbc.co.uk/things/0ddb2a64-18b7-4e25-9844-9f467489a53f#id", - "thingLabel": "Ilimin harsuna", - "thingUri": "http://www.bbc.co.uk/things/0ddb2a64-18b7-4e25-9844-9f467489a53f#id", - "thingId": "0ddb2a64-18b7-4e25-9844-9f467489a53f", - "thingType": [ - "tagging:TagConcept", - "core:Theme", - "core:Thing" - ], - "thingSameAs": [ - "http://www.wikidata.org/entity/Q8242", - "http://dbpedia.org/resource/Literature" - ], - "thingEnglishLabel": "Literature", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/5307a8d9-f620-40f5-92d4-f99c919a6ffa#id", - "thingLabel": "Al'umma", - "thingUri": "http://www.bbc.co.uk/things/5307a8d9-f620-40f5-92d4-f99c919a6ffa#id", - "thingId": "5307a8d9-f620-40f5-92d4-f99c919a6ffa", - "thingType": [ - "core:Theme", - "tagging:TagConcept", - "core:Thing" - ], - "thingSameAs": [ - "http://dbpedia.org/resource/Society", - "http://www.wikidata.org/entity/Q8425" - ], - "thingEnglishLabel": "Society", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/6942cb29-9d3f-4c9c-9806-0a0578c286d6#id", - "thingLabel": "Ilimi", - "thingUri": "http://www.bbc.co.uk/things/6942cb29-9d3f-4c9c-9806-0a0578c286d6#id", - "thingId": "6942cb29-9d3f-4c9c-9806-0a0578c286d6", - "thingType": [ - "tagging:TagConcept", - "core:Thing", - "core:Theme" - ], - "thingSameAs": [ - "http://www.wikidata.org/entity/Q8434", - "http://dbpedia.org/resource/Education" - ], - "thingEnglishLabel": "Education", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/82857f8e-8134-462a-bb32-b7b14f4eab75#id", - "thingLabel": "Amurka", - "thingUri": "http://www.bbc.co.uk/things/82857f8e-8134-462a-bb32-b7b14f4eab75#id", - "thingId": "82857f8e-8134-462a-bb32-b7b14f4eab75", - "thingType": [ - "tagging:TagConcept", - "core:Place", - "core:Thing" - ], - "thingSameAs": [ - "http://sws.geonames.org/6252001/" - ], - "thingEnglishLabel": "United States", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/a9aede5d-df86-4664-9800-c325b6bd2f40#id", - "thingLabel": "Littafai", - "thingUri": "http://www.bbc.co.uk/things/a9aede5d-df86-4664-9800-c325b6bd2f40#id", - "thingId": "a9aede5d-df86-4664-9800-c325b6bd2f40", - "thingType": [ - "core:Thing", - "core:Theme", - "tagging:TagConcept" - ], - "thingSameAs": [ - "http://dbpedia.org/resource/Book" - ], - "thingEnglishLabel": "Books", - "type": "about" - } - ] - } - }, - "id": "urn:bbc:ares::article:ckmllxjlmreo", - "type": "optimo" - } - }, - { - "id": "urn:bbc:optimo:asset:c72rrlk5vwwo", - "rank": 4, - "count": 329, - "urn": "urn:bbc:optimo:asset:c72rrlk5vwwo", - "promo": { - "locators": { - "optimoUrn": "urn:bbc:optimo:asset:c72rrlk5vwwo", - "canonicalUrl": "https://www.bbc.com/hausa/articles/c72rrlk5vwwo" - }, - "timestamp": 1687291657164, - "suitableForSyndication": true, - "language": "ha", - "headlines": { - "seoHeadline": "Kula da 'yan gudun hijira aikin kowa ne - Imaan Sulaiman", - "promoHeadline": { - "blocks": [ - { - "type": "text", - "model": { - "blocks": [ - { - "type": "paragraph", - "model": { - "text": "Kula da 'yan gudun hijira aikin kowa ne - Imaan Sulaiman", - "blocks": [ - { - "type": "fragment", - "model": { - "text": "Kula da 'yan gudun hijira aikin kowa ne - Imaan Sulaiman", - "attributes": [] - } - } - ] - } - } - ] - } - } - ] - } - }, - "images": { - "defaultPromoImage": { - "blocks": [ - { - "type": "altText", - "model": { - "blocks": [ - { - "type": "text", - "model": { - "blocks": [ - { - "type": "paragraph", - "model": { - "text": "Refugee commission", - "blocks": [ - { - "type": "fragment", - "model": { - "text": "Refugee commission", - "attributes": [] - } - } - ] - } - } - ] - } - } - ] - } - }, - { - "type": "rawImage", - "model": { - "width": 668, - "height": 370, - "locator": "ce75/live/02fa9b30-0fa6-11ee-816c-eb33efffe2a0.png", - "originCode": "cpsprodpb", - "copyrightHolder": "BBC", - "suitableForSyndication": true - } - } - ] - } - }, - "summary": { - "blocks": [ - { - "type": "text", - "model": { - "blocks": [ - { - "type": "paragraph", - "model": { - "text": "Kwamishiniyar hukumar, Hajiya Imaan Sulaiman-Ibrahim ta ce aikin kula da 'yan gudun hijira ba na gwamnati ba ne ita kaɗai.", - "blocks": [ - { - "type": "fragment", - "model": { - "text": "Kwamishiniyar hukumar, Hajiya Imaan Sulaiman-Ibrahim ta ce aikin kula da 'yan gudun hijira ba na gwamnati ba ne ita kaɗai.", - "attributes": [] - } - } - ] - } - } - ] - } - } - ] - }, - "passport": { - "language": "ha", - "home": "http://www.bbc.co.uk/ontologies/passport/home/Hausa", - "locator": "urn:bbc:optimo:asset:c72rrlk5vwwo", - "availability": "AVAILABLE", - "taggings": [ - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/3d5d5e30-dd50-4041-96d5-c970b20005b9#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/infoClass", - "value": "http://www.bbc.co.uk/things/0db2b959-cbf8-4661-965f-050974a69bb5#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/83a45ff0-d5b2-4cdb-be7e-523c6001751b#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/primaryMediaType", - "value": "http://www.bbc.co.uk/things/ffc98bca-8cff-4ee6-9beb-a6ff6ef3ef9f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/0cd55773-e753-44ad-ad07-1366bf1aa6bc#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/assetType", - "value": "http://www.bbc.co.uk/things/22ea958e-2004-4f34-80a7-bf5acad52f6f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/editorialSensitivity", - "value": "http://www.bbc.co.uk/things/c6979033-cb72-4d07-9897-adc348a4332e#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/audience/motivation", - "value": "http://www.bbc.co.uk/things/b1a660eb-ef14-4645-b4cd-d7bd939ce443#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/dec4ac75-3f1c-492b-a93f-2b5aafd52806#id" - } - ], - "schemaVersion": "1.4.0", - "publishedState": "PUBLISHED", - "predicates": { - "assetType": [ - { - "value": "http://www.bbc.co.uk/things/22ea958e-2004-4f34-80a7-bf5acad52f6f#id", - "type": "assetType" - } - ], - "primaryMediaType": [ - { - "value": "http://www.bbc.co.uk/things/ffc98bca-8cff-4ee6-9beb-a6ff6ef3ef9f#id", - "type": "primaryMediaType" - } - ], - "motivation": [], - "infoClass": [ - { - "value": "http://www.bbc.co.uk/things/0db2b959-cbf8-4661-965f-050974a69bb5#id", - "type": "infoClass" - } - ], - "editorialSensitivity": [ - { - "value": "http://www.bbc.co.uk/things/c6979033-cb72-4d07-9897-adc348a4332e#id", - "type": "editorialSensitivity" - } - ], - "about": [ - { - "value": "http://www.bbc.co.uk/things/0cd55773-e753-44ad-ad07-1366bf1aa6bc#id", - "thingLabel": "'Yan gudun hijira", - "thingUri": "http://www.bbc.co.uk/things/0cd55773-e753-44ad-ad07-1366bf1aa6bc#id", - "thingId": "0cd55773-e753-44ad-ad07-1366bf1aa6bc", - "thingType": [ - "tagging:TagConcept", - "core:Thing", - "core:Theme" - ], - "thingSameAs": [ - "http://dbpedia.org/resource/Refugee", - "http://www.wikidata.org/entity/Q564811" - ], - "thingEnglishLabel": "Refugees and asylum seekers", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/3d5d5e30-dd50-4041-96d5-c970b20005b9#id", - "thingLabel": "Najeriya", - "thingUri": "http://www.bbc.co.uk/things/3d5d5e30-dd50-4041-96d5-c970b20005b9#id", - "thingId": "3d5d5e30-dd50-4041-96d5-c970b20005b9", - "thingType": [ - "core:Place", - "core:Thing", - "tagging:TagConcept" - ], - "thingSameAs": [ - "http://sws.geonames.org/2328926/" - ], - "thingEnglishLabel": "Nigeria", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/83a45ff0-d5b2-4cdb-be7e-523c6001751b#id", - "thingLabel": "'Yan cirani", - "thingUri": "http://www.bbc.co.uk/things/83a45ff0-d5b2-4cdb-be7e-523c6001751b#id", - "thingId": "83a45ff0-d5b2-4cdb-be7e-523c6001751b", - "thingType": [ - "tagging:AmbiguousTerm", - "tagging:NarrativeTheme", - "tagging:TagConcept", - "core:Thing", - "core:Theme" - ], - "thingSameAs": [ - "http://dbpedia.org/resource/Human_migration", - "http://www.wikidata.org/entity/Q177626" - ], - "thingEnglishLabel": "Migration", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/dec4ac75-3f1c-492b-a93f-2b5aafd52806#id", - "thingLabel": "Yan ci-rani", - "thingUri": "http://www.bbc.co.uk/things/dec4ac75-3f1c-492b-a93f-2b5aafd52806#id", - "thingId": "dec4ac75-3f1c-492b-a93f-2b5aafd52806", - "thingType": [ - "core:Thing", - "tagging:TagConcept", - "core:Theme" - ], - "thingSameAs": [ - "http://www.wikidata.org/entity/Q15320003", - "http://dbpedia.org/resource/Migrant_worker" - ], - "thingEnglishLabel": "Migrant workers", - "type": "about" - } - ] - } - }, - "id": "urn:bbc:ares::article:c72rrlk5vwwo", - "type": "optimo" - } - }, - { - "id": "urn:bbc:optimo:asset:c2qggpeykwdo", - "rank": 5, - "count": 318, - "urn": "urn:bbc:optimo:asset:c2qggpeykwdo", - "promo": { - "locators": { - "optimoUrn": "urn:bbc:optimo:asset:c2qggpeykwdo", - "canonicalUrl": "https://www.bbc.com/hausa/articles/c2qggpeykwdo" - }, - "timestamp": 1687176980609, - "suitableForSyndication": true, - "language": "ha", - "headlines": { - "seoHeadline": "Kalli bayani kan falalar kwanaki goma na farkon Dhul-Hijjah", - "promoHeadline": { - "blocks": [ - { - "type": "text", - "model": { - "blocks": [ - { - "type": "paragraph", - "model": { - "text": "Kalli bayani kan falalar kwanaki goma na farkon Dhul-Hijjah", - "blocks": [ - { - "type": "fragment", - "model": { - "text": "Kalli bayani kan falalar kwanaki goma na farkon Dhul-Hijjah", - "attributes": [] - } - } - ] - } - } - ] - } - } - ] - } - }, - "images": { - "defaultPromoImage": { - "blocks": [ - { - "type": "caption", - "model": { - "blocks": [ - { - "type": "text", - "model": { - "blocks": [ - { - "type": "paragraph", - "model": { - "text": " Khalifa Muhammad Mashood", - "blocks": [ - { - "type": "fragment", - "model": { - "text": " Khalifa Muhammad Mashood", - "attributes": [] - } - } - ] - } - } - ] - } - } - ] - } - }, - { - "type": "altText", - "model": { - "blocks": [ - { - "type": "text", - "model": { - "blocks": [ - { - "type": "paragraph", - "model": { - "text": " Khalifa Muhammad Mashood", - "blocks": [ - { - "type": "fragment", - "model": { - "text": " Khalifa Muhammad Mashood", - "attributes": [] - } - } - ] - } - } - ] - } - } - ] - } - }, - { - "type": "rawImage", - "model": { - "width": 1437, - "height": 932, - "locator": "5c4e/live/e10a11b0-0e9a-11ee-9e94-25f17ea6acca.jpg", - "originCode": "cpsprodpb", - "copyrightHolder": "BBC", - "suitableForSyndication": true - } - } - ] - } - }, - "summary": { - "blocks": [ - { - "type": "text", - "model": { - "blocks": [ - { - "type": "paragraph", - "model": { - "text": "Kun san falalar kwanaki goma na farkon watan Dhul-Hijjah? Khalifa Muhammad Mashood ya yi mana bayani a cikin wannan bidiyo.", - "blocks": [ - { - "type": "fragment", - "model": { - "text": "Kun san falalar kwanaki goma na farkon watan Dhul-Hijjah? Khalifa Muhammad Mashood ya yi mana bayani a cikin wannan bidiyo.", - "attributes": [] - } - } - ] - } - } - ] - } - } - ] - }, - "passport": { - "language": "ha", - "home": "http://www.bbc.co.uk/ontologies/passport/home/Hausa", - "locator": "urn:bbc:optimo:asset:c2qggpeykwdo", - "availability": "AVAILABLE", - "taggings": [ - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/3d5d5e30-dd50-4041-96d5-c970b20005b9#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/primaryMediaType", - "value": "http://www.bbc.co.uk/things/ffc98bca-8cff-4ee6-9beb-a6ff6ef3ef9f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/1b3d2a47-78c9-4fc9-aeb6-746063169674#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/infoClass", - "value": "http://www.bbc.co.uk/things/0db2b959-cbf8-4661-965f-050974a69bb5#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/6942cb29-9d3f-4c9c-9806-0a0578c286d6#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/audience/motivation", - "value": "http://www.bbc.co.uk/things/b1a660eb-ef14-4645-b4cd-d7bd939ce443#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/assetType", - "value": "http://www.bbc.co.uk/things/22ea958e-2004-4f34-80a7-bf5acad52f6f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/editorialSensitivity", - "value": "http://www.bbc.co.uk/things/c6979033-cb72-4d07-9897-adc348a4332e#id" - } - ], - "schemaVersion": "1.4.0", - "publishedState": "PUBLISHED", - "predicates": { - "assetType": [ - { - "value": "http://www.bbc.co.uk/things/22ea958e-2004-4f34-80a7-bf5acad52f6f#id", - "type": "assetType" - } - ], - "primaryMediaType": [ - { - "value": "http://www.bbc.co.uk/things/ffc98bca-8cff-4ee6-9beb-a6ff6ef3ef9f#id", - "type": "primaryMediaType" - } - ], - "motivation": [], - "infoClass": [ - { - "value": "http://www.bbc.co.uk/things/0db2b959-cbf8-4661-965f-050974a69bb5#id", - "type": "infoClass" - } - ], - "editorialSensitivity": [ - { - "value": "http://www.bbc.co.uk/things/c6979033-cb72-4d07-9897-adc348a4332e#id", - "type": "editorialSensitivity" - } - ], - "about": [ - { - "value": "http://www.bbc.co.uk/things/1b3d2a47-78c9-4fc9-aeb6-746063169674#id", - "thingLabel": "Musulunci", - "thingUri": "http://www.bbc.co.uk/things/1b3d2a47-78c9-4fc9-aeb6-746063169674#id", - "thingId": "1b3d2a47-78c9-4fc9-aeb6-746063169674", - "thingType": [ - "tagging:TagConcept", - "core:Theme", - "core:Thing" - ], - "thingSameAs": [ - "http://dbpedia.org/resource/Islam" - ], - "thingEnglishLabel": "Islam", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/3d5d5e30-dd50-4041-96d5-c970b20005b9#id", - "thingLabel": "Najeriya", - "thingUri": "http://www.bbc.co.uk/things/3d5d5e30-dd50-4041-96d5-c970b20005b9#id", - "thingId": "3d5d5e30-dd50-4041-96d5-c970b20005b9", - "thingType": [ - "core:Place", - "core:Thing", - "tagging:TagConcept" - ], - "thingSameAs": [ - "http://sws.geonames.org/2328926/" - ], - "thingEnglishLabel": "Nigeria", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/6942cb29-9d3f-4c9c-9806-0a0578c286d6#id", - "thingLabel": "Ilimi", - "thingUri": "http://www.bbc.co.uk/things/6942cb29-9d3f-4c9c-9806-0a0578c286d6#id", - "thingId": "6942cb29-9d3f-4c9c-9806-0a0578c286d6", - "thingType": [ - "tagging:TagConcept", - "core:Thing", - "core:Theme" - ], - "thingSameAs": [ - "http://www.wikidata.org/entity/Q8434", - "http://dbpedia.org/resource/Education" - ], - "thingEnglishLabel": "Education", - "type": "about" - } - ] - } - }, - "id": "urn:bbc:ares::article:c2qggpeykwdo", - "type": "optimo" - } - }, - { - "id": "urn:bbc:optimo:asset:cg3xxzed1wro", - "rank": 6, - "count": 273, - "urn": "urn:bbc:optimo:asset:cg3xxzed1wro", - "promo": { - "locators": { - "optimoUrn": "urn:bbc:optimo:asset:cg3xxzed1wro", - "canonicalUrl": "https://www.bbc.com/hausa/articles/cg3xxzed1wro" - }, - "timestamp": 1687254976888, - "suitableForSyndication": true, - "language": "ha", - "headlines": { - "seoHeadline": "Yadda za a kula da mai ciwon sikila lokacin damuna", - "promoHeadline": { - "blocks": [ - { - "type": "text", - "model": { - "blocks": [ - { - "type": "paragraph", - "model": { - "text": "Yadda za a kula da mai ciwon sikila lokacin damuna", - "blocks": [ - { - "type": "fragment", - "model": { - "text": "Yadda za a kula da mai ciwon sikila lokacin damuna", - "attributes": [] - } - } - ] - } - } - ] - } - } - ] - } - }, - "images": { - "defaultPromoImage": { - "blocks": [ - { - "type": "caption", - "model": { - "blocks": [ - { - "type": "text", - "model": { - "blocks": [ - { - "type": "paragraph", - "model": { - "text": "Hajiya Badiyya Inuwa", - "blocks": [ - { - "type": "fragment", - "model": { - "text": "Hajiya Badiyya Inuwa", - "attributes": [] - } - } - ] - } - } - ] - } - } - ] - } - }, - { - "type": "altText", - "model": { - "blocks": [ - { - "type": "text", - "model": { - "blocks": [ - { - "type": "paragraph", - "model": { - "text": "Hajiya Badiyya Inuwa", - "blocks": [ - { - "type": "fragment", - "model": { - "text": "Hajiya Badiyya Inuwa", - "attributes": [] - } - } - ] - } - } - ] - } - } - ] - } - }, - { - "type": "rawImage", - "model": { - "width": 800, - "height": 534, - "locator": "9e1b/live/550782e0-0f50-11ee-9e94-25f17ea6acca.jpg", - "originCode": "cpsprodpb", - "copyrightHolder": "BBC", - "suitableForSyndication": true - } - } - ] - } - }, - "summary": { - "blocks": [ - { - "type": "text", - "model": { - "blocks": [ - { - "type": "paragraph", - "model": { - "text": "Najeriya na daga cikin ƙasashen da suka fi yawan masu fama da cutar sikila a duniya.", - "blocks": [ - { - "type": "fragment", - "model": { - "text": "Najeriya na daga cikin ƙasashen da suka fi yawan masu fama da cutar sikila a duniya.", - "attributes": [] - } - } - ] - } - } - ] - } - } - ] - }, - "passport": { - "language": "ha", - "home": "http://www.bbc.co.uk/ontologies/passport/home/Hausa", - "locator": "urn:bbc:optimo:asset:cg3xxzed1wro", - "availability": "AVAILABLE", - "taggings": [ - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/3d5d5e30-dd50-4041-96d5-c970b20005b9#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/0f469e6a-d4a6-46f2-b727-2bd039cb6b53#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/primaryMediaType", - "value": "http://www.bbc.co.uk/things/ffc98bca-8cff-4ee6-9beb-a6ff6ef3ef9f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/c4794229-7f87-43ce-ac0a-6cfcd6d3cef2#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/audience/motivation", - "value": "http://www.bbc.co.uk/things/7047e74c-b9ae-4c02-a4a8-748df451ac58#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/infoClass", - "value": "http://www.bbc.co.uk/things/0db2b959-cbf8-4661-965f-050974a69bb5#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/audience/motivation", - "value": "http://www.bbc.co.uk/things/b1a660eb-ef14-4645-b4cd-d7bd939ce443#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/e7f068e4-c41a-448c-9efc-769ef0ee1803#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/assetType", - "value": "http://www.bbc.co.uk/things/22ea958e-2004-4f34-80a7-bf5acad52f6f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/editorialSensitivity", - "value": "http://www.bbc.co.uk/things/c6979033-cb72-4d07-9897-adc348a4332e#id" - } - ], - "schemaVersion": "1.4.0", - "publishedState": "PUBLISHED", - "predicates": { - "assetType": [ - { - "value": "http://www.bbc.co.uk/things/22ea958e-2004-4f34-80a7-bf5acad52f6f#id", - "type": "assetType" - } - ], - "primaryMediaType": [ - { - "value": "http://www.bbc.co.uk/things/ffc98bca-8cff-4ee6-9beb-a6ff6ef3ef9f#id", - "type": "primaryMediaType" - } - ], - "motivation": [], - "infoClass": [ - { - "value": "http://www.bbc.co.uk/things/0db2b959-cbf8-4661-965f-050974a69bb5#id", - "type": "infoClass" - } - ], - "editorialSensitivity": [ - { - "value": "http://www.bbc.co.uk/things/c6979033-cb72-4d07-9897-adc348a4332e#id", - "type": "editorialSensitivity" - } - ], - "about": [ - { - "value": "http://www.bbc.co.uk/things/0f469e6a-d4a6-46f2-b727-2bd039cb6b53#id", - "thingLabel": "Kimiyya", - "thingUri": "http://www.bbc.co.uk/things/0f469e6a-d4a6-46f2-b727-2bd039cb6b53#id", - "thingId": "0f469e6a-d4a6-46f2-b727-2bd039cb6b53", - "thingType": [ - "core:Thing", - "tagging:TagConcept", - "core:Theme" - ], - "thingSameAs": [ - "http://www.wikidata.org/entity/Q336", - "http://dbpedia.org/resource/Science" - ], - "thingEnglishLabel": "Science", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/3d5d5e30-dd50-4041-96d5-c970b20005b9#id", - "thingLabel": "Najeriya", - "thingUri": "http://www.bbc.co.uk/things/3d5d5e30-dd50-4041-96d5-c970b20005b9#id", - "thingId": "3d5d5e30-dd50-4041-96d5-c970b20005b9", - "thingType": [ - "core:Place", - "core:Thing", - "tagging:TagConcept" - ], - "thingSameAs": [ - "http://sws.geonames.org/2328926/" - ], - "thingEnglishLabel": "Nigeria", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/c4794229-7f87-43ce-ac0a-6cfcd6d3cef2#id", - "thingLabel": "Lafiya", - "thingUri": "http://www.bbc.co.uk/things/c4794229-7f87-43ce-ac0a-6cfcd6d3cef2#id", - "thingId": "c4794229-7f87-43ce-ac0a-6cfcd6d3cef2", - "thingType": [ - "core:Thing", - "core:Theme", - "tagging:AmbiguousTerm", - "tagging:TagConcept", - "tagging:Genre" - ], - "thingSameAs": [ - "http://dbpedia.org/resource/Health", - "http://www.wikidata.org/entity/Q12147" - ], - "thingEnglishLabel": "Health", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/e7f068e4-c41a-448c-9efc-769ef0ee1803#id", - "thingLabel": "Hukumar Lafiya Ta Duniya", - "thingUri": "http://www.bbc.co.uk/things/e7f068e4-c41a-448c-9efc-769ef0ee1803#id", - "thingId": "e7f068e4-c41a-448c-9efc-769ef0ee1803", - "thingType": [ - "core:Organisation", - "core:Thing", - "tagging:TagConcept", - "tagging:AmbiguousTerm", - "tagging:Agent" - ], - "thingSameAs": [ - "http://dbpedia.org/resource/World_Health_Organization" - ], - "thingEnglishLabel": "World Health Organization (WHO)", - "type": "about" - } - ] - } - }, - "id": "urn:bbc:ares::article:cg3xxzed1wro", - "type": "optimo" - } - }, - { - "id": "urn:bbc:optimo:asset:ck7dzkggy4go", - "rank": 7, - "count": 247, - "urn": "urn:bbc:optimo:asset:ck7dzkggy4go", - "promo": { - "locators": { - "optimoUrn": "urn:bbc:optimo:asset:ck7dzkggy4go", - "canonicalUrl": "https://www.bbc.com/hausa/articles/ck7dzkggy4go" - }, - "timestamp": 1687095858442, - "suitableForSyndication": true, - "language": "ha", - "headlines": { - "seoHeadline": "Yadda shara ke rufa asirin masu sarrafa ta", - "promoHeadline": { - "blocks": [ - { - "type": "text", - "model": { - "blocks": [ - { - "type": "paragraph", - "model": { - "text": "Yadda shara ke rufa asirin masu sarrafa ta", - "blocks": [ - { - "type": "fragment", - "model": { - "text": "Yadda shara ke rufa asirin masu sarrafa ta", - "attributes": [] - } - } - ] - } - } - ] - } - } - ] - } - }, - "images": { - "defaultPromoImage": { - "blocks": [ - { - "type": "altText", - "model": { - "blocks": [ - { - "type": "text", - "model": { - "blocks": [ - { - "type": "paragraph", - "model": { - "text": "...", - "blocks": [ - { - "type": "fragment", - "model": { - "text": "...", - "attributes": [] - } - } - ] - } - } - ] - } - } - ] - } - }, - { - "type": "rawImage", - "model": { - "width": 1621, - "height": 911, - "locator": "9ae8/live/95df54e0-0c81-11ee-9e94-25f17ea6acca.jpg", - "originCode": "cpsprodpb", - "copyrightHolder": "BBC", - "suitableForSyndication": true - } - } - ] - } - }, - "summary": { - "blocks": [ - { - "type": "text", - "model": { - "blocks": [ - { - "type": "paragraph", - "model": { - "text": "Yadda shara ke rufa asirin masu sarrafa ta", - "blocks": [ - { - "type": "fragment", - "model": { - "text": "Yadda shara ke rufa asirin masu sarrafa ta", - "attributes": [] - } - } - ] - } - } - ] - } - } - ] - }, - "passport": { - "language": "ha", - "home": "http://www.bbc.co.uk/ontologies/passport/home/Hausa", - "locator": "urn:bbc:optimo:asset:ck7dzkggy4go", - "availability": "AVAILABLE", - "taggings": [ - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/3d5d5e30-dd50-4041-96d5-c970b20005b9#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/primaryMediaType", - "value": "http://www.bbc.co.uk/things/ffc98bca-8cff-4ee6-9beb-a6ff6ef3ef9f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/9760ca9c-1313-4e0e-bd0b-f423b34ff8d8#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/infoClass", - "value": "http://www.bbc.co.uk/things/0db2b959-cbf8-4661-965f-050974a69bb5#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/audience/motivation", - "value": "http://www.bbc.co.uk/things/e5edf40d-b1e6-48f5-be62-8fe6d7fe857a#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/a0d7e0d8-2d01-4178-bb61-3922db2c0112#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/b712cf42-5a41-4263-879d-5ec4717d7798#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/20111747-026a-4687-a5a7-0a0499746ac6#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/assetType", - "value": "http://www.bbc.co.uk/things/22ea958e-2004-4f34-80a7-bf5acad52f6f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/editorialSensitivity", - "value": "http://www.bbc.co.uk/things/c6979033-cb72-4d07-9897-adc348a4332e#id" - } - ], - "schemaVersion": "1.4.0", - "publishedState": "PUBLISHED", - "predicates": { - "assetType": [ - { - "value": "http://www.bbc.co.uk/things/22ea958e-2004-4f34-80a7-bf5acad52f6f#id", - "type": "assetType" - } - ], - "primaryMediaType": [ - { - "value": "http://www.bbc.co.uk/things/ffc98bca-8cff-4ee6-9beb-a6ff6ef3ef9f#id", - "type": "primaryMediaType" - } - ], - "motivation": [], - "infoClass": [ - { - "value": "http://www.bbc.co.uk/things/0db2b959-cbf8-4661-965f-050974a69bb5#id", - "type": "infoClass" - } - ], - "editorialSensitivity": [ - { - "value": "http://www.bbc.co.uk/things/c6979033-cb72-4d07-9897-adc348a4332e#id", - "type": "editorialSensitivity" - } - ], - "about": [ - { - "value": "http://www.bbc.co.uk/things/20111747-026a-4687-a5a7-0a0499746ac6#id", - "thingLabel": "Sha'anin kudi na kai", - "thingUri": "http://www.bbc.co.uk/things/20111747-026a-4687-a5a7-0a0499746ac6#id", - "thingId": "20111747-026a-4687-a5a7-0a0499746ac6", - "thingType": [ - "core:Thing", - "tagging:TagConcept", - "core:Theme" - ], - "thingSameAs": [ - "http://www.wikidata.org/entity/Q253613", - "http://dbpedia.org/resource/Personal_finance" - ], - "thingEnglishLabel": "Personal finance", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/3d5d5e30-dd50-4041-96d5-c970b20005b9#id", - "thingLabel": "Najeriya", - "thingUri": "http://www.bbc.co.uk/things/3d5d5e30-dd50-4041-96d5-c970b20005b9#id", - "thingId": "3d5d5e30-dd50-4041-96d5-c970b20005b9", - "thingType": [ - "core:Place", - "core:Thing", - "tagging:TagConcept" - ], - "thingSameAs": [ - "http://sws.geonames.org/2328926/" - ], - "thingEnglishLabel": "Nigeria", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/9760ca9c-1313-4e0e-bd0b-f423b34ff8d8#id", - "thingLabel": "Abuja", - "thingUri": "http://www.bbc.co.uk/things/9760ca9c-1313-4e0e-bd0b-f423b34ff8d8#id", - "thingId": "9760ca9c-1313-4e0e-bd0b-f423b34ff8d8", - "thingType": [ - "core:Place", - "core:Thing", - "tagging:TagConcept" - ], - "thingSameAs": [ - "http://sws.geonames.org/2352777/" - ], - "thingEnglishLabel": "Abuja", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/a0d7e0d8-2d01-4178-bb61-3922db2c0112#id", - "thingLabel": "Kano", - "thingUri": "http://www.bbc.co.uk/things/a0d7e0d8-2d01-4178-bb61-3922db2c0112#id", - "thingId": "a0d7e0d8-2d01-4178-bb61-3922db2c0112", - "thingType": [ - "tagging:TagConcept", - "core:Thing", - "core:Place" - ], - "thingSameAs": [ - "http://sws.geonames.org/2335204/" - ], - "thingEnglishLabel": "Kano", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/b712cf42-5a41-4263-879d-5ec4717d7798#id", - "thingLabel": "Afirka Ta Yamma", - "thingUri": "http://www.bbc.co.uk/things/b712cf42-5a41-4263-879d-5ec4717d7798#id", - "thingId": "b712cf42-5a41-4263-879d-5ec4717d7798", - "thingType": [ - "tagging:TagConcept", - "core:Thing", - "core:Place" - ], - "thingSameAs": [ - "http://dbpedia.org/resource/West_Africa" - ], - "thingEnglishLabel": "West Africa", - "type": "about" - } - ] - } - }, - "id": "urn:bbc:ares::article:ck7dzkggy4go", - "type": "optimo" - } - }, - { - "id": "urn:bbc:optimo:asset:ckdkejxjlylo", - "rank": 8, - "count": 197, - "urn": "urn:bbc:optimo:asset:ckdkejxjlylo", - "promo": { - "locators": { - "optimoUrn": "urn:bbc:optimo:asset:ckdkejxjlylo", - "canonicalUrl": "https://www.bbc.com/hausa/articles/ckdkejxjlylo" - }, - "timestamp": 1686800924345, - "suitableForSyndication": true, - "language": "ha", - "headlines": { - "seoHeadline": "Daga Bakin Mai Ita tare da Zubaida Muhammad", - "promoHeadline": { - "blocks": [ - { - "type": "text", - "model": { - "blocks": [ - { - "type": "paragraph", - "model": { - "text": "Daga Bakin Mai Ita tare da Zubaida Muhammad", - "blocks": [ - { - "type": "fragment", - "model": { - "text": "Daga Bakin Mai Ita tare da Zubaida Muhammad", - "attributes": [] - } - } - ] - } - } - ] - } - } - ] - } - }, - "images": { - "defaultPromoImage": { - "blocks": [ - { - "type": "caption", - "model": { - "blocks": [ - { - "type": "text", - "model": { - "blocks": [ - { - "type": "paragraph", - "model": { - "text": "Zubaida Muhammad", - "blocks": [ - { - "type": "fragment", - "model": { - "text": "Zubaida Muhammad", - "attributes": [] - } - } - ] - } - } - ] - } - } - ] - } - }, - { - "type": "altText", - "model": { - "blocks": [ - { - "type": "text", - "model": { - "blocks": [ - { - "type": "paragraph", - "model": { - "text": "Zubaida Muhammad", - "blocks": [ - { - "type": "fragment", - "model": { - "text": "Zubaida Muhammad", - "attributes": [] - } - } - ] - } - } - ] - } - } - ] - } - }, - { - "type": "rawImage", - "model": { - "width": 1432, - "height": 904, - "locator": "21cc/live/246f00a0-0aef-11ee-b5af-25e80c61c11a.jpg", - "originCode": "cpsprodpb", - "copyrightHolder": "BBC", - "suitableForSyndication": true - } - } - ] - } - }, - "summary": { - "blocks": [ - { - "type": "text", - "model": { - "blocks": [ - { - "type": "paragraph", - "model": { - "text": "A shirin Daga Bakin Mai Ita na wannan mako mun kawo muku tattaunawa da Zubaida Muhammad. Ƴar asalin jihar Borno ta ce ta kwashe kimanin shekara biyar a harkar fim.", - "blocks": [ - { - "type": "fragment", - "model": { - "text": "A shirin Daga Bakin Mai Ita na wannan mako mun kawo muku tattaunawa da Zubaida Muhammad. Ƴar asalin jihar Borno ta ce ta kwashe kimanin shekara biyar a harkar fim.", - "attributes": [] - } - } - ] - } - } - ] - } - } - ] - }, - "passport": { - "language": "ha", - "home": "http://www.bbc.co.uk/ontologies/passport/home/Hausa", - "locator": "urn:bbc:optimo:asset:ckdkejxjlylo", - "availability": "AVAILABLE", - "taggings": [ - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/3d5d5e30-dd50-4041-96d5-c970b20005b9#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/primaryMediaType", - "value": "http://www.bbc.co.uk/things/ffc98bca-8cff-4ee6-9beb-a6ff6ef3ef9f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/2c1768f1-4f46-4cad-8b85-38ceb898dfe3#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/2611f753-ece7-47ea-9782-f912bc1e4088#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/infoClass", - "value": "http://www.bbc.co.uk/things/0db2b959-cbf8-4661-965f-050974a69bb5#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/a0d7e0d8-2d01-4178-bb61-3922db2c0112#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/1c3b60a9-14eb-484b-a750-9f5b1aeaac31#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/assetType", - "value": "http://www.bbc.co.uk/things/22ea958e-2004-4f34-80a7-bf5acad52f6f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/editorialSensitivity", - "value": "http://www.bbc.co.uk/things/c6979033-cb72-4d07-9897-adc348a4332e#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/audience/motivation", - "value": "http://www.bbc.co.uk/things/e1deed1e-0cab-4965-8e92-897b195f7a47#id" - } - ], - "schemaVersion": "1.4.0", - "publishedState": "PUBLISHED", - "predicates": { - "assetType": [ - { - "value": "http://www.bbc.co.uk/things/22ea958e-2004-4f34-80a7-bf5acad52f6f#id", - "type": "assetType" - } - ], - "primaryMediaType": [ - { - "value": "http://www.bbc.co.uk/things/ffc98bca-8cff-4ee6-9beb-a6ff6ef3ef9f#id", - "type": "primaryMediaType" - } - ], - "motivation": [], - "infoClass": [ - { - "value": "http://www.bbc.co.uk/things/0db2b959-cbf8-4661-965f-050974a69bb5#id", - "type": "infoClass" - } - ], - "editorialSensitivity": [ - { - "value": "http://www.bbc.co.uk/things/c6979033-cb72-4d07-9897-adc348a4332e#id", - "type": "editorialSensitivity" - } - ], - "about": [ - { - "value": "http://www.bbc.co.uk/things/1c3b60a9-14eb-484b-a750-9f5b1aeaac31#id", - "thingLabel": "Nishadi", - "thingUri": "http://www.bbc.co.uk/things/1c3b60a9-14eb-484b-a750-9f5b1aeaac31#id", - "thingId": "1c3b60a9-14eb-484b-a750-9f5b1aeaac31", - "thingType": [ - "core:Theme", - "tagging:Genre", - "tagging:AmbiguousTerm", - "tagging:TagConcept", - "core:Thing" - ], - "thingSameAs": [ - "http://dbpedia.org/resource/Entertainment", - "http://www.wikidata.org/entity/Q173799" - ], - "thingEnglishLabel": "Entertainment", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/2611f753-ece7-47ea-9782-f912bc1e4088#id", - "thingLabel": "Fim", - "thingUri": "http://www.bbc.co.uk/things/2611f753-ece7-47ea-9782-f912bc1e4088#id", - "thingId": "2611f753-ece7-47ea-9782-f912bc1e4088", - "thingType": [ - "core:Thing", - "core:Theme", - "tagging:AmbiguousTerm", - "tagging:TagConcept", - "tagging:Format" - ], - "thingSameAs": [ - "http://www.wikidata.org/entity/Q11424", - "http://dbpedia.org/resource/Film" - ], - "thingEnglishLabel": "Film", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/2c1768f1-4f46-4cad-8b85-38ceb898dfe3#id", - "thingLabel": "Kannywood", - "thingUri": "http://www.bbc.co.uk/things/2c1768f1-4f46-4cad-8b85-38ceb898dfe3#id", - "thingId": "2c1768f1-4f46-4cad-8b85-38ceb898dfe3", - "thingType": [ - "core:Thing", - "tagging:TagConcept", - "core:Theme" - ], - "thingSameAs": [ - "http://dbpedia.org/resource/Cinema_of_Northern_Nigeria" - ], - "thingEnglishLabel": "Kannywood", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/3d5d5e30-dd50-4041-96d5-c970b20005b9#id", - "thingLabel": "Najeriya", - "thingUri": "http://www.bbc.co.uk/things/3d5d5e30-dd50-4041-96d5-c970b20005b9#id", - "thingId": "3d5d5e30-dd50-4041-96d5-c970b20005b9", - "thingType": [ - "core:Place", - "core:Thing", - "tagging:TagConcept" - ], - "thingSameAs": [ - "http://sws.geonames.org/2328926/" - ], - "thingEnglishLabel": "Nigeria", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/a0d7e0d8-2d01-4178-bb61-3922db2c0112#id", - "thingLabel": "Kano", - "thingUri": "http://www.bbc.co.uk/things/a0d7e0d8-2d01-4178-bb61-3922db2c0112#id", - "thingId": "a0d7e0d8-2d01-4178-bb61-3922db2c0112", - "thingType": [ - "tagging:TagConcept", - "core:Thing", - "core:Place" - ], - "thingSameAs": [ - "http://sws.geonames.org/2335204/" - ], - "thingEnglishLabel": "Kano", - "type": "about" - } - ] - } - }, - "id": "urn:bbc:ares::article:ckdkejxjlylo", - "type": "optimo" - } - }, - { - "id": "urn:bbc:optimo:asset:cd15mjv5pgvo", - "rank": 9, - "count": 109, - "urn": "urn:bbc:optimo:asset:cd15mjv5pgvo", - "promo": { - "locators": { - "optimoUrn": "urn:bbc:optimo:asset:cd15mjv5pgvo", - "canonicalUrl": "https://www.bbc.com/hausa/articles/cd15mjv5pgvo" - }, - "timestamp": 1686990287383, - "suitableForSyndication": true, - "language": "ha", - "headlines": { - "seoHeadline": "Ra'ayi Riga kan dokar bai wa dalibai tallafin rancen karatu a Najeriya", - "promoHeadline": { - "blocks": [ - { - "type": "text", - "model": { - "blocks": [ - { - "type": "paragraph", - "model": { - "text": "Ra'ayi Riga kan dokar bai wa dalibai tallafin rancen karatu a Najeriya", - "blocks": [ - { - "type": "fragment", - "model": { - "text": "Ra'ayi Riga kan dokar bai wa dalibai tallafin rancen karatu a Najeriya", - "attributes": [] - } - } - ] - } - } - ] - } - } - ] - } - }, - "images": {}, - "summary": { - "blocks": [ - { - "type": "text", - "model": { - "blocks": [ - { - "type": "paragraph", - "model": { - "text": "Ra'ayi Riga kan dokar bai wa dalibai tallafin rancen karatu a Najeriya", - "blocks": [ - { - "type": "fragment", - "model": { - "text": "Ra'ayi Riga kan dokar bai wa dalibai tallafin rancen karatu a Najeriya", - "attributes": [] - } - } - ] - } - } - ] - } - } - ] - }, - "passport": { - "language": "ha", - "home": "http://www.bbc.co.uk/ontologies/passport/home/Hausa", - "locator": "urn:bbc:optimo:asset:cd15mjv5pgvo", - "availability": "AVAILABLE", - "taggings": [ - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/3d5d5e30-dd50-4041-96d5-c970b20005b9#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/7d65828a-85c1-41f4-96cf-c758da75e401#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/primaryMediaType", - "value": "http://www.bbc.co.uk/things/fe1fbc8a-bb44-4bf8-8b12-52e58c6345a4#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/75612fa6-147c-4a43-97fa-fcf70d9cced3#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/audience/motivation", - "value": "http://www.bbc.co.uk/things/7047e74c-b9ae-4c02-a4a8-748df451ac58#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/infoClass", - "value": "http://www.bbc.co.uk/things/0db2b959-cbf8-4661-965f-050974a69bb5#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/6942cb29-9d3f-4c9c-9806-0a0578c286d6#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/assetType", - "value": "http://www.bbc.co.uk/things/22ea958e-2004-4f34-80a7-bf5acad52f6f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/format", - "value": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id" - } - ], - "schemaVersion": "1.4.0", - "publishedState": "PUBLISHED", - "predicates": { - "assetType": [ - { - "value": "http://www.bbc.co.uk/things/22ea958e-2004-4f34-80a7-bf5acad52f6f#id", - "type": "assetType" - } - ], - "primaryMediaType": [ - { - "value": "http://www.bbc.co.uk/things/fe1fbc8a-bb44-4bf8-8b12-52e58c6345a4#id", - "type": "primaryMediaType" - } - ], - "motivation": [], - "infoClass": [ - { - "value": "http://www.bbc.co.uk/things/0db2b959-cbf8-4661-965f-050974a69bb5#id", - "type": "infoClass" - } - ], - "formats": [ - { - "value": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id", - "thingLabel": "News report", - "thingUri": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id", - "thingId": "46c0517d-9927-4d1a-9954-8c63a3f7a888", - "thingType": [ - "tagging:TagConcept", - "tagging:Format" - ], - "thingSameAs": [], - "thingEnglishLabel": "Report", - "thingPreferredLabel": "Report", - "thingLabelLanguage": "ha", - "type": "formats" - } - ], - "about": [ - { - "value": "http://www.bbc.co.uk/things/3d5d5e30-dd50-4041-96d5-c970b20005b9#id", - "thingLabel": "Najeriya", - "thingUri": "http://www.bbc.co.uk/things/3d5d5e30-dd50-4041-96d5-c970b20005b9#id", - "thingId": "3d5d5e30-dd50-4041-96d5-c970b20005b9", - "thingType": [ - "core:Place", - "core:Thing", - "tagging:TagConcept" - ], - "thingSameAs": [ - "http://sws.geonames.org/2328926/" - ], - "thingEnglishLabel": "Nigeria", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/6942cb29-9d3f-4c9c-9806-0a0578c286d6#id", - "thingLabel": "Ilimi", - "thingUri": "http://www.bbc.co.uk/things/6942cb29-9d3f-4c9c-9806-0a0578c286d6#id", - "thingId": "6942cb29-9d3f-4c9c-9806-0a0578c286d6", - "thingType": [ - "tagging:TagConcept", - "core:Thing", - "core:Theme" - ], - "thingSameAs": [ - "http://www.wikidata.org/entity/Q8434", - "http://dbpedia.org/resource/Education" - ], - "thingEnglishLabel": "Education", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/75612fa6-147c-4a43-97fa-fcf70d9cced3#id", - "thingLabel": "Siyasa", - "thingUri": "http://www.bbc.co.uk/things/75612fa6-147c-4a43-97fa-fcf70d9cced3#id", - "thingId": "75612fa6-147c-4a43-97fa-fcf70d9cced3", - "thingType": [ - "tagging:Genre", - "tagging:TagConcept", - "tagging:AmbiguousTerm", - "core:Theme", - "core:Thing" - ], - "thingSameAs": [ - "http://dbpedia.org/resource/Politics" - ], - "thingEnglishLabel": "Politics", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/7d65828a-85c1-41f4-96cf-c758da75e401#id", - "thingLabel": "Siyasar Najeriya", - "thingUri": "http://www.bbc.co.uk/things/7d65828a-85c1-41f4-96cf-c758da75e401#id", - "thingId": "7d65828a-85c1-41f4-96cf-c758da75e401", - "thingType": [ - "core:Thing", - "tagging:TagConcept", - "core:Theme" - ], - "thingSameAs": [ - "http://dbpedia.org/resource/Politics_of_Nigeria" - ], - "thingEnglishLabel": "Nigeria politics", - "type": "about" - } - ] - } - }, - "id": "urn:bbc:ares::article:cd15mjv5pgvo", - "type": "optimo" - } - }, - { - "id": "urn:bbc:optimo:asset:cgxzll3gv37o", - "rank": 10, - "count": 73, - "urn": "urn:bbc:optimo:asset:cgxzll3gv37o", - "promo": { - "locators": { - "optimoUrn": "urn:bbc:optimo:asset:cgxzll3gv37o", - "canonicalUrl": "https://www.bbc.com/hausa/articles/cgxzll3gv37o" - }, - "timestamp": 1687089928815, - "suitableForSyndication": true, - "language": "ha", - "headlines": { - "seoHeadline": "Hira da wani bature da ke jin Hausa kamar jakin Kano", - "promoHeadline": { - "blocks": [ - { - "type": "text", - "model": { - "blocks": [ - { - "type": "paragraph", - "model": { - "text": "Hira da wani bature da ke jin Hausa kamar jakin Kano", - "blocks": [ - { - "type": "fragment", - "model": { - "text": "Hira da wani bature da ke jin Hausa kamar jakin Kano", - "attributes": [] - } - } - ] - } - } - ] - } - } - ] - } - }, - "images": {}, - "summary": { - "blocks": [ - { - "type": "text", - "model": { - "blocks": [ - { - "type": "paragraph", - "model": { - "text": "Hira da wani bature da ke jin Hausa kamar jakin Kano", - "blocks": [ - { - "type": "fragment", - "model": { - "text": "Hira da wani bature da ke jin Hausa kamar jakin Kano", - "attributes": [] - } - } - ] - } - } - ] - } - } - ] - }, - "passport": { - "language": "ha", - "home": "http://www.bbc.co.uk/ontologies/passport/home/Hausa", - "locator": "urn:bbc:optimo:asset:cgxzll3gv37o", - "availability": "AVAILABLE", - "taggings": [ - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/3d5d5e30-dd50-4041-96d5-c970b20005b9#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/primaryMediaType", - "value": "http://www.bbc.co.uk/things/fe1fbc8a-bb44-4bf8-8b12-52e58c6345a4#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/infoClass", - "value": "http://www.bbc.co.uk/things/0db2b959-cbf8-4661-965f-050974a69bb5#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/audience/motivation", - "value": "http://www.bbc.co.uk/things/e5edf40d-b1e6-48f5-be62-8fe6d7fe857a#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/brand", - "value": "http://www.bbc.co.uk/things/ff5d4c7c-3c2a-4fb9-983a-afaaafa882bb#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/assetType", - "value": "http://www.bbc.co.uk/things/22ea958e-2004-4f34-80a7-bf5acad52f6f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/format", - "value": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id" - } - ], - "schemaVersion": "1.4.0", - "publishedState": "PUBLISHED", - "predicates": { - "assetType": [ - { - "value": "http://www.bbc.co.uk/things/22ea958e-2004-4f34-80a7-bf5acad52f6f#id", - "type": "assetType" - } - ], - "primaryMediaType": [ - { - "value": "http://www.bbc.co.uk/things/fe1fbc8a-bb44-4bf8-8b12-52e58c6345a4#id", - "type": "primaryMediaType" - } - ], - "brand": [ - { - "value": "http://www.bbc.co.uk/things/ff5d4c7c-3c2a-4fb9-983a-afaaafa882bb#id", - "type": "brand" - } - ], - "motivation": [], - "infoClass": [ - { - "value": "http://www.bbc.co.uk/things/0db2b959-cbf8-4661-965f-050974a69bb5#id", - "type": "infoClass" - } - ], - "formats": [ - { - "value": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id", - "thingLabel": "News report", - "thingUri": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id", - "thingId": "46c0517d-9927-4d1a-9954-8c63a3f7a888", - "thingType": [ - "tagging:TagConcept", - "tagging:Format" - ], - "thingSameAs": [], - "thingEnglishLabel": "Report", - "thingPreferredLabel": "Report", - "thingLabelLanguage": "ha", - "type": "formats" - } - ], - "about": [ - { - "value": "http://www.bbc.co.uk/things/3d5d5e30-dd50-4041-96d5-c970b20005b9#id", - "thingLabel": "Najeriya", - "thingUri": "http://www.bbc.co.uk/things/3d5d5e30-dd50-4041-96d5-c970b20005b9#id", - "thingId": "3d5d5e30-dd50-4041-96d5-c970b20005b9", - "thingType": [ - "core:Place", - "core:Thing", - "tagging:TagConcept" - ], - "thingSameAs": [ - "http://sws.geonames.org/2328926/" - ], - "thingEnglishLabel": "Nigeria", - "type": "about" - } - ] - } - }, - "id": "urn:bbc:ares::article:cgxzll3gv37o", - "type": "optimo" - } - }, - { - "id": "urn:bbc:optimo:asset:cv2j8e5z7e9o", - "rank": 11, - "count": 67, - "urn": "urn:bbc:optimo:asset:cv2j8e5z7e9o", - "promo": { - "locators": { - "optimoUrn": "urn:bbc:optimo:asset:cv2j8e5z7e9o", - "canonicalUrl": "https://www.bbc.com/hausa/articles/cv2j8e5z7e9o" - }, - "timestamp": 1686024133716, - "suitableForSyndication": true, - "language": "ha", - "headlines": { - "seoHeadline": "Budurwa mai amfani da dabarun zamani wurin gyaran mota a Kano", - "promoHeadline": { - "blocks": [ - { - "type": "text", - "model": { - "blocks": [ - { - "type": "paragraph", - "model": { - "text": "Budurwa mai amfani da dabarun zamani wurin gyaran mota a Kano", - "blocks": [ - { - "type": "fragment", - "model": { - "text": "Budurwa mai amfani da dabarun zamani wurin gyaran mota a Kano", - "attributes": [] - } - } - ] - } - } - ] - } - } - ] - } - }, - "images": { - "defaultPromoImage": { - "blocks": [ - { - "type": "caption", - "model": { - "blocks": [ - { - "type": "text", - "model": { - "blocks": [ - { - "type": "paragraph", - "model": { - "text": "Halima Isa Idris", - "blocks": [ - { - "type": "fragment", - "model": { - "text": "Halima Isa Idris", - "attributes": [] - } - } - ] - } - } - ] - } - } - ] - } - }, - { - "type": "altText", - "model": { - "blocks": [ - { - "type": "text", - "model": { - "blocks": [ - { - "type": "paragraph", - "model": { - "text": "Halima Isa Idris", - "blocks": [ - { - "type": "fragment", - "model": { - "text": "Halima Isa Idris", - "attributes": [] - } - } - ] - } - } - ] - } - } - ] - } - }, - { - "type": "rawImage", - "model": { - "width": 1195, - "height": 786, - "locator": "9c4c/live/8fe00b10-03db-11ee-aa08-4727df20b680.jpg", - "originCode": "cpsprodpb", - "copyrightHolder": "BBC", - "suitableForSyndication": true - } - } - ] - } - }, - "summary": { - "blocks": [ - { - "type": "text", - "model": { - "blocks": [ - { - "type": "paragraph", - "model": { - "text": "Halima Isa Idris ta ce babban abin da ke burge ta shi ne magance matsalar motoci, musamman a lokacin da abin ya gagari wasu.", - "blocks": [ - { - "type": "fragment", - "model": { - "text": "Halima Isa Idris ta ce babban abin da ke burge ta shi ne magance matsalar motoci, musamman a lokacin da abin ya gagari wasu.", - "attributes": [] - } - } - ] - } - } - ] - } - } - ] - }, - "passport": { - "language": "ha", - "home": "http://www.bbc.co.uk/ontologies/passport/home/Hausa", - "locator": "urn:bbc:optimo:asset:cv2j8e5z7e9o", - "availability": "AVAILABLE", - "taggings": [ - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/3d5d5e30-dd50-4041-96d5-c970b20005b9#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/primaryMediaType", - "value": "http://www.bbc.co.uk/things/ffc98bca-8cff-4ee6-9beb-a6ff6ef3ef9f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/31684f19-84d6-41f6-b033-7ae08098572a#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/f6ec89fd-3823-498e-a888-572e96f791b2#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/infoClass", - "value": "http://www.bbc.co.uk/things/0db2b959-cbf8-4661-965f-050974a69bb5#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/audience/motivation", - "value": "http://www.bbc.co.uk/things/e5edf40d-b1e6-48f5-be62-8fe6d7fe857a#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/assetType", - "value": "http://www.bbc.co.uk/things/22ea958e-2004-4f34-80a7-bf5acad52f6f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/editorialSensitivity", - "value": "http://www.bbc.co.uk/things/c6979033-cb72-4d07-9897-adc348a4332e#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/d2c2ba68-f9ad-4185-a6d1-7f6437256735#id" - } - ], - "schemaVersion": "1.4.0", - "publishedState": "PUBLISHED", - "predicates": { - "assetType": [ - { - "value": "http://www.bbc.co.uk/things/22ea958e-2004-4f34-80a7-bf5acad52f6f#id", - "type": "assetType" - } - ], - "primaryMediaType": [ - { - "value": "http://www.bbc.co.uk/things/ffc98bca-8cff-4ee6-9beb-a6ff6ef3ef9f#id", - "type": "primaryMediaType" - } - ], - "motivation": [], - "infoClass": [ - { - "value": "http://www.bbc.co.uk/things/0db2b959-cbf8-4661-965f-050974a69bb5#id", - "type": "infoClass" - } - ], - "editorialSensitivity": [ - { - "value": "http://www.bbc.co.uk/things/c6979033-cb72-4d07-9897-adc348a4332e#id", - "type": "editorialSensitivity" - } - ], - "about": [ - { - "value": "http://www.bbc.co.uk/things/31684f19-84d6-41f6-b033-7ae08098572a#id", - "thingLabel": "Fasaha", - "thingUri": "http://www.bbc.co.uk/things/31684f19-84d6-41f6-b033-7ae08098572a#id", - "thingId": "31684f19-84d6-41f6-b033-7ae08098572a", - "thingType": [ - "tagging:TagConcept", - "core:Thing", - "tagging:AmbiguousTerm", - "tagging:Genre", - "core:Theme" - ], - "thingSameAs": [ - "http://dbpedia.org/resource/Technology", - "http://www.wikidata.org/entity/Q4456888" - ], - "thingEnglishLabel": "Technology", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/3d5d5e30-dd50-4041-96d5-c970b20005b9#id", - "thingLabel": "Najeriya", - "thingUri": "http://www.bbc.co.uk/things/3d5d5e30-dd50-4041-96d5-c970b20005b9#id", - "thingId": "3d5d5e30-dd50-4041-96d5-c970b20005b9", - "thingType": [ - "core:Place", - "core:Thing", - "tagging:TagConcept" - ], - "thingSameAs": [ - "http://sws.geonames.org/2328926/" - ], - "thingEnglishLabel": "Nigeria", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/d2c2ba68-f9ad-4185-a6d1-7f6437256735#id", - "thingLabel": "Afrika", - "thingUri": "http://www.bbc.co.uk/things/d2c2ba68-f9ad-4185-a6d1-7f6437256735#id", - "thingId": "d2c2ba68-f9ad-4185-a6d1-7f6437256735", - "thingType": [ - "core:Thing", - "core:Place", - "tagging:TagConcept" - ], - "thingSameAs": [ - "http://www.wikidata.org/entity/Q15", - "http://dbpedia.org/resource/Africa", - "http://sws.geonames.org/6255146/" - ], - "thingEnglishLabel": "Africa", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/f6ec89fd-3823-498e-a888-572e96f791b2#id", - "thingLabel": "Matasa", - "thingUri": "http://www.bbc.co.uk/things/f6ec89fd-3823-498e-a888-572e96f791b2#id", - "thingId": "f6ec89fd-3823-498e-a888-572e96f791b2", - "thingType": [ - "core:Thing", - "core:Theme", - "tagging:TagConcept" - ], - "thingSameAs": [ - "http://dbpedia.org/resource/Youth", - "http://www.wikidata.org/entity/Q190007" - ], - "thingEnglishLabel": "Young people", - "type": "about" - } - ] - } - }, - "id": "urn:bbc:ares::article:cv2j8e5z7e9o", - "type": "optimo" - } - }, - { - "id": "urn:bbc:optimo:asset:ce762lgpx9do", - "rank": 12, - "count": 59, - "urn": "urn:bbc:optimo:asset:ce762lgpx9do", - "promo": { - "locators": { - "optimoUrn": "urn:bbc:optimo:asset:ce762lgpx9do", - "canonicalUrl": "https://www.bbc.com/hausa/articles/ce762lgpx9do" - }, - "timestamp": 1686396123937, - "suitableForSyndication": true, - "language": "ha", - "headlines": { - "seoHeadline": "Muna tattaunawa da Tinubu don shiga gwamnatinsa - Kwankwaso", - "promoHeadline": { - "blocks": [ - { - "type": "text", - "model": { - "blocks": [ - { - "type": "paragraph", - "model": { - "text": "Muna tattaunawa da Tinubu don shiga gwamnatinsa - Kwankwaso", - "blocks": [ - { - "type": "fragment", - "model": { - "text": "Muna tattaunawa da Tinubu don shiga gwamnatinsa - Kwankwaso", - "attributes": [] - } - } - ] - } - } - ] - } - } - ] - } - }, - "images": { - "defaultPromoImage": { - "blocks": [ - { - "type": "altText", - "model": { - "blocks": [ - { - "type": "text", - "model": { - "blocks": [ - { - "type": "paragraph", - "model": { - "text": "Rabiu Musa Kwankwaso ", - "blocks": [ - { - "type": "fragment", - "model": { - "text": "Rabiu Musa Kwankwaso ", - "attributes": [] - } - } - ] - } - } - ] - } - } - ] - } - }, - { - "type": "rawImage", - "model": { - "width": 800, - "height": 450, - "locator": "b507/live/13db9f80-0781-11ee-aa08-4727df20b680.jpg", - "originCode": "cpsprodpb", - "copyrightHolder": "BBC", - "suitableForSyndication": true - } - } - ] - } - }, - "summary": { - "blocks": [ - { - "type": "text", - "model": { - "blocks": [ - { - "type": "paragraph", - "model": { - "text": "Tsohon gwamnan jihar Kano kuma jagoran jam'iyyar NNPP a Najeriya, Sanata Rabiu Musa Kwankwaso ya ce ya ji daɗi kan yadda Shugaban Najeriya Bola ", - "blocks": [ - { - "type": "fragment", - "model": { - "text": "Tsohon gwamnan jihar Kano kuma jagoran jam'iyyar NNPP a Najeriya, Sanata Rabiu Musa Kwankwaso ya ce ya ji daɗi kan yadda Shugaban Najeriya Bola ", - "attributes": [] - } - } - ] - } - } - ] - } - } - ] - }, - "passport": { - "language": "ha", - "home": "http://www.bbc.co.uk/ontologies/passport/home/Hausa", - "locator": "urn:bbc:optimo:asset:ce762lgpx9do", - "availability": "AVAILABLE", - "taggings": [ - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/3d5d5e30-dd50-4041-96d5-c970b20005b9#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/primaryMediaType", - "value": "http://www.bbc.co.uk/things/ffc98bca-8cff-4ee6-9beb-a6ff6ef3ef9f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/7d65828a-85c1-41f4-96cf-c758da75e401#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/b82ce27a-2c6f-461a-8796-04b646107c2a#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/172357bb-b3e1-4bf0-86c8-6ed1839acf8c#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/audience/motivation", - "value": "http://www.bbc.co.uk/things/7047e74c-b9ae-4c02-a4a8-748df451ac58#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/infoClass", - "value": "http://www.bbc.co.uk/things/0db2b959-cbf8-4661-965f-050974a69bb5#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/05840f96-f671-44db-8ebb-46486de521cf#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/assetType", - "value": "http://www.bbc.co.uk/things/22ea958e-2004-4f34-80a7-bf5acad52f6f#id" - } - ], - "schemaVersion": "1.4.0", - "publishedState": "PUBLISHED", - "predicates": { - "assetType": [ - { - "value": "http://www.bbc.co.uk/things/22ea958e-2004-4f34-80a7-bf5acad52f6f#id", - "type": "assetType" - } - ], - "primaryMediaType": [ - { - "value": "http://www.bbc.co.uk/things/ffc98bca-8cff-4ee6-9beb-a6ff6ef3ef9f#id", - "type": "primaryMediaType" - } - ], - "motivation": [], - "infoClass": [ - { - "value": "http://www.bbc.co.uk/things/0db2b959-cbf8-4661-965f-050974a69bb5#id", - "type": "infoClass" - } - ], - "about": [ - { - "value": "http://www.bbc.co.uk/things/05840f96-f671-44db-8ebb-46486de521cf#id", - "thingLabel": "Rabi’u Musa Kwankwaso", - "thingUri": "http://www.bbc.co.uk/things/05840f96-f671-44db-8ebb-46486de521cf#id", - "thingId": "05840f96-f671-44db-8ebb-46486de521cf", - "thingType": [ - "tagging:TagConcept", - "tagging:AmbiguousTerm", - "tagging:Agent", - "core:Person", - "core:Thing" - ], - "thingSameAs": [ - "http://www.wikidata.org/entity/Q3509922", - "http://dbpedia.org/resource/Rabiu_Kwankwaso" - ], - "thingEnglishLabel": "Rabiu Kwankwaso", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/172357bb-b3e1-4bf0-86c8-6ed1839acf8c#id", - "thingLabel": "Jihar Kano", - "thingUri": "http://www.bbc.co.uk/things/172357bb-b3e1-4bf0-86c8-6ed1839acf8c#id", - "thingId": "172357bb-b3e1-4bf0-86c8-6ed1839acf8c", - "thingType": [ - "core:Thing", - "core:Place", - "tagging:TagConcept" - ], - "thingSameAs": [ - "http://dbpedia.org/resource/Kano_State", - "http://sws.geonames.org/2335196/" - ], - "thingEnglishLabel": "Kano state", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/3d5d5e30-dd50-4041-96d5-c970b20005b9#id", - "thingLabel": "Najeriya", - "thingUri": "http://www.bbc.co.uk/things/3d5d5e30-dd50-4041-96d5-c970b20005b9#id", - "thingId": "3d5d5e30-dd50-4041-96d5-c970b20005b9", - "thingType": [ - "core:Place", - "core:Thing", - "tagging:TagConcept" - ], - "thingSameAs": [ - "http://sws.geonames.org/2328926/" - ], - "thingEnglishLabel": "Nigeria", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/7d65828a-85c1-41f4-96cf-c758da75e401#id", - "thingLabel": "Siyasar Najeriya", - "thingUri": "http://www.bbc.co.uk/things/7d65828a-85c1-41f4-96cf-c758da75e401#id", - "thingId": "7d65828a-85c1-41f4-96cf-c758da75e401", - "thingType": [ - "core:Thing", - "tagging:TagConcept", - "core:Theme" - ], - "thingSameAs": [ - "http://dbpedia.org/resource/Politics_of_Nigeria" - ], - "thingEnglishLabel": "Nigeria politics", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/b82ce27a-2c6f-461a-8796-04b646107c2a#id", - "thingLabel": "Bola Tinubu", - "thingUri": "http://www.bbc.co.uk/things/b82ce27a-2c6f-461a-8796-04b646107c2a#id", - "thingId": "b82ce27a-2c6f-461a-8796-04b646107c2a", - "thingType": [ - "tagging:Agent", - "tagging:AmbiguousTerm", - "core:Thing", - "tagging:TagConcept", - "core:Person" - ], - "thingSameAs": [ - "http://dbpedia.org/resource/Bola_Tinubu", - "http://www.wikidata.org/entity/Q3510872" - ], - "thingEnglishLabel": "Bola Tinubu", - "type": "about" - } - ] - } - }, - "id": "urn:bbc:ares::article:ce762lgpx9do", - "type": "optimo" - } - }, - { - "id": "575b6d8e-4399-11e6-a6d6-30943db9bd6e", - "rank": 13, - "count": 55, - "urn": "urn:bbc:curie:asset:575b6d8e-4399-11e6-a6d6-30943db9bd6e", - "promo": { - "headlines": { - "shortHeadline": "Yaron da ya fi sauran yara kiba a duniya", - "headline": "Yaron da ya fi sauran yara kiba a duniya" - }, - "locators": { - "assetUri": "/hausa/multimedia/2016/07/160706_video_boy_obesity", - "cpsUrn": "urn:bbc:content:assetUri:hausa/multimedia/2016/07/160706_video_boy_obesity", - "curie": "http://www.bbc.co.uk/asset/575b6d8e-4399-11e6-a6d6-30943db9bd6e", - "assetId": "44492322" - }, - "summary": "Iyayen wani yaro dan shekara 10 da aka yi amannar ya fi kowanne yaro kiba a duniya, suna kokarin hana shi cin abincin da ya fi sa kiba, don tsoron lafiyarsa.", - "timestamp": 1467823661000, - "language": "ha", - "media": { - "id": "44492322", - "subType": "primary", - "format": "video", - "image": { - "id": "44492322", - "subType": "thumbnail", - "href": "http://a.files.bbci.co.uk/worldservice/live/assets/images/2016/07/05/160705114859_indonesian_boy_permana_weighs_almost_200kg_bbc_indonesia_640x360_bbcindonesian_nocredit.jpg", - "path": "/amz/worldservice/live/assets/images/2016/07/05/160705114859_indonesian_boy_permana_weighs_almost_200kg_bbc_indonesia_640x360_bbcindonesian_nocredit.jpg", - "height": 360, - "width": 640, - "altText": "", - "copyrightHolder": "", - "type": "image" - }, - "aspectRatio": "16:9", - "live": false, - "href": "http://www.bbc.co.uk/hausa/meta/dps/2016/07/emp/160706_video_boy_obesity.emp.xml", - "playlist": [ - { - "format": "mp4", - "bitrate": "168000", - "url": "https://wsodprogrf.akamaized.net/hausa/dps/2016/07/bbcshorts_obysity_hausa_16x9_lo.mp4" - }, - { - "format": "mp4", - "bitrate": "320000", - "url": "https://wsodprogrf.akamaized.net/hausa/dps/2016/07/bbcshorts_obysity_hausa_16x9_med.mp4" - }, - { - "format": "mp4", - "bitrate": "904000", - "url": "https://wsodprogrf.akamaized.net/hausa/dps/2016/07/bbcshorts_obysity_hausa_16x9_hi.mp4" - } - ], - "type": "legacyMedia" - }, - "indexImage": { - "id": "d5e218", - "subType": "index", - "href": "http://a.files.bbci.co.uk/worldservice/live/assets/images/2016/07/05/160705114859_indonesian_boy_permana_weighs_almost_200kg_bbc_indonesia_144x81_bbcindonesian_nocredit.jpg", - "path": "/amz/worldservice/live/assets/images/2016/07/05/160705114859_indonesian_boy_permana_weighs_almost_200kg_bbc_indonesia_144x81_bbcindonesian_nocredit.jpg", - "height": 81, - "width": 144, - "altText": "", - "copyrightHolder": "BBC Indonesian", - "type": "image" - }, - "id": "urn:bbc:ares::asset:hausa/multimedia/2016/07/160706_video_boy_obesity", - "type": "cps" - } - }, - { - "id": "urn:bbc:optimo:asset:c3gz4r279pjo", - "rank": 14, - "count": 51, - "urn": "urn:bbc:optimo:asset:c3gz4r279pjo", - "promo": { - "locators": { - "optimoUrn": "urn:bbc:optimo:asset:c3gz4r279pjo", - "canonicalUrl": "https://www.bbc.com/hausa/articles/c3gz4r279pjo" - }, - "timestamp": 1687118099260, - "suitableForSyndication": true, - "language": "ha", - "headlines": { - "seoHeadline": "Amsoshin Takardunku 17/06/23", - "promoHeadline": { - "blocks": [ - { - "type": "text", - "model": { - "blocks": [ - { - "type": "paragraph", - "model": { - "text": "Amsoshin Takardunku 17/06/23", - "blocks": [ - { - "type": "fragment", - "model": { - "text": "Amsoshin Takardunku 17/06/23", - "attributes": [] - } - } - ] - } - } - ] - } - } - ] - } - }, - "images": {}, - "summary": { - "blocks": [ - { - "type": "text", - "model": { - "blocks": [ - { - "type": "paragraph", - "model": { - "text": "Amsoshin Takardunku 17/06/23", - "blocks": [ - { - "type": "fragment", - "model": { - "text": "Amsoshin Takardunku 17/06/23", - "attributes": [] - } - } - ] - } - } - ] - } - } - ] - }, - "passport": { - "language": "ha", - "home": "http://www.bbc.co.uk/ontologies/passport/home/Hausa", - "locator": "urn:bbc:optimo:asset:c3gz4r279pjo", - "availability": "AVAILABLE", - "taggings": [ - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/3d5d5e30-dd50-4041-96d5-c970b20005b9#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/primaryMediaType", - "value": "http://www.bbc.co.uk/things/fe1fbc8a-bb44-4bf8-8b12-52e58c6345a4#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/infoClass", - "value": "http://www.bbc.co.uk/things/0db2b959-cbf8-4661-965f-050974a69bb5#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/audience/motivation", - "value": "http://www.bbc.co.uk/things/b1a660eb-ef14-4645-b4cd-d7bd939ce443#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/1c3b60a9-14eb-484b-a750-9f5b1aeaac31#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/assetType", - "value": "http://www.bbc.co.uk/things/22ea958e-2004-4f34-80a7-bf5acad52f6f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/editorialSensitivity", - "value": "http://www.bbc.co.uk/things/c6979033-cb72-4d07-9897-adc348a4332e#id" - } - ], - "schemaVersion": "1.4.0", - "publishedState": "PUBLISHED", - "predicates": { - "assetType": [ - { - "value": "http://www.bbc.co.uk/things/22ea958e-2004-4f34-80a7-bf5acad52f6f#id", - "type": "assetType" - } - ], - "primaryMediaType": [ - { - "value": "http://www.bbc.co.uk/things/fe1fbc8a-bb44-4bf8-8b12-52e58c6345a4#id", - "type": "primaryMediaType" - } - ], - "motivation": [], - "infoClass": [ - { - "value": "http://www.bbc.co.uk/things/0db2b959-cbf8-4661-965f-050974a69bb5#id", - "type": "infoClass" - } - ], - "editorialSensitivity": [ - { - "value": "http://www.bbc.co.uk/things/c6979033-cb72-4d07-9897-adc348a4332e#id", - "type": "editorialSensitivity" - } - ], - "about": [ - { - "value": "http://www.bbc.co.uk/things/1c3b60a9-14eb-484b-a750-9f5b1aeaac31#id", - "thingLabel": "Nishadi", - "thingUri": "http://www.bbc.co.uk/things/1c3b60a9-14eb-484b-a750-9f5b1aeaac31#id", - "thingId": "1c3b60a9-14eb-484b-a750-9f5b1aeaac31", - "thingType": [ - "core:Theme", - "tagging:Genre", - "tagging:AmbiguousTerm", - "tagging:TagConcept", - "core:Thing" - ], - "thingSameAs": [ - "http://dbpedia.org/resource/Entertainment", - "http://www.wikidata.org/entity/Q173799" - ], - "thingEnglishLabel": "Entertainment", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/3d5d5e30-dd50-4041-96d5-c970b20005b9#id", - "thingLabel": "Najeriya", - "thingUri": "http://www.bbc.co.uk/things/3d5d5e30-dd50-4041-96d5-c970b20005b9#id", - "thingId": "3d5d5e30-dd50-4041-96d5-c970b20005b9", - "thingType": [ - "core:Place", - "core:Thing", - "tagging:TagConcept" - ], - "thingSameAs": [ - "http://sws.geonames.org/2328926/" - ], - "thingEnglishLabel": "Nigeria", - "type": "about" - } - ] - } - }, - "id": "urn:bbc:ares::article:c3gz4r279pjo", - "type": "optimo" - } - }, - { - "id": "urn:bbc:optimo:asset:cz9gjzrqm23o", - "rank": 15, - "count": 42, - "urn": "urn:bbc:optimo:asset:cz9gjzrqm23o", - "promo": { - "locators": { - "optimoUrn": "urn:bbc:optimo:asset:cz9gjzrqm23o", - "canonicalUrl": "https://www.bbc.com/hausa/articles/cz9gjzrqm23o" - }, - "timestamp": 1686994498007, - "suitableForSyndication": true, - "language": "ha", - "headlines": { - "seoHeadline": "Gane Mani Hanya tare da Sabon Shugaban Kungiyar Gwamnonin Arewacin Najeriya", - "promoHeadline": { - "blocks": [ - { - "type": "text", - "model": { - "blocks": [ - { - "type": "paragraph", - "model": { - "text": "Tattaunawa da Sabon Shugaban Kungiyar Gwamnonin Arewacin Najeriya Muhammad Inuwa Yahaya", - "blocks": [ - { - "type": "fragment", - "model": { - "text": "Tattaunawa da Sabon Shugaban Kungiyar Gwamnonin Arewacin Najeriya Muhammad Inuwa Yahaya", - "attributes": [] - } - } - ] - } - } - ] - } - } - ] - } - }, - "images": {}, - "summary": { - "blocks": [ - { - "type": "text", - "model": { - "blocks": [ - { - "type": "paragraph", - "model": { - "text": "Gane Mani Hanya tare da Sabon Shugaban Kungiyar Gwamnonin Arewacin Najeriya", - "blocks": [ - { - "type": "fragment", - "model": { - "text": "Gane Mani Hanya tare da Sabon Shugaban Kungiyar Gwamnonin Arewacin Najeriya", - "attributes": [] - } - } - ] - } - } - ] - } - } - ] - }, - "passport": { - "language": "ha", - "home": "http://www.bbc.co.uk/ontologies/passport/home/Hausa", - "locator": "urn:bbc:optimo:asset:cz9gjzrqm23o", - "availability": "AVAILABLE", - "taggings": [ - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/3d5d5e30-dd50-4041-96d5-c970b20005b9#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/7d65828a-85c1-41f4-96cf-c758da75e401#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/ad97dddb-ea75-4493-a4ed-95ad1477049f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/primaryMediaType", - "value": "http://www.bbc.co.uk/things/fe1fbc8a-bb44-4bf8-8b12-52e58c6345a4#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/75612fa6-147c-4a43-97fa-fcf70d9cced3#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/audience/motivation", - "value": "http://www.bbc.co.uk/things/7047e74c-b9ae-4c02-a4a8-748df451ac58#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/infoClass", - "value": "http://www.bbc.co.uk/things/0db2b959-cbf8-4661-965f-050974a69bb5#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/assetType", - "value": "http://www.bbc.co.uk/things/22ea958e-2004-4f34-80a7-bf5acad52f6f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/format", - "value": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id" - } - ], - "schemaVersion": "1.4.0", - "publishedState": "PUBLISHED", - "predicates": { - "assetType": [ - { - "value": "http://www.bbc.co.uk/things/22ea958e-2004-4f34-80a7-bf5acad52f6f#id", - "type": "assetType" - } - ], - "primaryMediaType": [ - { - "value": "http://www.bbc.co.uk/things/fe1fbc8a-bb44-4bf8-8b12-52e58c6345a4#id", - "type": "primaryMediaType" - } - ], - "motivation": [], - "infoClass": [ - { - "value": "http://www.bbc.co.uk/things/0db2b959-cbf8-4661-965f-050974a69bb5#id", - "type": "infoClass" - } - ], - "formats": [ - { - "value": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id", - "thingLabel": "News report", - "thingUri": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id", - "thingId": "46c0517d-9927-4d1a-9954-8c63a3f7a888", - "thingType": [ - "tagging:TagConcept", - "tagging:Format" - ], - "thingSameAs": [], - "thingEnglishLabel": "Report", - "thingPreferredLabel": "Report", - "thingLabelLanguage": "ha", - "type": "formats" - } - ], - "about": [ - { - "value": "http://www.bbc.co.uk/things/3d5d5e30-dd50-4041-96d5-c970b20005b9#id", - "thingLabel": "Najeriya", - "thingUri": "http://www.bbc.co.uk/things/3d5d5e30-dd50-4041-96d5-c970b20005b9#id", - "thingId": "3d5d5e30-dd50-4041-96d5-c970b20005b9", - "thingType": [ - "core:Place", - "core:Thing", - "tagging:TagConcept" - ], - "thingSameAs": [ - "http://sws.geonames.org/2328926/" - ], - "thingEnglishLabel": "Nigeria", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/75612fa6-147c-4a43-97fa-fcf70d9cced3#id", - "thingLabel": "Siyasa", - "thingUri": "http://www.bbc.co.uk/things/75612fa6-147c-4a43-97fa-fcf70d9cced3#id", - "thingId": "75612fa6-147c-4a43-97fa-fcf70d9cced3", - "thingType": [ - "tagging:Genre", - "tagging:TagConcept", - "tagging:AmbiguousTerm", - "core:Theme", - "core:Thing" - ], - "thingSameAs": [ - "http://dbpedia.org/resource/Politics" - ], - "thingEnglishLabel": "Politics", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/7d65828a-85c1-41f4-96cf-c758da75e401#id", - "thingLabel": "Siyasar Najeriya", - "thingUri": "http://www.bbc.co.uk/things/7d65828a-85c1-41f4-96cf-c758da75e401#id", - "thingId": "7d65828a-85c1-41f4-96cf-c758da75e401", - "thingType": [ - "core:Thing", - "tagging:TagConcept", - "core:Theme" - ], - "thingSameAs": [ - "http://dbpedia.org/resource/Politics_of_Nigeria" - ], - "thingEnglishLabel": "Nigeria politics", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/ad97dddb-ea75-4493-a4ed-95ad1477049f#id", - "thingLabel": "Zaben shugaban Najeriya na 2023", - "thingUri": "http://www.bbc.co.uk/things/ad97dddb-ea75-4493-a4ed-95ad1477049f#id", - "thingId": "ad97dddb-ea75-4493-a4ed-95ad1477049f", - "thingType": [ - "core:Event", - "tagging:TagConcept", - "core:Thing" - ], - "thingSameAs": [ - "http://dbpedia.org/resource/2023_Nigerian_general_election", - "http://www.wikidata.org/entity/Q1318985" - ], - "thingEnglishLabel": "Nigerian elections 2023", - "type": "about" - } - ] - } - }, - "id": "urn:bbc:ares::article:cz9gjzrqm23o", - "type": "optimo" - } - }, - { - "id": "03aa3e67-d49c-4470-848e-8192be0863db", - "rank": 16, - "count": 40, - "urn": "urn:bbc:curie:asset:03aa3e67-d49c-4470-848e-8192be0863db", - "promo": { - "headlines": { - "shortHeadline": "...Daga Bakin Mai Ita tare da Alhassan Kwalle", - "headline": "...Daga Bakin Mai Ita tare da Alhassan Kwalle" - }, - "locators": { - "assetUri": "/hausa/labarai-59759624", - "cpsUrn": "urn:bbc:content:assetUri:hausa/labarai-59759624", - "curie": "http://www.bbc.co.uk/asset/03aa3e67-d49c-4470-848e-8192be0863db", - "assetId": "59759624" - }, - "summary": "A wannan kashi na 78, shirin ya tattauna da fitaccen jarumin fina-finan Kannywood, Alhassan Kwalle.", - "timestamp": 1640230785000, - "language": "ha", - "passport": { - "category": { - "categoryId": "http://www.bbc.co.uk/ontologies/applicationlogic-news/News", - "categoryName": "News" - }, - "campaigns": [ - { - "campaignId": "5a988e3139461b000e9dabf9", - "campaignName": "WS - Divert me" - } - ], - "language": "ha", - "home": "http://www.bbc.co.uk/ontologies/passport/home/Hausa", - "locator": "urn:bbc:cps:curie:asset:03aa3e67-d49c-4470-848e-8192be0863db", - "availability": "AVAILABLE", - "taggings": [ - { - "predicate": "http://www.bbc.co.uk/ontologies/audience/motivation", - "value": "http://www.bbc.co.uk/things/e1deed1e-0cab-4965-8e92-897b195f7a47#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/editorialSensitivity", - "value": "http://www.bbc.co.uk/things/c6979033-cb72-4d07-9897-adc348a4332e#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/contributor", - "value": "http://www.bbc.co.uk/things/4b823ebe-b36c-4940-9bba-ac3733b8d018#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/1c3b60a9-14eb-484b-a750-9f5b1aeaac31#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/2c1768f1-4f46-4cad-8b85-38ceb898dfe3#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/primaryMediaType", - "value": "http://www.bbc.co.uk/things/ffc98bca-8cff-4ee6-9beb-a6ff6ef3ef9f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/format", - "value": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id" - } - ], - "schemaVersion": "1.4.0", - "publishedState": "PUBLISHED", - "predicates": { - "contributor": [ - { - "value": "http://www.bbc.co.uk/things/4b823ebe-b36c-4940-9bba-ac3733b8d018#id", - "type": "contributor" - } - ], - "primaryMediaType": [ - { - "value": "http://www.bbc.co.uk/things/ffc98bca-8cff-4ee6-9beb-a6ff6ef3ef9f#id", - "type": "primaryMediaType" - } - ], - "formats": [ - { - "value": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id", - "thingLabel": "News report", - "thingUri": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id", - "thingId": "46c0517d-9927-4d1a-9954-8c63a3f7a888", - "thingType": [ - "tagging:TagConcept", - "tagging:Format" - ], - "thingSameAs": [], - "thingEnglishLabel": "Report", - "thingPreferredLabel": "Report", - "thingLabelLanguage": "ha", - "type": "formats" - } - ], - "editorialSensitivity": [ - { - "value": "http://www.bbc.co.uk/things/c6979033-cb72-4d07-9897-adc348a4332e#id", - "type": "editorialSensitivity" - } - ], - "about": [ - { - "value": "http://www.bbc.co.uk/things/1c3b60a9-14eb-484b-a750-9f5b1aeaac31#id", - "thingLabel": "Nishadi", - "thingUri": "http://www.bbc.co.uk/things/1c3b60a9-14eb-484b-a750-9f5b1aeaac31#id", - "thingId": "1c3b60a9-14eb-484b-a750-9f5b1aeaac31", - "thingType": [ - "core:Theme", - "tagging:Genre", - "tagging:AmbiguousTerm", - "tagging:TagConcept", - "core:Thing" - ], - "thingSameAs": [ - "http://dbpedia.org/resource/Entertainment", - "http://www.wikidata.org/entity/Q173799" - ], - "thingEnglishLabel": "Entertainment", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/2c1768f1-4f46-4cad-8b85-38ceb898dfe3#id", - "thingLabel": "Kannywood", - "thingUri": "http://www.bbc.co.uk/things/2c1768f1-4f46-4cad-8b85-38ceb898dfe3#id", - "thingId": "2c1768f1-4f46-4cad-8b85-38ceb898dfe3", - "thingType": [ - "core:Thing", - "tagging:TagConcept", - "core:Theme" - ], - "thingSameAs": [ - "http://dbpedia.org/resource/Cinema_of_Northern_Nigeria" - ], - "thingEnglishLabel": "Kannywood", - "type": "about" - } - ] - } - }, - "media": { - "id": "p0bckm1q", - "subType": "clip", - "format": "video", - "title": "...Daga Bakin Mai Ita tare da Alhassan Kwalle", - "synopses": { - "short": "...Daga Bakin Mai Ita tare da Alhassan Kwalle", - "long": "Daga Bakin Mai Ita wani shiri ne na BBC Hausa da ke kawo muku hira da fitattun mutane kan wasu abubuwan da suka shafi rayuwarsu zalla.\n\nA wannan kashi na 78, shirin ya tattauna da fitaccen jarumin fina-finan Kannywood, Alhassan Kwalle.", - "medium": "...Daga Bakin Mai Ita tare da Alhassan Kwalle" - }, - "imageUrl": "ichef.bbci.co.uk/images/ic/$recipe/p0bckv4q.jpg", - "embedding": true, - "advertising": true, - "caption": "...Daga Bakin Mai Ita tare da Alhassan Kwalle", - "versions": [ - { - "versionId": "p0bckm23", - "types": [ - "Original" - ], - "duration": 527, - "durationISO8601": "PT8M47S", - "warnings": {}, - "availableTerritories": { - "uk": true, - "nonUk": true - }, - "availableFrom": 1640184278000 - } - ], - "smpKind": "programme", - "type": "media" - }, - "indexImage": { - "id": "122365824", - "subType": "index", - "href": "http://c.files.bbci.co.uk/A768/production/_122365824_p0bckv4q.jpg", - "path": "/cpsprodpb/A768/production/_122365824_p0bckv4q.jpg", - "height": 549, - "width": 976, - "altText": "Keyframe #5", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:hausa/labarai-59759624", - "type": "cps" - } - }, - { - "id": "urn:bbc:optimo:asset:crg92z9yxpgo", - "rank": 17, - "count": 33, - "urn": "urn:bbc:optimo:asset:crg92z9yxpgo", - "promo": { - "locators": { - "optimoUrn": "urn:bbc:optimo:asset:crg92z9yxpgo", - "canonicalUrl": "https://www.bbc.com/hausa/articles/crg92z9yxpgo" - }, - "timestamp": 1687078524511, - "suitableForSyndication": true, - "language": "ha", - "headlines": { - "seoHeadline": "Hira da sabon shugaban ƙungiyar gwamnonin Arewacin Najeriya Muhammad Inuwa Yahaya", - "promoHeadline": { - "blocks": [ - { - "type": "text", - "model": { - "blocks": [ - { - "type": "paragraph", - "model": { - "text": "Hira da sabon shugaban ƙungiyar gwamnonin Arewacin Najeriya Muhammad Inuwa Yahaya", - "blocks": [ - { - "type": "fragment", - "model": { - "text": "Hira da sabon shugaban ƙungiyar gwamnonin Arewacin Najeriya Muhammad Inuwa Yahaya", - "attributes": [] - } - } - ] - } - } - ] - } - } - ] - } - }, - "images": {}, - "summary": { - "blocks": [ - { - "type": "text", - "model": { - "blocks": [ - { - "type": "paragraph", - "model": { - "text": "Hira da sabon shugaban ƙungiyar gwamnonin Arewacin Najeriya Muhammad Inuwa Yahaya", - "blocks": [ - { - "type": "fragment", - "model": { - "text": "Hira da sabon shugaban ƙungiyar gwamnonin Arewacin Najeriya Muhammad Inuwa Yahaya", - "attributes": [] - } - } - ] - } - } - ] - } - } - ] - }, - "passport": { - "language": "ha", - "home": "http://www.bbc.co.uk/ontologies/passport/home/Hausa", - "locator": "urn:bbc:optimo:asset:crg92z9yxpgo", - "availability": "AVAILABLE", - "taggings": [ - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/3d5d5e30-dd50-4041-96d5-c970b20005b9#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/primaryMediaType", - "value": "http://www.bbc.co.uk/things/ffc98bca-8cff-4ee6-9beb-a6ff6ef3ef9f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/7d65828a-85c1-41f4-96cf-c758da75e401#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/ad97dddb-ea75-4493-a4ed-95ad1477049f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/75612fa6-147c-4a43-97fa-fcf70d9cced3#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/audience/motivation", - "value": "http://www.bbc.co.uk/things/7047e74c-b9ae-4c02-a4a8-748df451ac58#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/infoClass", - "value": "http://www.bbc.co.uk/things/0db2b959-cbf8-4661-965f-050974a69bb5#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/assetType", - "value": "http://www.bbc.co.uk/things/22ea958e-2004-4f34-80a7-bf5acad52f6f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/format", - "value": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id" - } - ], - "schemaVersion": "1.4.0", - "publishedState": "PUBLISHED", - "predicates": { - "assetType": [ - { - "value": "http://www.bbc.co.uk/things/22ea958e-2004-4f34-80a7-bf5acad52f6f#id", - "type": "assetType" - } - ], - "primaryMediaType": [ - { - "value": "http://www.bbc.co.uk/things/ffc98bca-8cff-4ee6-9beb-a6ff6ef3ef9f#id", - "type": "primaryMediaType" - } - ], - "motivation": [], - "infoClass": [ - { - "value": "http://www.bbc.co.uk/things/0db2b959-cbf8-4661-965f-050974a69bb5#id", - "type": "infoClass" - } - ], - "formats": [ - { - "value": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id", - "thingLabel": "News report", - "thingUri": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id", - "thingId": "46c0517d-9927-4d1a-9954-8c63a3f7a888", - "thingType": [ - "tagging:TagConcept", - "tagging:Format" - ], - "thingSameAs": [], - "thingEnglishLabel": "Report", - "thingPreferredLabel": "Report", - "thingLabelLanguage": "ha", - "type": "formats" - } - ], - "about": [ - { - "value": "http://www.bbc.co.uk/things/3d5d5e30-dd50-4041-96d5-c970b20005b9#id", - "thingLabel": "Najeriya", - "thingUri": "http://www.bbc.co.uk/things/3d5d5e30-dd50-4041-96d5-c970b20005b9#id", - "thingId": "3d5d5e30-dd50-4041-96d5-c970b20005b9", - "thingType": [ - "core:Place", - "core:Thing", - "tagging:TagConcept" - ], - "thingSameAs": [ - "http://sws.geonames.org/2328926/" - ], - "thingEnglishLabel": "Nigeria", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/75612fa6-147c-4a43-97fa-fcf70d9cced3#id", - "thingLabel": "Siyasa", - "thingUri": "http://www.bbc.co.uk/things/75612fa6-147c-4a43-97fa-fcf70d9cced3#id", - "thingId": "75612fa6-147c-4a43-97fa-fcf70d9cced3", - "thingType": [ - "tagging:Genre", - "tagging:TagConcept", - "tagging:AmbiguousTerm", - "core:Theme", - "core:Thing" - ], - "thingSameAs": [ - "http://dbpedia.org/resource/Politics" - ], - "thingEnglishLabel": "Politics", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/7d65828a-85c1-41f4-96cf-c758da75e401#id", - "thingLabel": "Siyasar Najeriya", - "thingUri": "http://www.bbc.co.uk/things/7d65828a-85c1-41f4-96cf-c758da75e401#id", - "thingId": "7d65828a-85c1-41f4-96cf-c758da75e401", - "thingType": [ - "core:Thing", - "tagging:TagConcept", - "core:Theme" - ], - "thingSameAs": [ - "http://dbpedia.org/resource/Politics_of_Nigeria" - ], - "thingEnglishLabel": "Nigeria politics", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/ad97dddb-ea75-4493-a4ed-95ad1477049f#id", - "thingLabel": "Zaben shugaban Najeriya na 2023", - "thingUri": "http://www.bbc.co.uk/things/ad97dddb-ea75-4493-a4ed-95ad1477049f#id", - "thingId": "ad97dddb-ea75-4493-a4ed-95ad1477049f", - "thingType": [ - "core:Event", - "tagging:TagConcept", - "core:Thing" - ], - "thingSameAs": [ - "http://dbpedia.org/resource/2023_Nigerian_general_election", - "http://www.wikidata.org/entity/Q1318985" - ], - "thingEnglishLabel": "Nigerian elections 2023", - "type": "about" - } - ] - } - }, - "id": "urn:bbc:ares::article:crg92z9yxpgo", - "type": "optimo" - } - }, - { - "id": "urn:bbc:optimo:asset:cnlkjndy9jwo", - "rank": 18, - "count": 24, - "urn": "urn:bbc:optimo:asset:cnlkjndy9jwo", - "promo": { - "locators": { - "optimoUrn": "urn:bbc:optimo:asset:cnlkjndy9jwo", - "canonicalUrl": "https://www.bbc.com/hausa/articles/cnlkjndy9jwo" - }, - "timestamp": 1686245514571, - "suitableForSyndication": true, - "language": "ha", - "headlines": { - "seoHeadline": "Ba a ga taɓarɓarewar al'amura irin yanzu a zamaninmu ba - Maryam Abacha", - "promoHeadline": { - "blocks": [ - { - "type": "text", - "model": { - "blocks": [ - { - "type": "paragraph", - "model": { - "text": "Ba a ga taɓarɓarewar al'amura irin yanzu a zamaninmu ba - Maryam Abacha", - "blocks": [ - { - "type": "fragment", - "model": { - "text": "Ba a ga taɓarɓarewar al'amura irin yanzu a zamaninmu ba - Maryam Abacha", - "attributes": [] - } - } - ] - } - } - ] - } - } - ] - } - }, - "images": { - "defaultPromoImage": { - "blocks": [ - { - "type": "altText", - "model": { - "blocks": [ - { - "type": "text", - "model": { - "blocks": [ - { - "type": "paragraph", - "model": { - "text": "Abacha Family", - "blocks": [ - { - "type": "fragment", - "model": { - "text": "Abacha Family", - "attributes": [] - } - } - ] - } - } - ] - } - } - ] - } - }, - { - "type": "rawImage", - "model": { - "width": 3936, - "height": 2216, - "locator": "6a85/live/db6fd1d0-0621-11ee-aa08-4727df20b680.jpg", - "originCode": "cpsprodpb", - "copyrightHolder": "BBC", - "suitableForSyndication": true - } - } - ] - } - }, - "summary": { - "blocks": [ - { - "type": "text", - "model": { - "blocks": [ - { - "type": "paragraph", - "model": { - "text": "Abacha wanda ya rasu ranar 8 ga watan Yunin 1998, ya yi mulki ne daga 1993 har zuwa mutuwarsa lokacin da yake ƙoƙarin mayar da Najeriya kan tsarin dimokraɗiyya. ", - "blocks": [ - { - "type": "fragment", - "model": { - "text": "Abacha wanda ya rasu ranar 8 ga watan Yunin 1998, ya yi mulki ne daga 1993 har zuwa mutuwarsa lokacin da yake ƙoƙarin mayar da Najeriya kan tsarin dimokraɗiyya. ", - "attributes": [] - } - } - ] - } - } - ] - } - } - ] - }, - "passport": { - "language": "ha", - "home": "http://www.bbc.co.uk/ontologies/passport/home/Hausa", - "locator": "urn:bbc:optimo:asset:cnlkjndy9jwo", - "availability": "AVAILABLE", - "taggings": [ - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/3d5d5e30-dd50-4041-96d5-c970b20005b9#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/primaryMediaType", - "value": "http://www.bbc.co.uk/things/ffc98bca-8cff-4ee6-9beb-a6ff6ef3ef9f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/8abd564a-2b8e-401c-9916-34982cb67b55#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/7d65828a-85c1-41f4-96cf-c758da75e401#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/audience/motivation", - "value": "http://www.bbc.co.uk/things/7047e74c-b9ae-4c02-a4a8-748df451ac58#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/infoClass", - "value": "http://www.bbc.co.uk/things/0db2b959-cbf8-4661-965f-050974a69bb5#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/ce5c43ee-8982-4f88-9472-9aa79aeb09cc#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/e45cb5f8-3c87-4ebd-ac1c-058e9be22862#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/assetType", - "value": "http://www.bbc.co.uk/things/22ea958e-2004-4f34-80a7-bf5acad52f6f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/editorialSensitivity", - "value": "http://www.bbc.co.uk/things/c6979033-cb72-4d07-9897-adc348a4332e#id" - } - ], - "schemaVersion": "1.4.0", - "publishedState": "PUBLISHED", - "predicates": { - "assetType": [ - { - "value": "http://www.bbc.co.uk/things/22ea958e-2004-4f34-80a7-bf5acad52f6f#id", - "type": "assetType" - } - ], - "primaryMediaType": [ - { - "value": "http://www.bbc.co.uk/things/ffc98bca-8cff-4ee6-9beb-a6ff6ef3ef9f#id", - "type": "primaryMediaType" - } - ], - "motivation": [], - "infoClass": [ - { - "value": "http://www.bbc.co.uk/things/0db2b959-cbf8-4661-965f-050974a69bb5#id", - "type": "infoClass" - } - ], - "editorialSensitivity": [ - { - "value": "http://www.bbc.co.uk/things/c6979033-cb72-4d07-9897-adc348a4332e#id", - "type": "editorialSensitivity" - } - ], - "about": [ - { - "value": "http://www.bbc.co.uk/things/3d5d5e30-dd50-4041-96d5-c970b20005b9#id", - "thingLabel": "Najeriya", - "thingUri": "http://www.bbc.co.uk/things/3d5d5e30-dd50-4041-96d5-c970b20005b9#id", - "thingId": "3d5d5e30-dd50-4041-96d5-c970b20005b9", - "thingType": [ - "core:Place", - "core:Thing", - "tagging:TagConcept" - ], - "thingSameAs": [ - "http://sws.geonames.org/2328926/" - ], - "thingEnglishLabel": "Nigeria", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/7d65828a-85c1-41f4-96cf-c758da75e401#id", - "thingLabel": "Siyasar Najeriya", - "thingUri": "http://www.bbc.co.uk/things/7d65828a-85c1-41f4-96cf-c758da75e401#id", - "thingId": "7d65828a-85c1-41f4-96cf-c758da75e401", - "thingType": [ - "core:Thing", - "tagging:TagConcept", - "core:Theme" - ], - "thingSameAs": [ - "http://dbpedia.org/resource/Politics_of_Nigeria" - ], - "thingEnglishLabel": "Nigeria politics", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/8abd564a-2b8e-401c-9916-34982cb67b55#id", - "thingLabel": "Yancin mata", - "thingUri": "http://www.bbc.co.uk/things/8abd564a-2b8e-401c-9916-34982cb67b55#id", - "thingId": "8abd564a-2b8e-401c-9916-34982cb67b55", - "thingType": [ - "tagging:TagConcept", - "core:Thing", - "core:Theme" - ], - "thingSameAs": [ - "http://dbpedia.org/resource/Women%27s_rights", - "http://www.wikidata.org/entity/Q223569" - ], - "thingEnglishLabel": "Women's rights", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/ce5c43ee-8982-4f88-9472-9aa79aeb09cc#id", - "thingLabel": "Rundunar soji", - "thingUri": "http://www.bbc.co.uk/things/ce5c43ee-8982-4f88-9472-9aa79aeb09cc#id", - "thingId": "ce5c43ee-8982-4f88-9472-9aa79aeb09cc", - "thingType": [ - "tagging:TagConcept", - "core:Thing", - "core:Theme" - ], - "thingSameAs": [ - "http://dbpedia.org/resource/Military" - ], - "thingEnglishLabel": "Military", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/e45cb5f8-3c87-4ebd-ac1c-058e9be22862#id", - "thingLabel": "Mata", - "thingUri": "http://www.bbc.co.uk/things/e45cb5f8-3c87-4ebd-ac1c-058e9be22862#id", - "thingId": "e45cb5f8-3c87-4ebd-ac1c-058e9be22862", - "thingType": [ - "core:Thing", - "tagging:TagConcept", - "core:Theme" - ], - "thingSameAs": [ - "http://www.wikidata.org/entity/Q467", - "http://dbpedia.org/resource/Woman" - ], - "thingEnglishLabel": "Women", - "type": "about" - } - ] - } - }, - "id": "urn:bbc:ares::article:cnlkjndy9jwo", - "type": "optimo" - } - }, - { - "id": "urn:bbc:optimo:asset:c4ne288xjjro", - "rank": 19, - "count": 19, - "urn": "urn:bbc:optimo:asset:c4ne288xjjro", - "promo": { - "locators": { - "optimoUrn": "urn:bbc:optimo:asset:c4ne288xjjro", - "canonicalUrl": "https://www.bbc.com/hausa/articles/c4ne288xjjro" - }, - "timestamp": 1686478873580, - "suitableForSyndication": true, - "language": "ha", - "headlines": { - "seoHeadline": "Amsoshin Takardunku: Me ake nufi da sarkin Katsinan Gusau, me ke haifar da wutar daji?", - "promoHeadline": { - "blocks": [ - { - "type": "text", - "model": { - "blocks": [ - { - "type": "paragraph", - "model": { - "text": "Me ake nufi da sarkin Katsinan Gusau, me ke haifar da wutar daji?", - "blocks": [ - { - "type": "fragment", - "model": { - "text": "Me ake nufi da sarkin Katsinan Gusau, me ke haifar da wutar daji?", - "attributes": [] - } - } - ] - } - } - ] - } - } - ] - } - }, - "images": { - "defaultPromoImage": { - "blocks": [ - { - "type": "altText", - "model": { - "blocks": [ - { - "type": "text", - "model": { - "blocks": [ - { - "type": "paragraph", - "model": { - "text": "Amsoshi", - "blocks": [ - { - "type": "fragment", - "model": { - "text": "Amsoshi", - "attributes": [] - } - } - ] - } - } - ] - } - } - ] - } - }, - { - "type": "rawImage", - "model": { - "width": 834, - "height": 459, - "locator": "e271/live/a7d4ed70-0841-11ee-b5af-25e80c61c11a.png", - "originCode": "cpsprodpb", - "copyrightHolder": "BBC", - "suitableForSyndication": true - } - } - ] - } - }, - "summary": { - "blocks": [ - { - "type": "text", - "model": { - "blocks": [ - { - "type": "paragraph", - "model": { - "text": "Filin Amsoshin Takardunku na wannan makon ya amsa tambayoyi biyu kan abin da ake nufui idan aka ce sarkin Katsinan Gusau da abin da haifar da wutar daji a wasu ƙasashen duniya.", - "blocks": [ - { - "type": "fragment", - "model": { - "text": "Filin Amsoshin Takardunku na wannan makon ya amsa tambayoyi biyu kan abin da ake nufui idan aka ce sarkin Katsinan Gusau da abin da haifar da wutar daji a wasu ƙasashen duniya.", - "attributes": [] - } - } - ] - } - } - ] - } - } - ] - }, - "passport": { - "language": "ha", - "home": "http://www.bbc.co.uk/ontologies/passport/home/Hausa", - "locator": "urn:bbc:optimo:asset:c4ne288xjjro", - "availability": "AVAILABLE", - "taggings": [ - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/292384e1-08b1-4424-8937-8bbdd50f7104#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/primaryMediaType", - "value": "http://www.bbc.co.uk/things/fe1fbc8a-bb44-4bf8-8b12-52e58c6345a4#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/39bdfb64-b820-4641-87fd-8910c1ce8e3b#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/e6369e45-f838-49cc-b5ac-857ed182e549#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/infoClass", - "value": "http://www.bbc.co.uk/things/0db2b959-cbf8-4661-965f-050974a69bb5#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/25844b6e-80b0-4de9-8ea0-7a35e7d4086f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/audience/motivation", - "value": "http://www.bbc.co.uk/things/b1a660eb-ef14-4645-b4cd-d7bd939ce443#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/assetType", - "value": "http://www.bbc.co.uk/things/22ea958e-2004-4f34-80a7-bf5acad52f6f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/format", - "value": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id" - } - ], - "schemaVersion": "1.4.0", - "publishedState": "PUBLISHED", - "predicates": { - "assetType": [ - { - "value": "http://www.bbc.co.uk/things/22ea958e-2004-4f34-80a7-bf5acad52f6f#id", - "type": "assetType" - } - ], - "primaryMediaType": [ - { - "value": "http://www.bbc.co.uk/things/fe1fbc8a-bb44-4bf8-8b12-52e58c6345a4#id", - "type": "primaryMediaType" - } - ], - "motivation": [], - "infoClass": [ - { - "value": "http://www.bbc.co.uk/things/0db2b959-cbf8-4661-965f-050974a69bb5#id", - "type": "infoClass" - } - ], - "formats": [ - { - "value": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id", - "thingLabel": "News report", - "thingUri": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id", - "thingId": "46c0517d-9927-4d1a-9954-8c63a3f7a888", - "thingType": [ - "tagging:TagConcept", - "tagging:Format" - ], - "thingSameAs": [], - "thingEnglishLabel": "Report", - "thingPreferredLabel": "Report", - "thingLabelLanguage": "ha", - "type": "formats" - } - ], - "about": [ - { - "value": "http://www.bbc.co.uk/things/25844b6e-80b0-4de9-8ea0-7a35e7d4086f#id", - "thingLabel": "BBC", - "thingUri": "http://www.bbc.co.uk/things/25844b6e-80b0-4de9-8ea0-7a35e7d4086f#id", - "thingId": "25844b6e-80b0-4de9-8ea0-7a35e7d4086f", - "thingType": [ - "tagging:AmbiguousTerm", - "core:Thing", - "core:Organisation", - "tagging:TagConcept", - "tagging:Agent" - ], - "thingSameAs": [ - "http://www.wikidata.org/entity/Q9531", - "http://dbpedia.org/resource/BBC" - ], - "thingEnglishLabel": "BBC", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/292384e1-08b1-4424-8937-8bbdd50f7104#id", - "thingLabel": "Jihar Katsina", - "thingUri": "http://www.bbc.co.uk/things/292384e1-08b1-4424-8937-8bbdd50f7104#id", - "thingId": "292384e1-08b1-4424-8937-8bbdd50f7104", - "thingType": [ - "tagging:TagConcept", - "core:Place", - "core:Thing" - ], - "thingSameAs": [ - "http://dbpedia.org/resource/Katsina_State", - "http://sws.geonames.org/2334797/" - ], - "thingEnglishLabel": "Katsina state", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/39bdfb64-b820-4641-87fd-8910c1ce8e3b#id", - "thingLabel": "Jihar Zamfara", - "thingUri": "http://www.bbc.co.uk/things/39bdfb64-b820-4641-87fd-8910c1ce8e3b#id", - "thingId": "39bdfb64-b820-4641-87fd-8910c1ce8e3b", - "thingType": [ - "core:Place", - "core:Thing", - "tagging:TagConcept" - ], - "thingSameAs": [ - "http://dbpedia.org/resource/Zamfara_State", - "http://sws.geonames.org/2595349/" - ], - "thingEnglishLabel": "Zamfara state", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/e6369e45-f838-49cc-b5ac-857ed182e549#id", - "thingLabel": "Sauyin yanayi", - "thingUri": "http://www.bbc.co.uk/things/e6369e45-f838-49cc-b5ac-857ed182e549#id", - "thingId": "e6369e45-f838-49cc-b5ac-857ed182e549", - "thingType": [ - "tagging:TagConcept", - "core:Thing", - "core:Event" - ], - "thingSameAs": [ - "http://www.wikidata.org/entity/Q125928", - "http://dbpedia.org/resource/Climate_change" - ], - "thingEnglishLabel": "Climate change", - "type": "about" - } - ] - } - }, - "id": "urn:bbc:ares::article:c4ne288xjjro", - "type": "optimo" - } - }, - { - "id": "urn:bbc:optimo:asset:cl5zj5g539ko", - "rank": 20, - "count": 17, - "urn": "urn:bbc:optimo:asset:cl5zj5g539ko", - "promo": { - "locators": { - "optimoUrn": "urn:bbc:optimo:asset:cl5zj5g539ko", - "canonicalUrl": "https://www.bbc.com/hausa/articles/cl5zj5g539ko" - }, - "timestamp": 1686860264664, - "suitableForSyndication": true, - "language": "ha", - "headlines": { - "seoHeadline": "Me zai faru idan ɗalibi ya karɓi bashin karatu na gwamnati ya ƙi mayarwa?", - "promoHeadline": { - "blocks": [ - { - "type": "text", - "model": { - "blocks": [ - { - "type": "paragraph", - "model": { - "text": "Me zai faru idan ɗalibi ya karɓi bashin karatu na gwamnati ya ƙi mayarwa?", - "blocks": [ - { - "type": "fragment", - "model": { - "text": "Me zai faru idan ɗalibi ya karɓi bashin karatu na gwamnati ya ƙi mayarwa?", - "attributes": [] - } - } - ] - } - } - ] - } - } - ] - } - }, - "images": { - "defaultPromoImage": { - "blocks": [ - { - "type": "altText", - "model": { - "blocks": [ - { - "type": "text", - "model": { - "blocks": [ - { - "type": "paragraph", - "model": { - "text": "..", - "blocks": [ - { - "type": "fragment", - "model": { - "text": "..", - "attributes": [] - } - } - ] - } - } - ] - } - } - ] - } - }, - { - "type": "rawImage", - "model": { - "width": 1384, - "height": 922, - "locator": "e6f1/live/805f2b40-0bb9-11ee-b5af-25e80c61c11a.jpg", - "originCode": "cpsprodpb", - "copyrightHolder": "BBC", - "suitableForSyndication": true - } - } - ] - } - }, - "summary": { - "blocks": [ - { - "type": "text", - "model": { - "blocks": [ - { - "type": "paragraph", - "model": { - "text": "Shugaban Najeriya Bola Ahmed Tinubu ya sanya hannu kan dokar bayar da bashin karatu ga ɗaliban manyan makarantu a Najeriya. A wannan bidiyon mun amsa muku muhimman tambayoyi da ake yi kan dokar.", - "blocks": [ - { - "type": "fragment", - "model": { - "text": "Shugaban Najeriya Bola Ahmed Tinubu ya sanya hannu kan dokar bayar da bashin karatu ga ɗaliban manyan makarantu a Najeriya. A wannan bidiyon mun amsa muku muhimman tambayoyi da ake yi kan dokar.", - "attributes": [] - } - } - ] - } - } - ] - } - } - ] - }, - "passport": { - "language": "ha", - "home": "http://www.bbc.co.uk/ontologies/passport/home/Hausa", - "locator": "urn:bbc:optimo:asset:cl5zj5g539ko", - "availability": "AVAILABLE", - "taggings": [ - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/3d5d5e30-dd50-4041-96d5-c970b20005b9#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/primaryMediaType", - "value": "http://www.bbc.co.uk/things/ffc98bca-8cff-4ee6-9beb-a6ff6ef3ef9f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/b82ce27a-2c6f-461a-8796-04b646107c2a#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/f6ec89fd-3823-498e-a888-572e96f791b2#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/audience/motivation", - "value": "http://www.bbc.co.uk/things/7047e74c-b9ae-4c02-a4a8-748df451ac58#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/infoClass", - "value": "http://www.bbc.co.uk/things/0db2b959-cbf8-4661-965f-050974a69bb5#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/6942cb29-9d3f-4c9c-9806-0a0578c286d6#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/audience/motivation", - "value": "http://www.bbc.co.uk/things/b1a660eb-ef14-4645-b4cd-d7bd939ce443#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/assetType", - "value": "http://www.bbc.co.uk/things/22ea958e-2004-4f34-80a7-bf5acad52f6f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/editorialSensitivity", - "value": "http://www.bbc.co.uk/things/c6979033-cb72-4d07-9897-adc348a4332e#id" - } - ], - "schemaVersion": "1.4.0", - "publishedState": "PUBLISHED", - "predicates": { - "assetType": [ - { - "value": "http://www.bbc.co.uk/things/22ea958e-2004-4f34-80a7-bf5acad52f6f#id", - "type": "assetType" - } - ], - "primaryMediaType": [ - { - "value": "http://www.bbc.co.uk/things/ffc98bca-8cff-4ee6-9beb-a6ff6ef3ef9f#id", - "type": "primaryMediaType" - } - ], - "motivation": [], - "infoClass": [ - { - "value": "http://www.bbc.co.uk/things/0db2b959-cbf8-4661-965f-050974a69bb5#id", - "type": "infoClass" - } - ], - "editorialSensitivity": [ - { - "value": "http://www.bbc.co.uk/things/c6979033-cb72-4d07-9897-adc348a4332e#id", - "type": "editorialSensitivity" - } - ], - "about": [ - { - "value": "http://www.bbc.co.uk/things/3d5d5e30-dd50-4041-96d5-c970b20005b9#id", - "thingLabel": "Najeriya", - "thingUri": "http://www.bbc.co.uk/things/3d5d5e30-dd50-4041-96d5-c970b20005b9#id", - "thingId": "3d5d5e30-dd50-4041-96d5-c970b20005b9", - "thingType": [ - "core:Place", - "core:Thing", - "tagging:TagConcept" - ], - "thingSameAs": [ - "http://sws.geonames.org/2328926/" - ], - "thingEnglishLabel": "Nigeria", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/6942cb29-9d3f-4c9c-9806-0a0578c286d6#id", - "thingLabel": "Ilimi", - "thingUri": "http://www.bbc.co.uk/things/6942cb29-9d3f-4c9c-9806-0a0578c286d6#id", - "thingId": "6942cb29-9d3f-4c9c-9806-0a0578c286d6", - "thingType": [ - "tagging:TagConcept", - "core:Thing", - "core:Theme" - ], - "thingSameAs": [ - "http://www.wikidata.org/entity/Q8434", - "http://dbpedia.org/resource/Education" - ], - "thingEnglishLabel": "Education", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/b82ce27a-2c6f-461a-8796-04b646107c2a#id", - "thingLabel": "Bola Tinubu", - "thingUri": "http://www.bbc.co.uk/things/b82ce27a-2c6f-461a-8796-04b646107c2a#id", - "thingId": "b82ce27a-2c6f-461a-8796-04b646107c2a", - "thingType": [ - "tagging:Agent", - "tagging:AmbiguousTerm", - "core:Thing", - "tagging:TagConcept", - "core:Person" - ], - "thingSameAs": [ - "http://dbpedia.org/resource/Bola_Tinubu", - "http://www.wikidata.org/entity/Q3510872" - ], - "thingEnglishLabel": "Bola Tinubu", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/f6ec89fd-3823-498e-a888-572e96f791b2#id", - "thingLabel": "Matasa", - "thingUri": "http://www.bbc.co.uk/things/f6ec89fd-3823-498e-a888-572e96f791b2#id", - "thingId": "f6ec89fd-3823-498e-a888-572e96f791b2", - "thingType": [ - "core:Thing", - "core:Theme", - "tagging:TagConcept" - ], - "thingSameAs": [ - "http://dbpedia.org/resource/Youth", - "http://www.wikidata.org/entity/Q190007" - ], - "thingEnglishLabel": "Young people", - "type": "about" - } - ] - } - }, - "id": "urn:bbc:ares::article:cl5zj5g539ko", - "type": "optimo" - } - } - ] - } + "mostRead": null } }, "contentType": "application/json; charset=utf-8" diff --git a/data/igbo/cpsAssets/afirika-23252735.json b/data/igbo/cpsAssets/afirika-23252735.json index 861c91ea309..6bff760372b 100644 --- a/data/igbo/cpsAssets/afirika-23252735.json +++ b/data/igbo/cpsAssets/afirika-23252735.json @@ -1150,8 +1150,7 @@ "timestamp": 1515951844000 } ] - }, - "mostWatched": null + } } }, "contentType": "application/json; charset=utf-8" diff --git a/data/indonesia/cpsAssets/indonesia-41635759.json b/data/indonesia/cpsAssets/indonesia-41635759.json index 08168e78846..86c538fdbb0 100644 --- a/data/indonesia/cpsAssets/indonesia-41635759.json +++ b/data/indonesia/cpsAssets/indonesia-41635759.json @@ -376,8 +376,7 @@ "secondaryData": { "topStories": null, "features": null, - "mostRead": null, - "mostWatched": null + "mostRead": null } }, "contentType": "application/json; charset=utf-8" diff --git a/data/kyrgyz/cpsAssets/23292889.json b/data/kyrgyz/cpsAssets/23292889.json index ca1e54e85f7..71217aeecc0 100644 --- a/data/kyrgyz/cpsAssets/23292889.json +++ b/data/kyrgyz/cpsAssets/23292889.json @@ -2686,8 +2686,7 @@ "timestamp": 1477898574000 } ] - }, - "mostWatched": null + } } }, "contentType": "application/json; charset=utf-8" diff --git a/data/mundo/cpsAssets/23263889.json b/data/mundo/cpsAssets/23263889.json index 9e2b7aaee40..815bb1acc58 100644 --- a/data/mundo/cpsAssets/23263889.json +++ b/data/mundo/cpsAssets/23263889.json @@ -1371,8 +1371,7 @@ "timestamp": 1462432881000 } ] - }, - "mostWatched": null + } } }, "contentType": "application/json; charset=utf-8" diff --git a/data/mundo/cpsAssets/deportes-36935058.json b/data/mundo/cpsAssets/deportes-36935058.json index d204229d899..16a572b3777 100644 --- a/data/mundo/cpsAssets/deportes-36935058.json +++ b/data/mundo/cpsAssets/deportes-36935058.json @@ -477,8 +477,7 @@ "secondaryData": { "topStories": null, "features": null, - "mostRead": null, - "mostWatched": null + "mostRead": null } }, "contentType": "application/json; charset=utf-8" diff --git a/data/mundo/cpsAssets/noticias-internacional-51266689.json b/data/mundo/cpsAssets/noticias-internacional-51266689.json index 5b1ece2ac22..7528049bffa 100644 --- a/data/mundo/cpsAssets/noticias-internacional-51266689.json +++ b/data/mundo/cpsAssets/noticias-internacional-51266689.json @@ -1621,8 +1621,7 @@ "timestamp": 1686926265000 } ] - }, - "mostWatched": null + } } }, "contentType": "application/json; charset=utf-8" diff --git a/data/mundo/cpsAssets/noticias-internacional-53826365.json b/data/mundo/cpsAssets/noticias-internacional-53826365.json index dadee752d8c..f12cc12be4f 100644 --- a/data/mundo/cpsAssets/noticias-internacional-53826365.json +++ b/data/mundo/cpsAssets/noticias-internacional-53826365.json @@ -3431,8 +3431,7 @@ "secondaryData": { "topStories": null, "features": null, - "mostRead": null, - "mostWatched": null + "mostRead": null } }, "contentType": "application/json; charset=utf-8" diff --git a/data/news/frontpage/index.json b/data/news/frontpage/index.json index 82c1af5764b..780fa4ce36a 100644 --- a/data/news/frontpage/index.json +++ b/data/news/frontpage/index.json @@ -3098,8 +3098,7 @@ "timestamp": 1535635021000 } ] - }, - "mostWatched": null + } } }, "contentType": "application/json; charset=utf-8" diff --git a/data/pashto/cpsAssets/columns-54029178.json b/data/pashto/cpsAssets/columns-54029178.json index ea6e91229cc..2edec556eba 100644 --- a/data/pashto/cpsAssets/columns-54029178.json +++ b/data/pashto/cpsAssets/columns-54029178.json @@ -1096,8 +1096,7 @@ "secondaryData": { "topStories": null, "features": null, - "mostRead": null, - "mostWatched": null + "mostRead": null } }, "contentType": "application/json; charset=utf-8" diff --git a/data/pashto/cpsAssets/media-23257523.json b/data/pashto/cpsAssets/media-23257523.json index b17ab21059d..49fbad53545 100644 --- a/data/pashto/cpsAssets/media-23257523.json +++ b/data/pashto/cpsAssets/media-23257523.json @@ -187,811 +187,7 @@ "secondaryData": { "topStories": null, "features": null, - "mostRead": null, - "mostWatched": { - "generated": "2023-06-20T16:37:58.294Z", - "lastRecordTimeStamp": "2021-05-04T11:53:00Z", - "firstRecordTimeStamp": "2021-05-04T03:53:00Z", - "totalRecords": 13, - "records": [ - { - "id": "0816d421-f4e1-a248-a96b-2ebe04e24f49", - "rank": 1, - "count": 9940, - "urn": "urn:bbc:curie:asset:0816d421-f4e1-a248-a96b-2ebe04e24f49", - "promo": { - "headlines": { - "shortHeadline": "Buhari avuga ku ifaranga rya Naira 1 updated", - "headline": "Buhari avuga ku ifaranga rya Naira 1 updated" - }, - "locators": { - "assetUri": "/gahuza/amakuru-23022530", - "curieCpsUrn": "urn:bbc:cps:curie:asset:0816d421-f4e1-a248-a96b-2ebe04e24f49", - "assetId": "23022530", - "cpsUrn": "urn:bbc:content:assetUri:gahuza/amakuru-23022530", - "curie": "http://www.bbc.co.uk/asset/0816d421-f4e1-a248-a96b-2ebe04e24f49" - }, - "summary": "Igwa ry'ibiciro bya peteroli ku isi ryatumye agaciro k'ifaranga rya Naira rikoreshwa muri Nigeria kagwa mu bavunja amafaranga mu buryo butemewe n'amategeko.", - "timestamp": 1493909359000, - "language": "rw", - "passport": { - "category": { - "categoryId": "http://www.bbc.co.uk/ontologies/applicationlogic-news/News", - "categoryName": "News" - }, - "home": "http://www.bbc.co.uk/ontologies/passport/home/Gahuza", - "taggings": [] - }, - "media": { - "id": "63305311", - "subType": "primary", - "format": "video", - "externalId": "p00zc1p4", - "duration": "PT2M13S", - "caption": "ඉන්දියාවේ බැංගලෝර් නුවර පාසලකට කඩා වැඩුණු දිවියෙක් ඇල්ලීමට තැත් කළ පුද්ගලයන් හය දෙනෙකු තුවාල ලබා තිබේ.", - "image": { - "id": "63305311", - "subType": "thumbnail", - "href": "http://wwwpreview.test.newsonline.tc.nca.bbc.co.uk/media/images/63302000/jpg/_63302851_63302850.jpg", - "path": "/cpsdevpb/10D96/test/_63741096_test66.jpg", - "height": 360, - "width": 640, - "altText": "Facebook 1bn graphic", - "copyrightHolder": "BBC", - "type": "image" - }, - "embedding": false, - "available": true, - "live": false, - "type": "version" - }, - "indexImage": { - "id": "63302853", - "subType": "index", - "href": "http://wwwpreview.test.newsonline.tc.nca.bbc.co.uk/media/images/63302000/jpg/_63302853_63302850.jpg", - "path": "/cpsdevpb/10D96/test/_63741096_test66.jpg", - "height": 360, - "width": 640, - "altText": "Facebook 1bn graphic", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:gahuza/amakuru-23022530", - "type": "cps" - } - }, - { - "id": "427a39e7-114d-914d-bc70-ca270667f075", - "rank": 2, - "count": 9479, - "urn": "urn:bbc:curie:asset:427a39e7-114d-914d-bc70-ca270667f075", - "promo": { - "headlines": { - "shortHeadline": "Buhari avuga ku ifaranga rya Naira 3", - "headline": "Buhari avuga ku ifaranga rya Naira 3" - }, - "locators": { - "assetUri": "/gahuza/amakuru-23022532", - "curieCpsUrn": "urn:bbc:cps:curie:asset:427a39e7-114d-914d-bc70-ca270667f075", - "assetId": "23022532", - "cpsUrn": "urn:bbc:content:assetUri:gahuza/amakuru-23022532", - "curie": "http://www.bbc.co.uk/asset/427a39e7-114d-914d-bc70-ca270667f075" - }, - "summary": "Igwa ry'ibiciro bya peteroli ku isi ryatumye agaciro k'ifaranga rya Naira rikoreshwa muri Nigeria kagwa mu bavunja amafaranga mu buryo butemewe n'amategeko.", - "timestamp": 1455191397000, - "language": "rw", - "passport": { - "home": "http://www.bbc.co.uk/ontologies/passport/home/Gahuza", - "taggings": [] - }, - "media": { - "id": "63305311", - "subType": "primary", - "format": "video", - "externalId": "p00zc1p4", - "duration": "PT2M13S", - "caption": "ඉන්දියාවේ බැංගලෝර් නුවර පාසලකට කඩා වැඩුණු දිවියෙක් ඇල්ලීමට තැත් කළ පුද්ගලයන් හය දෙනෙකු තුවාල ලබා තිබේ.", - "image": { - "id": "63305311", - "subType": "thumbnail", - "href": "http://wwwpreview.test.newsonline.tc.nca.bbc.co.uk/media/images/63302000/jpg/_63302851_63302850.jpg", - "path": "/cpsdevpb/10D96/test/_63741096_test66.jpg", - "height": 360, - "width": 640, - "altText": "Facebook 1bn graphic", - "copyrightHolder": "BBC", - "type": "image" - }, - "embedding": false, - "available": true, - "live": false, - "type": "version" - }, - "indexImage": { - "id": "63302853", - "subType": "index", - "href": "http://wwwpreview.test.newsonline.tc.nca.bbc.co.uk/media/images/63302000/jpg/_63302853_63302850.jpg", - "path": "/cpsdevpb/10D96/test/_63741096_test66.jpg", - "height": 360, - "width": 640, - "altText": "Facebook 1bn graphic", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:gahuza/amakuru-23022532", - "type": "cps" - } - }, - { - "id": "f655f94e-9b53-6d47-a540-a2eda4078cb3", - "rank": 3, - "count": 8069, - "urn": "urn:bbc:curie:asset:f655f94e-9b53-6d47-a540-a2eda4078cb3", - "promo": { - "headlines": { - "shortHeadline": "Buhari avuga ku ifaranga rya Naira 4", - "headline": "Buhari avuga ku ifaranga rya Naira 4" - }, - "locators": { - "assetUri": "/gahuza/amakuru-23022533", - "curieCpsUrn": "urn:bbc:cps:curie:asset:f655f94e-9b53-6d47-a540-a2eda4078cb3", - "assetId": "23022533", - "cpsUrn": "urn:bbc:content:assetUri:gahuza/amakuru-23022533", - "curie": "http://www.bbc.co.uk/asset/f655f94e-9b53-6d47-a540-a2eda4078cb3" - }, - "summary": "Igwa ry'ibiciro bya peteroli ku isi ryatumye agaciro k'ifaranga rya Naira rikoreshwa muri Nigeria kagwa mu bavunja amafaranga mu buryo butemewe n'amategeko.", - "timestamp": 1455191419000, - "language": "rw", - "passport": { - "home": "http://www.bbc.co.uk/ontologies/passport/home/Gahuza", - "taggings": [] - }, - "media": { - "id": "63305311", - "subType": "primary", - "format": "video", - "externalId": "p00zc1p4", - "duration": "PT2M13S", - "caption": "ඉන්දියාවේ බැංගලෝර් නුවර පාසලකට කඩා වැඩුණු දිවියෙක් ඇල්ලීමට තැත් කළ පුද්ගලයන් හය දෙනෙකු තුවාල ලබා තිබේ.", - "image": { - "id": "63305311", - "subType": "thumbnail", - "href": "http://wwwpreview.test.newsonline.tc.nca.bbc.co.uk/media/images/63302000/jpg/_63302851_63302850.jpg", - "path": "/cpsdevpb/10D96/test/_63741096_test66.jpg", - "height": 360, - "width": 640, - "altText": "Facebook 1bn graphic", - "copyrightHolder": "BBC", - "type": "image" - }, - "embedding": false, - "available": true, - "live": false, - "type": "version" - }, - "indexImage": { - "id": "63302853", - "subType": "index", - "href": "http://wwwpreview.test.newsonline.tc.nca.bbc.co.uk/media/images/63302000/jpg/_63302853_63302850.jpg", - "path": "/cpsdevpb/10D96/test/_63741096_test66.jpg", - "height": 360, - "width": 640, - "altText": "Facebook 1bn graphic", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:gahuza/amakuru-23022533", - "type": "cps" - } - }, - { - "id": "a49f696e-1d3b-f94c-be78-30f807b8d404", - "rank": 4, - "count": 7006, - "urn": "urn:bbc:curie:asset:a49f696e-1d3b-f94c-be78-30f807b8d404", - "promo": { - "headlines": { - "shortHeadline": "Buhari avuga ku ifaranga rya Naira 5", - "headline": "Buhari avuga ku ifaranga rya Naira 5" - }, - "locators": { - "assetUri": "/gahuza/amakuru-23022534", - "curieCpsUrn": "urn:bbc:cps:curie:asset:a49f696e-1d3b-f94c-be78-30f807b8d404", - "assetId": "23022534", - "cpsUrn": "urn:bbc:content:assetUri:gahuza/amakuru-23022534", - "curie": "http://www.bbc.co.uk/asset/a49f696e-1d3b-f94c-be78-30f807b8d404" - }, - "summary": "Igwa ry'ibiciro bya peteroli ku isi ryatumye agaciro k'ifaranga rya Naira rikoreshwa muri Nigeria kagwa mu bavunja amafaranga mu buryo butemewe n'amategeko.", - "timestamp": 1455191438000, - "language": "rw", - "passport": { - "home": "http://www.bbc.co.uk/ontologies/passport/home/Gahuza", - "taggings": [] - }, - "media": { - "id": "63305311", - "subType": "primary", - "format": "video", - "externalId": "p00zc1p4", - "duration": "PT2M13S", - "caption": "ඉන්දියාවේ බැංගලෝර් නුවර පාසලකට කඩා වැඩුණු දිවියෙක් ඇල්ලීමට තැත් කළ පුද්ගලයන් හය දෙනෙකු තුවාල ලබා තිබේ.", - "image": { - "id": "63305311", - "subType": "thumbnail", - "href": "http://wwwpreview.test.newsonline.tc.nca.bbc.co.uk/media/images/63302000/jpg/_63302851_63302850.jpg", - "path": "/cpsdevpb/10D96/test/_63741096_test66.jpgg", - "height": 360, - "width": 640, - "altText": "Facebook 1bn graphic", - "copyrightHolder": "BBC", - "type": "image" - }, - "embedding": false, - "available": true, - "live": false, - "type": "version" - }, - "indexImage": { - "id": "63302853", - "subType": "index", - "href": "http://wwwpreview.test.newsonline.tc.nca.bbc.co.uk/media/images/63302000/jpg/_63302853_63302850.jpg", - "path": "/cpsdevpb/10D96/test/_63741096_test66.jpg", - "height": 360, - "width": 640, - "altText": "Facebook 1bn graphic", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:gahuza/amakuru-23022534", - "type": "cps" - } - }, - { - "id": "9c35ecc7-b372-734c-8832-efbba6da695e", - "rank": 5, - "count": 6799, - "urn": "urn:bbc:curie:asset:9c35ecc7-b372-734c-8832-efbba6da695e", - "promo": { - "headlines": { - "shortHeadline": "Buhari avuga ku ifaranga rya Naira 2", - "headline": "Buhari avuga ku ifaranga rya Naira 2" - }, - "locators": { - "assetUri": "/gahuza/amakuru-23022531", - "curieCpsUrn": "urn:bbc:cps:curie:asset:9c35ecc7-b372-734c-8832-efbba6da695e", - "assetId": "23022531", - "cpsUrn": "urn:bbc:content:assetUri:gahuza/amakuru-23022531", - "curie": "http://www.bbc.co.uk/asset/9c35ecc7-b372-734c-8832-efbba6da695e" - }, - "summary": "Igwa ry'ibiciro bya peteroli ku isi ryatumye agaciro k'ifaranga rya Naira rikoreshwa muri Nigeria kagwa mu bavunja amafaranga mu buryo butemewe n'amategeko.", - "timestamp": 1455191377000, - "language": "rw", - "passport": { - "home": "http://www.bbc.co.uk/ontologies/passport/home/Gahuza", - "taggings": [] - }, - "media": { - "id": "63305311", - "subType": "primary", - "format": "video", - "externalId": "p00zc1p4", - "duration": "PT2M13S", - "caption": "ඉන්දියාවේ බැංගලෝර් නුවර පාසලකට කඩා වැඩුණු දිවියෙක් ඇල්ලීමට තැත් කළ පුද්ගලයන් හය දෙනෙකු තුවාල ලබා තිබේ.", - "image": { - "id": "63305311", - "subType": "thumbnail", - "href": "http://wwwpreview.test.newsonline.tc.nca.bbc.co.uk/media/images/63302000/jpg/_63302851_63302850.jpg", - "path": "/cpsdevpb/10D96/test/_63741096_test66.jpg", - "height": 360, - "width": 640, - "altText": "Facebook 1bn graphic", - "copyrightHolder": "BBC", - "type": "image" - }, - "embedding": false, - "available": true, - "live": false, - "type": "version" - }, - "indexImage": { - "id": "63302853", - "subType": "index", - "href": "http://wwwpreview.test.newsonline.tc.nca.bbc.co.uk/media/images/63302000/jpg/_63302853_63302850.jpg", - "path": "/cpsdevpb/10D96/test/_63741096_test66.jpg", - "height": 360, - "width": 640, - "altText": "Facebook 1bn graphic", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:gahuza/amakuru-23022531", - "type": "cps" - } - }, - { - "id": "7733b121-debf-944f-ba25-56af1502bb90", - "rank": 6, - "count": 5800, - "urn": "urn:bbc:curie:asset:7733b121-debf-944f-ba25-56af1502bb90", - "promo": { - "headlines": { - "shortHeadline": "Buhari avuga ku ifaranga rya Naira 11", - "headline": "Buhari avuga ku ifaranga rya Naira 11" - }, - "locators": { - "assetUri": "/gahuza/amakuru-23058545", - "curieCpsUrn": "urn:bbc:cps:curie:asset:7733b121-debf-944f-ba25-56af1502bb90", - "assetId": "23058545", - "cpsUrn": "urn:bbc:content:assetUri:gahuza/amakuru-23058545", - "curie": "http://www.bbc.co.uk/asset/7733b121-debf-944f-ba25-56af1502bb90" - }, - "summary": "Igwa ry'ibiciro bya peteroli ku isi ryatumye agaciro k'ifaranga rya Naira rikoreshwa muri Nigeria kagwa mu bavunja amafaranga mu buryo butemewe n'amategeko.", - "timestamp": 1467896549000, - "language": "rw", - "passport": { - "home": "http://www.bbc.co.uk/ontologies/passport/home/Gahuza", - "taggings": [] - }, - "media": { - "id": "63305311", - "subType": "primary", - "format": "video", - "externalId": "p00zc1p4", - "duration": "PT2M13S", - "caption": "ඉන්දියාවේ බැංගලෝර් නුවර පාසලකට කඩා වැඩුණු දිවියෙක් ඇල්ලීමට තැත් කළ පුද්ගලයන් හය දෙනෙකු තුවාල ලබා තිබේ.", - "image": { - "id": "63305311", - "subType": "thumbnail", - "href": "http://b.files.bbci.co.uk/15BB6/test/_63741098_df2ea412-123f-4de7-b86d-349aaadf44c7.jpg", - "path": "/cpsdevpb/15BB6/test/_63741098_df2ea412-123f-4de7-b86d-349aaadf44c7.jpg", - "height": 360, - "width": 640, - "altText": "Facebook 1bn graphic", - "copyrightHolder": "BBC", - "allowSyndication": true, - "type": "image" - }, - "embedding": false, - "available": true, - "live": false, - "type": "version" - }, - "indexImage": { - "id": "63741096", - "subType": "index", - "href": "http://b.files.bbci.co.uk/10D96/test/_63741096_test66.jpg", - "path": "/cpsdevpb/10D96/test/_63741096_test66.jpg", - "height": 261, - "width": 464, - "altText": "test", - "caption": "test", - "copyrightHolder": "BBC", - "allowSyndication": true, - "type": "image" - }, - "id": "urn:bbc:ares::asset:gahuza/amakuru-23058545", - "type": "cps" - } - }, - { - "id": "f9b4fbd2-e469-8f49-b1d1-e177dfa1d5a1", - "rank": 7, - "count": 4652, - "urn": "urn:bbc:curie:asset:f9b4fbd2-e469-8f49-b1d1-e177dfa1d5a1", - "promo": { - "headlines": { - "shortHeadline": "Buhari avuga ku ifaranga rya Naira 12", - "headline": "Buhari avuga ku ifaranga rya Naira 12" - }, - "locators": { - "assetUri": "/gahuza/amakuru-23058546", - "curieCpsUrn": "urn:bbc:cps:curie:asset:f9b4fbd2-e469-8f49-b1d1-e177dfa1d5a1", - "assetId": "23058546", - "cpsUrn": "urn:bbc:content:assetUri:gahuza/amakuru-23058546", - "curie": "http://www.bbc.co.uk/asset/f9b4fbd2-e469-8f49-b1d1-e177dfa1d5a1" - }, - "summary": "Igwa ry'ibiciro bya peteroli ku isi ryatumye agaciro k'ifaranga rya Naira rikoreshwa muri Nigeria kagwa mu bavunja amafaranga mu buryo butemewe n'amategeko.", - "timestamp": 1467896589000, - "language": "rw", - "passport": { - "home": "http://www.bbc.co.uk/ontologies/passport/home/Gahuza", - "taggings": [] - }, - "media": { - "id": "63305311", - "subType": "primary", - "format": "video", - "externalId": "p00zc1p4", - "duration": "PT2M13S", - "caption": "ඉන්දියාවේ බැංගලෝර් නුවර පාසලකට කඩා වැඩුණු දිවියෙක් ඇල්ලීමට තැත් කළ පුද්ගලයන් හය දෙනෙකු තුවාල ලබා තිබේ.", - "image": { - "id": "63305311", - "subType": "thumbnail", - "href": "http://wwwpreview.test.newsonline.tc.nca.bbc.co.uk/media/images/63302000/jpg/_63302851_63302850.jpg", - "path": "/cpsdevpb/10D96/test/_63741096_test66.jpg", - "height": 360, - "width": 640, - "altText": "Facebook 1bn graphic", - "copyrightHolder": "BBC", - "type": "image" - }, - "embedding": false, - "available": true, - "live": false, - "type": "version" - }, - "indexImage": { - "id": "63302853", - "subType": "index", - "href": "http://wwwpreview.test.newsonline.tc.nca.bbc.co.uk/media/images/63302000/jpg/_63302853_63302850.jpg", - "path": "/cpsdevpb/10D96/test/_63741096_test66.jpg", - "height": 360, - "width": 640, - "altText": "Facebook 1bn graphic", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:gahuza/amakuru-23058546", - "type": "cps" - } - }, - { - "id": "22eca6d1-de82-c749-ac66-7e9be6ffa10e", - "rank": 8, - "count": 3934, - "urn": "urn:bbc:curie:asset:22eca6d1-de82-c749-ac66-7e9be6ffa10e", - "promo": { - "headlines": { - "shortHeadline": "Buhari avuga ku ifaranga rya Naira 10", - "headline": "Buhari avuga ku ifaranga rya Naira 10" - }, - "locators": { - "assetUri": "/gahuza/amakuru-23058544", - "curieCpsUrn": "urn:bbc:cps:curie:asset:22eca6d1-de82-c749-ac66-7e9be6ffa10e", - "assetId": "23058544", - "cpsUrn": "urn:bbc:content:assetUri:gahuza/amakuru-23058544", - "curie": "http://www.bbc.co.uk/asset/22eca6d1-de82-c749-ac66-7e9be6ffa10e" - }, - "summary": "Igwa ry'ibiciro bya peteroli ku isi ryatumye agaciro k'ifaranga rya Naira rikoreshwa muri Nigeria kagwa mu bavunja amafaranga mu buryo butemewe n'amategeko.", - "timestamp": 1467896508000, - "language": "rw", - "passport": { - "home": "http://www.bbc.co.uk/ontologies/passport/home/Gahuza", - "taggings": [] - }, - "media": { - "id": "63305311", - "subType": "primary", - "format": "video", - "externalId": "p00zc1p4", - "duration": "PT2M13S", - "caption": "ඉන්දියාවේ බැංගලෝර් නුවර පාසලකට කඩා වැඩුණු දිවියෙක් ඇල්ලීමට තැත් කළ පුද්ගලයන් හය දෙනෙකු තුවාල ලබා තිබේ.", - "image": { - "id": "63305311", - "subType": "thumbnail", - "href": "http://wwwpreview.test.newsonline.tc.nca.bbc.co.uk/media/images/63302000/jpg/_63302851_63302850.jpg", - "path": "/cpsdevpb/10D96/test/_63741096_test66.jpg", - "height": 360, - "width": 640, - "altText": "Facebook 1bn graphic", - "copyrightHolder": "BBC", - "type": "image" - }, - "embedding": false, - "available": true, - "live": false, - "type": "version" - }, - "indexImage": { - "id": "63302853", - "subType": "index", - "href": "http://wwwpreview.test.newsonline.tc.nca.bbc.co.uk/media/images/63302000/jpg/_63302853_63302850.jpg", - "path": "/cpsdevpb/10D96/test/_63741096_test66.jpg", - "height": 360, - "width": 640, - "altText": "Facebook 1bn graphic", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:gahuza/amakuru-23058544", - "type": "cps" - } - }, - { - "id": "1400d345-2efc-b64b-b42f-62eb0a6b37b9", - "rank": 9, - "count": 3619, - "urn": "urn:bbc:curie:asset:1400d345-2efc-b64b-b42f-62eb0a6b37b9", - "promo": { - "headlines": { - "shortHeadline": "Buhari avuga ku ifaranga rya Naira", - "headline": "Buhari avuga ku ifaranga rya Naira" - }, - "locators": { - "assetUri": "/gahuza/amakuru-23022528", - "curieCpsUrn": "urn:bbc:cps:curie:asset:1400d345-2efc-b64b-b42f-62eb0a6b37b9", - "assetId": "23022528", - "cpsUrn": "urn:bbc:content:assetUri:gahuza/amakuru-23022528", - "curie": "http://www.bbc.co.uk/asset/1400d345-2efc-b64b-b42f-62eb0a6b37b9" - }, - "summary": "Igwa ry'ibiciro bya peteroli ku isi ryatumye agaciro k'ifaranga rya Naira rikoreshwa muri Nigeria kagwa mu bavunja amafaranga mu buryo butemewe n'amategeko.", - "timestamp": 1455191293000, - "language": "rw", - "passport": { - "home": "http://www.bbc.co.uk/ontologies/passport/home/Gahuza", - "taggings": [] - }, - "media": { - "id": "63305311", - "subType": "primary", - "format": "video", - "externalId": "p00zc1p4", - "duration": "PT2M13S", - "caption": "ඉන්දියාවේ බැංගලෝර් නුවර පාසලකට කඩා වැඩුණු දිවියෙක් ඇල්ලීමට තැත් කළ පුද්ගලයන් හය දෙනෙකු තුවාල ලබා තිබේ.", - "image": { - "id": "63305311", - "subType": "thumbnail", - "href": "http://wwwpreview.test.newsonline.tc.nca.bbc.co.uk/media/images/63302000/jpg/_63302851_63302850.jpg", - "path": "/cpsdevpb/10D96/test/_63741096_test66.jpg", - "height": 360, - "width": 640, - "altText": "Facebook 1bn graphic", - "copyrightHolder": "BBC", - "type": "image" - }, - "embedding": false, - "available": true, - "live": false, - "type": "version" - }, - "indexImage": { - "id": "63302853", - "subType": "index", - "href": "http://wwwpreview.test.newsonline.tc.nca.bbc.co.uk/media/images/63302000/jpg/_63302853_63302850.jpg", - "path": "/cpsdevpb/10D96/test/_63741096_test66.jpg", - "height": 360, - "width": 640, - "altText": "Facebook 1bn graphic", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:gahuza/amakuru-23022528", - "type": "cps" - } - }, - { - "id": "3ee9e218-f620-c24d-b249-89266a821e21", - "rank": 10, - "count": 3064, - "urn": "urn:bbc:curie:asset:3ee9e218-f620-c24d-b249-89266a821e21", - "promo": { - "headlines": { - "shortHeadline": "Buhari avuga ku ifaranga rya Naira 13", - "headline": "Buhari avuga ku ifaranga rya Naira 13" - }, - "locators": { - "assetUri": "/gahuza/amakuru-23058547", - "curieCpsUrn": "urn:bbc:cps:curie:asset:3ee9e218-f620-c24d-b249-89266a821e21", - "assetId": "23058547", - "cpsUrn": "urn:bbc:content:assetUri:gahuza/amakuru-23058547", - "curie": "http://www.bbc.co.uk/asset/3ee9e218-f620-c24d-b249-89266a821e21" - }, - "summary": "Igwa ry'ibiciro bya peteroli ku isi ryatumye agaciro k'ifaranga rya Naira rikoreshwa muri Nigeria kagwa mu bavunja amafaranga mu buryo butemewe n'amategeko.", - "timestamp": 1467896617000, - "language": "rw", - "passport": { - "home": "http://www.bbc.co.uk/ontologies/passport/home/Gahuza", - "taggings": [] - }, - "media": { - "id": "63305311", - "subType": "primary", - "format": "video", - "externalId": "p00zc1p4", - "duration": "PT2M13S", - "caption": "ඉන්දියාවේ බැංගලෝර් නුවර පාසලකට කඩා වැඩුණු දිවියෙක් ඇල්ලීමට තැත් කළ පුද්ගලයන් හය දෙනෙකු තුවාල ලබා තිබේ.", - "image": { - "id": "63305311", - "subType": "thumbnail", - "href": "http://wwwpreview.test.newsonline.tc.nca.bbc.co.uk/media/images/63302000/jpg/_63302851_63302850.jpg", - "path": "/cpsdevpb/10D96/test/_63741096_test66.jpg", - "height": 360, - "width": 640, - "altText": "Facebook 1bn graphic", - "copyrightHolder": "BBC", - "type": "image" - }, - "embedding": false, - "available": true, - "live": false, - "type": "version" - }, - "indexImage": { - "id": "63302853", - "subType": "index", - "href": "http://wwwpreview.test.newsonline.tc.nca.bbc.co.uk/media/images/63302000/jpg/_63302853_63302850.jpg", - "path": "/cpsdevpb/10D96/test/_63741096_test66.jpg", - "height": 360, - "width": 640, - "altText": "Facebook 1bn graphic", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:gahuza/amakuru-23058547", - "type": "cps" - } - }, - { - "id": "358696fc-4a4f-c84d-9d88-7a894176bd24", - "rank": 11, - "count": 2979, - "urn": "urn:bbc:curie:asset:358696fc-4a4f-c84d-9d88-7a894176bd24", - "promo": { - "headlines": { - "shortHeadline": "Imiliyoni z'abanyamerika zigiye kwivuza bigoranye kuva mu 2018", - "headline": "Imiliyoni z'abanyamerika zigiye kwivuza bigoranye kuva mu 2018" - }, - "locators": { - "assetUri": "/gahuza/amakuru-23108773", - "curieCpsUrn": "urn:bbc:cps:curie:asset:358696fc-4a4f-c84d-9d88-7a894176bd24", - "assetId": "23108773", - "cpsUrn": "urn:bbc:content:assetUri:gahuza/amakuru-23108773", - "curie": "http://www.bbc.co.uk/asset/358696fc-4a4f-c84d-9d88-7a894176bd24" - }, - "summary": "Abantu baharugwa ku miliyoni 14 bagiye guhagarikwa kwivuza ku buryo bworoshe bakoresha \"assurance\" kuva mu 2018 igihe itegeko ry'aba républicains ku bijanye n'amagara rizoba ritanguye kuja mu ngiro.", - "timestamp": 1489659310000, - "language": "rw", - "passport": { - "home": "http://www.bbc.co.uk/ontologies/passport/home/Gahuza", - "taggings": [] - }, - "media": { - "id": "23108775", - "subType": "primary", - "format": "audio", - "externalId": "p018xz0r", - "entityType": "Clip", - "caption": "gghhjjjjjjjjjjjj", - "statusCode": 410, - "statusMessage": "Asset could not be found. Perhaps it was withdrawn.", - "type": "external_vpid" - }, - "indexImage": { - "id": "63531145", - "subType": "index", - "href": "http://b.files.bbci.co.uk/D361/test/_63531145_p018xz27.jpg", - "path": "/cpsdevpb/D361/test/_63531145_p018xz27.jpg", - "height": 549, - "width": 976, - "altText": "mmmjjh", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:gahuza/amakuru-23108773", - "type": "cps" - } - }, - { - "id": "f048fae5-cf3f-3641-a243-9e426ca2c367", - "rank": 12, - "count": 2807, - "urn": "urn:bbc:curie:asset:f048fae5-cf3f-3641-a243-9e426ca2c367", - "promo": { - "headlines": { - "shortHeadline": "A new audio piece for Gahuza, via OMP update", - "headline": "Short synopsis for a BBC Gahuza audio, uploaded via OMP updated" - }, - "locators": { - "assetUri": "/gahuza/imikino-23026243", - "curieCpsUrn": "urn:bbc:cps:curie:asset:f048fae5-cf3f-3641-a243-9e426ca2c367", - "assetId": "23026243", - "cpsUrn": "urn:bbc:content:assetUri:gahuza/imikino-23026243", - "curie": "http://www.bbc.co.uk/asset/f048fae5-cf3f-3641-a243-9e426ca2c367" - }, - "summary": "Ariko rero kubona yari umuhanga ntabwo byatumye abona imfashanyo yari akeneye kugirango agere kure.", - "timestamp": 1456930298000, - "language": "rw", - "passport": { - "home": "http://www.bbc.co.uk/ontologies/passport/home/Gahuza", - "taggings": [] - }, - "media": { - "id": "23026244", - "subType": "primary", - "format": "audio", - "externalId": "p010h9p2", - "entityType": "Clip", - "caption": "Short synopsis for a BBC Gahuza audio, uploaded via OMP", - "statusCode": 404, - "statusMessage": "Asset could not be found. Perhaps it was withdrawn.", - "type": "external_vpid" - }, - "indexImage": { - "id": "63475932", - "subType": "index", - "href": "http://b.files.bbci.co.uk/5D95/test/_63475932_p010h9pc.jpg", - "path": "/cpsdevpb/5D95/test/_63475932_p010h9pc.jpg", - "height": 576, - "width": 1024, - "altText": "BBC gahuza audio", - "caption": "BBC gahuza audio", - "copyrightHolder": "EPA", - "type": "image" - }, - "id": "urn:bbc:ares::asset:gahuza/imikino-23026243", - "type": "cps" - } - }, - { - "id": "b7ea801b-e8e9-1940-8d14-0b0e373a8eae", - "rank": 13, - "count": 668, - "urn": "urn:bbc:curie:asset:b7ea801b-e8e9-1940-8d14-0b0e373a8eae", - "promo": { - "headlines": { - "shortHeadline": "Ethiopia humiliated by Ghanaian counterparts", - "headline": "Ethiopia humiliated by Ghanaian counterparts" - }, - "locators": { - "assetUri": "/amharic/23132860", - "curieCpsUrn": "urn:bbc:cps:curie:asset:b7ea801b-e8e9-1940-8d14-0b0e373a8eae", - "assetId": "23132860", - "cpsUrn": "urn:bbc:content:assetUri:amharic/23132860", - "curie": "http://www.bbc.co.uk/asset/b7ea801b-e8e9-1940-8d14-0b0e373a8eae" - }, - "summary": "Ethiopia loses 5-0 with tough Ghana", - "timestamp": 1497442127000, - "language": "am", - "passport": { - "home": "http://www.bbc.co.uk/ontologies/passport/home/Amharic", - "taggings": [] - }, - "media": { - "id": "p01b7w2r", - "subType": "clip", - "format": "audio", - "title": "पुणे सुपरजायंट्स आयपीएलच्या अंतिम फेरीत!", - "synopses": { - "short": "मुंबई इंडियन्सला आता दुसऱ्या क्वॉलिफायर लढतीत खेळावे लागणार आहे." - }, - "imageUrl": "ichef.test.bbci.co.uk/images/ic/$recipe/p01b7w9z.jpg", - "embedding": false, - "advertising": true, - "caption": "Pele celebrate", - "versions": [ - { - "versionId": "p01b7w2z", - "types": ["Original"], - "duration": 16, - "durationISO8601": "PT16S", - "warnings": {}, - "availableTerritories": { - "uk": true, - "nonUk": true - }, - "availableFrom": 1495467503000 - } - ], - "smpKind": "radioProgramme", - "type": "media" - }, - "indexImage": { - "id": "63542516", - "subType": "index", - "href": "http://b.files.bbci.co.uk/F054/test/_63542516_p01b7w9z.jpg", - "path": "/cpsdevpb/F054/test/_63542516_p01b7w9z.jpg", - "height": 576, - "width": 1024, - "altText": "सेहवागनं 'असा' पाहिला मुंबई-पुणे सामना", - "copyrightHolder": "Getty Images", - "type": "image" - }, - "id": "urn:bbc:ares::asset:amharic/23132860", - "type": "cps" - } - } - ] - } + "mostRead": null } }, "contentType": "application/json; charset=utf-8" diff --git a/data/pashto/legacyAssets/world/2016/09/160921_tc2_testmap1.json b/data/pashto/legacyAssets/world/2016/09/160921_tc2_testmap1.json index ac0d6c6ed34..5ac332c8e1a 100644 --- a/data/pashto/legacyAssets/world/2016/09/160921_tc2_testmap1.json +++ b/data/pashto/legacyAssets/world/2016/09/160921_tc2_testmap1.json @@ -185,813 +185,7 @@ "secondaryData": { "topStories": null, "features": null, - "mostRead": null, - "mostWatched": { - "generated": "2023-06-20T16:37:58.294Z", - "lastRecordTimeStamp": "2021-05-04T11:53:00Z", - "firstRecordTimeStamp": "2021-05-04T03:53:00Z", - "totalRecords": 13, - "records": [ - { - "id": "0816d421-f4e1-a248-a96b-2ebe04e24f49", - "rank": 1, - "count": 9940, - "urn": "urn:bbc:curie:asset:0816d421-f4e1-a248-a96b-2ebe04e24f49", - "promo": { - "headlines": { - "shortHeadline": "Buhari avuga ku ifaranga rya Naira 1 updated", - "headline": "Buhari avuga ku ifaranga rya Naira 1 updated" - }, - "locators": { - "assetUri": "/gahuza/amakuru-23022530", - "curieCpsUrn": "urn:bbc:cps:curie:asset:0816d421-f4e1-a248-a96b-2ebe04e24f49", - "assetId": "23022530", - "cpsUrn": "urn:bbc:content:assetUri:gahuza/amakuru-23022530", - "curie": "http://www.bbc.co.uk/asset/0816d421-f4e1-a248-a96b-2ebe04e24f49" - }, - "summary": "Igwa ry'ibiciro bya peteroli ku isi ryatumye agaciro k'ifaranga rya Naira rikoreshwa muri Nigeria kagwa mu bavunja amafaranga mu buryo butemewe n'amategeko.", - "timestamp": 1493909359000, - "language": "rw", - "passport": { - "category": { - "categoryId": "http://www.bbc.co.uk/ontologies/applicationlogic-news/News", - "categoryName": "News" - }, - "home": "http://www.bbc.co.uk/ontologies/passport/home/Gahuza", - "taggings": [] - }, - "media": { - "id": "63305311", - "subType": "primary", - "format": "video", - "externalId": "p00zc1p4", - "duration": "PT2M13S", - "caption": "ඉන්දියාවේ බැංගලෝර් නුවර පාසලකට කඩා වැඩුණු දිවියෙක් ඇල්ලීමට තැත් කළ පුද්ගලයන් හය දෙනෙකු තුවාල ලබා තිබේ.", - "image": { - "id": "63305311", - "subType": "thumbnail", - "href": "http://wwwpreview.test.newsonline.tc.nca.bbc.co.uk/media/images/63302000/jpg/_63302851_63302850.jpg", - "path": "/tmcs/media/images/63302000/jpg/_63302851_63302850.jpg", - "height": 360, - "width": 640, - "altText": "Facebook 1bn graphic", - "copyrightHolder": "BBC", - "type": "image" - }, - "embedding": false, - "available": true, - "live": false, - "type": "version" - }, - "indexImage": { - "id": "63302853", - "subType": "index", - "href": "http://wwwpreview.test.newsonline.tc.nca.bbc.co.uk/media/images/63302000/jpg/_63302853_63302850.jpg", - "path": "/tmcs/media/images/63302000/jpg/_63302853_63302850.jpg", - "height": 360, - "width": 640, - "altText": "Facebook 1bn graphic", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:gahuza/amakuru-23022530", - "type": "cps" - } - }, - { - "id": "427a39e7-114d-914d-bc70-ca270667f075", - "rank": 2, - "count": 9479, - "urn": "urn:bbc:curie:asset:427a39e7-114d-914d-bc70-ca270667f075", - "promo": { - "headlines": { - "shortHeadline": "Buhari avuga ku ifaranga rya Naira 3", - "headline": "Buhari avuga ku ifaranga rya Naira 3" - }, - "locators": { - "assetUri": "/gahuza/amakuru-23022532", - "curieCpsUrn": "urn:bbc:cps:curie:asset:427a39e7-114d-914d-bc70-ca270667f075", - "assetId": "23022532", - "cpsUrn": "urn:bbc:content:assetUri:gahuza/amakuru-23022532", - "curie": "http://www.bbc.co.uk/asset/427a39e7-114d-914d-bc70-ca270667f075" - }, - "summary": "Igwa ry'ibiciro bya peteroli ku isi ryatumye agaciro k'ifaranga rya Naira rikoreshwa muri Nigeria kagwa mu bavunja amafaranga mu buryo butemewe n'amategeko.", - "timestamp": 1455191397000, - "language": "rw", - "passport": { - "home": "http://www.bbc.co.uk/ontologies/passport/home/Gahuza", - "taggings": [] - }, - "media": { - "id": "63305311", - "subType": "primary", - "format": "video", - "externalId": "p00zc1p4", - "duration": "PT2M13S", - "caption": "ඉන්දියාවේ බැංගලෝර් නුවර පාසලකට කඩා වැඩුණු දිවියෙක් ඇල්ලීමට තැත් කළ පුද්ගලයන් හය දෙනෙකු තුවාල ලබා තිබේ.", - "image": { - "id": "63305311", - "subType": "thumbnail", - "href": "http://wwwpreview.test.newsonline.tc.nca.bbc.co.uk/media/images/63302000/jpg/_63302851_63302850.jpg", - "path": "/tmcs/media/images/63302000/jpg/_63302851_63302850.jpg", - "height": 360, - "width": 640, - "altText": "Facebook 1bn graphic", - "copyrightHolder": "BBC", - "type": "image" - }, - "embedding": false, - "available": true, - "live": false, - "type": "version" - }, - "indexImage": { - "id": "63302853", - "subType": "index", - "href": "http://wwwpreview.test.newsonline.tc.nca.bbc.co.uk/media/images/63302000/jpg/_63302853_63302850.jpg", - "path": "/tmcs/media/images/63302000/jpg/_63302853_63302850.jpg", - "height": 360, - "width": 640, - "altText": "Facebook 1bn graphic", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:gahuza/amakuru-23022532", - "type": "cps" - } - }, - { - "id": "f655f94e-9b53-6d47-a540-a2eda4078cb3", - "rank": 3, - "count": 8069, - "urn": "urn:bbc:curie:asset:f655f94e-9b53-6d47-a540-a2eda4078cb3", - "promo": { - "headlines": { - "shortHeadline": "Buhari avuga ku ifaranga rya Naira 4", - "headline": "Buhari avuga ku ifaranga rya Naira 4" - }, - "locators": { - "assetUri": "/gahuza/amakuru-23022533", - "curieCpsUrn": "urn:bbc:cps:curie:asset:f655f94e-9b53-6d47-a540-a2eda4078cb3", - "assetId": "23022533", - "cpsUrn": "urn:bbc:content:assetUri:gahuza/amakuru-23022533", - "curie": "http://www.bbc.co.uk/asset/f655f94e-9b53-6d47-a540-a2eda4078cb3" - }, - "summary": "Igwa ry'ibiciro bya peteroli ku isi ryatumye agaciro k'ifaranga rya Naira rikoreshwa muri Nigeria kagwa mu bavunja amafaranga mu buryo butemewe n'amategeko.", - "timestamp": 1455191419000, - "language": "rw", - "passport": { - "home": "http://www.bbc.co.uk/ontologies/passport/home/Gahuza", - "taggings": [] - }, - "media": { - "id": "63305311", - "subType": "primary", - "format": "video", - "externalId": "p00zc1p4", - "duration": "PT2M13S", - "caption": "ඉන්දියාවේ බැංගලෝර් නුවර පාසලකට කඩා වැඩුණු දිවියෙක් ඇල්ලීමට තැත් කළ පුද්ගලයන් හය දෙනෙකු තුවාල ලබා තිබේ.", - "image": { - "id": "63305311", - "subType": "thumbnail", - "href": "http://wwwpreview.test.newsonline.tc.nca.bbc.co.uk/media/images/63302000/jpg/_63302851_63302850.jpg", - "path": "/tmcs/media/images/63302000/jpg/_63302851_63302850.jpg", - "height": 360, - "width": 640, - "altText": "Facebook 1bn graphic", - "copyrightHolder": "BBC", - "type": "image" - }, - "embedding": false, - "available": true, - "live": false, - "type": "version" - }, - "indexImage": { - "id": "63302853", - "subType": "index", - "href": "http://wwwpreview.test.newsonline.tc.nca.bbc.co.uk/media/images/63302000/jpg/_63302853_63302850.jpg", - "path": "/tmcs/media/images/63302000/jpg/_63302853_63302850.jpg", - "height": 360, - "width": 640, - "altText": "Facebook 1bn graphic", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:gahuza/amakuru-23022533", - "type": "cps" - } - }, - { - "id": "a49f696e-1d3b-f94c-be78-30f807b8d404", - "rank": 4, - "count": 7006, - "urn": "urn:bbc:curie:asset:a49f696e-1d3b-f94c-be78-30f807b8d404", - "promo": { - "headlines": { - "shortHeadline": "Buhari avuga ku ifaranga rya Naira 5", - "headline": "Buhari avuga ku ifaranga rya Naira 5" - }, - "locators": { - "assetUri": "/gahuza/amakuru-23022534", - "curieCpsUrn": "urn:bbc:cps:curie:asset:a49f696e-1d3b-f94c-be78-30f807b8d404", - "assetId": "23022534", - "cpsUrn": "urn:bbc:content:assetUri:gahuza/amakuru-23022534", - "curie": "http://www.bbc.co.uk/asset/a49f696e-1d3b-f94c-be78-30f807b8d404" - }, - "summary": "Igwa ry'ibiciro bya peteroli ku isi ryatumye agaciro k'ifaranga rya Naira rikoreshwa muri Nigeria kagwa mu bavunja amafaranga mu buryo butemewe n'amategeko.", - "timestamp": 1455191438000, - "language": "rw", - "passport": { - "home": "http://www.bbc.co.uk/ontologies/passport/home/Gahuza", - "taggings": [] - }, - "media": { - "id": "63305311", - "subType": "primary", - "format": "video", - "externalId": "p00zc1p4", - "duration": "PT2M13S", - "caption": "ඉන්දියාවේ බැංගලෝර් නුවර පාසලකට කඩා වැඩුණු දිවියෙක් ඇල්ලීමට තැත් කළ පුද්ගලයන් හය දෙනෙකු තුවාල ලබා තිබේ.", - "image": { - "id": "63305311", - "subType": "thumbnail", - "href": "http://wwwpreview.test.newsonline.tc.nca.bbc.co.uk/media/images/63302000/jpg/_63302851_63302850.jpg", - "path": "/tmcs/media/images/63302000/jpg/_63302851_63302850.jpg", - "height": 360, - "width": 640, - "altText": "Facebook 1bn graphic", - "copyrightHolder": "BBC", - "type": "image" - }, - "embedding": false, - "available": true, - "live": false, - "type": "version" - }, - "indexImage": { - "id": "63302853", - "subType": "index", - "href": "http://wwwpreview.test.newsonline.tc.nca.bbc.co.uk/media/images/63302000/jpg/_63302853_63302850.jpg", - "path": "/tmcs/media/images/63302000/jpg/_63302853_63302850.jpg", - "height": 360, - "width": 640, - "altText": "Facebook 1bn graphic", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:gahuza/amakuru-23022534", - "type": "cps" - } - }, - { - "id": "9c35ecc7-b372-734c-8832-efbba6da695e", - "rank": 5, - "count": 6799, - "urn": "urn:bbc:curie:asset:9c35ecc7-b372-734c-8832-efbba6da695e", - "promo": { - "headlines": { - "shortHeadline": "Buhari avuga ku ifaranga rya Naira 2", - "headline": "Buhari avuga ku ifaranga rya Naira 2" - }, - "locators": { - "assetUri": "/gahuza/amakuru-23022531", - "curieCpsUrn": "urn:bbc:cps:curie:asset:9c35ecc7-b372-734c-8832-efbba6da695e", - "assetId": "23022531", - "cpsUrn": "urn:bbc:content:assetUri:gahuza/amakuru-23022531", - "curie": "http://www.bbc.co.uk/asset/9c35ecc7-b372-734c-8832-efbba6da695e" - }, - "summary": "Igwa ry'ibiciro bya peteroli ku isi ryatumye agaciro k'ifaranga rya Naira rikoreshwa muri Nigeria kagwa mu bavunja amafaranga mu buryo butemewe n'amategeko.", - "timestamp": 1455191377000, - "language": "rw", - "passport": { - "home": "http://www.bbc.co.uk/ontologies/passport/home/Gahuza", - "taggings": [] - }, - "media": { - "id": "63305311", - "subType": "primary", - "format": "video", - "externalId": "p00zc1p4", - "duration": "PT2M13S", - "caption": "ඉන්දියාවේ බැංගලෝර් නුවර පාසලකට කඩා වැඩුණු දිවියෙක් ඇල්ලීමට තැත් කළ පුද්ගලයන් හය දෙනෙකු තුවාල ලබා තිබේ.", - "image": { - "id": "63305311", - "subType": "thumbnail", - "href": "http://wwwpreview.test.newsonline.tc.nca.bbc.co.uk/media/images/63302000/jpg/_63302851_63302850.jpg", - "path": "/tmcs/media/images/63302000/jpg/_63302851_63302850.jpg", - "height": 360, - "width": 640, - "altText": "Facebook 1bn graphic", - "copyrightHolder": "BBC", - "type": "image" - }, - "embedding": false, - "available": true, - "live": false, - "type": "version" - }, - "indexImage": { - "id": "63302853", - "subType": "index", - "href": "http://wwwpreview.test.newsonline.tc.nca.bbc.co.uk/media/images/63302000/jpg/_63302853_63302850.jpg", - "path": "/tmcs/media/images/63302000/jpg/_63302853_63302850.jpg", - "height": 360, - "width": 640, - "altText": "Facebook 1bn graphic", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:gahuza/amakuru-23022531", - "type": "cps" - } - }, - { - "id": "7733b121-debf-944f-ba25-56af1502bb90", - "rank": 6, - "count": 5800, - "urn": "urn:bbc:curie:asset:7733b121-debf-944f-ba25-56af1502bb90", - "promo": { - "headlines": { - "shortHeadline": "Buhari avuga ku ifaranga rya Naira 11", - "headline": "Buhari avuga ku ifaranga rya Naira 11" - }, - "locators": { - "assetUri": "/gahuza/amakuru-23058545", - "curieCpsUrn": "urn:bbc:cps:curie:asset:7733b121-debf-944f-ba25-56af1502bb90", - "assetId": "23058545", - "cpsUrn": "urn:bbc:content:assetUri:gahuza/amakuru-23058545", - "curie": "http://www.bbc.co.uk/asset/7733b121-debf-944f-ba25-56af1502bb90" - }, - "summary": "Igwa ry'ibiciro bya peteroli ku isi ryatumye agaciro k'ifaranga rya Naira rikoreshwa muri Nigeria kagwa mu bavunja amafaranga mu buryo butemewe n'amategeko.", - "timestamp": 1467896549000, - "language": "rw", - "passport": { - "home": "http://www.bbc.co.uk/ontologies/passport/home/Gahuza", - "taggings": [] - }, - "media": { - "id": "63305311", - "subType": "primary", - "format": "video", - "externalId": "p00zc1p4", - "duration": "PT2M13S", - "caption": "ඉන්දියාවේ බැංගලෝර් නුවර පාසලකට කඩා වැඩුණු දිවියෙක් ඇල්ලීමට තැත් කළ පුද්ගලයන් හය දෙනෙකු තුවාල ලබා තිබේ.", - "image": { - "id": "63305311", - "subType": "thumbnail", - "href": "http://b.files.bbci.co.uk/15BB6/test/_63741098_df2ea412-123f-4de7-b86d-349aaadf44c7.jpg", - "path": "/cpsdevpb/15BB6/test/_63741098_df2ea412-123f-4de7-b86d-349aaadf44c7.jpg", - "height": 360, - "width": 640, - "altText": "Facebook 1bn graphic", - "copyrightHolder": "BBC", - "allowSyndication": true, - "type": "image" - }, - "embedding": false, - "available": true, - "live": false, - "type": "version" - }, - "indexImage": { - "id": "63741096", - "subType": "index", - "href": "http://b.files.bbci.co.uk/10D96/test/_63741096_test66.jpg", - "path": "/cpsdevpb/10D96/test/_63741096_test66.jpg", - "height": 261, - "width": 464, - "altText": "test", - "caption": "test", - "copyrightHolder": "BBC", - "allowSyndication": true, - "type": "image" - }, - "id": "urn:bbc:ares::asset:gahuza/amakuru-23058545", - "type": "cps" - } - }, - { - "id": "f9b4fbd2-e469-8f49-b1d1-e177dfa1d5a1", - "rank": 7, - "count": 4652, - "urn": "urn:bbc:curie:asset:f9b4fbd2-e469-8f49-b1d1-e177dfa1d5a1", - "promo": { - "headlines": { - "shortHeadline": "Buhari avuga ku ifaranga rya Naira 12", - "headline": "Buhari avuga ku ifaranga rya Naira 12" - }, - "locators": { - "assetUri": "/gahuza/amakuru-23058546", - "curieCpsUrn": "urn:bbc:cps:curie:asset:f9b4fbd2-e469-8f49-b1d1-e177dfa1d5a1", - "assetId": "23058546", - "cpsUrn": "urn:bbc:content:assetUri:gahuza/amakuru-23058546", - "curie": "http://www.bbc.co.uk/asset/f9b4fbd2-e469-8f49-b1d1-e177dfa1d5a1" - }, - "summary": "Igwa ry'ibiciro bya peteroli ku isi ryatumye agaciro k'ifaranga rya Naira rikoreshwa muri Nigeria kagwa mu bavunja amafaranga mu buryo butemewe n'amategeko.", - "timestamp": 1467896589000, - "language": "rw", - "passport": { - "home": "http://www.bbc.co.uk/ontologies/passport/home/Gahuza", - "taggings": [] - }, - "media": { - "id": "63305311", - "subType": "primary", - "format": "video", - "externalId": "p00zc1p4", - "duration": "PT2M13S", - "caption": "ඉන්දියාවේ බැංගලෝර් නුවර පාසලකට කඩා වැඩුණු දිවියෙක් ඇල්ලීමට තැත් කළ පුද්ගලයන් හය දෙනෙකු තුවාල ලබා තිබේ.", - "image": { - "id": "63305311", - "subType": "thumbnail", - "href": "http://wwwpreview.test.newsonline.tc.nca.bbc.co.uk/media/images/63302000/jpg/_63302851_63302850.jpg", - "path": "/tmcs/media/images/63302000/jpg/_63302851_63302850.jpg", - "height": 360, - "width": 640, - "altText": "Facebook 1bn graphic", - "copyrightHolder": "BBC", - "type": "image" - }, - "embedding": false, - "available": true, - "live": false, - "type": "version" - }, - "indexImage": { - "id": "63302853", - "subType": "index", - "href": "http://wwwpreview.test.newsonline.tc.nca.bbc.co.uk/media/images/63302000/jpg/_63302853_63302850.jpg", - "path": "/tmcs/media/images/63302000/jpg/_63302853_63302850.jpg", - "height": 360, - "width": 640, - "altText": "Facebook 1bn graphic", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:gahuza/amakuru-23058546", - "type": "cps" - } - }, - { - "id": "22eca6d1-de82-c749-ac66-7e9be6ffa10e", - "rank": 8, - "count": 3934, - "urn": "urn:bbc:curie:asset:22eca6d1-de82-c749-ac66-7e9be6ffa10e", - "promo": { - "headlines": { - "shortHeadline": "Buhari avuga ku ifaranga rya Naira 10", - "headline": "Buhari avuga ku ifaranga rya Naira 10" - }, - "locators": { - "assetUri": "/gahuza/amakuru-23058544", - "curieCpsUrn": "urn:bbc:cps:curie:asset:22eca6d1-de82-c749-ac66-7e9be6ffa10e", - "assetId": "23058544", - "cpsUrn": "urn:bbc:content:assetUri:gahuza/amakuru-23058544", - "curie": "http://www.bbc.co.uk/asset/22eca6d1-de82-c749-ac66-7e9be6ffa10e" - }, - "summary": "Igwa ry'ibiciro bya peteroli ku isi ryatumye agaciro k'ifaranga rya Naira rikoreshwa muri Nigeria kagwa mu bavunja amafaranga mu buryo butemewe n'amategeko.", - "timestamp": 1467896508000, - "language": "rw", - "passport": { - "home": "http://www.bbc.co.uk/ontologies/passport/home/Gahuza", - "taggings": [] - }, - "media": { - "id": "63305311", - "subType": "primary", - "format": "video", - "externalId": "p00zc1p4", - "duration": "PT2M13S", - "caption": "ඉන්දියාවේ බැංගලෝර් නුවර පාසලකට කඩා වැඩුණු දිවියෙක් ඇල්ලීමට තැත් කළ පුද්ගලයන් හය දෙනෙකු තුවාල ලබා තිබේ.", - "image": { - "id": "63305311", - "subType": "thumbnail", - "href": "http://wwwpreview.test.newsonline.tc.nca.bbc.co.uk/media/images/63302000/jpg/_63302851_63302850.jpg", - "path": "/tmcs/media/images/63302000/jpg/_63302851_63302850.jpg", - "height": 360, - "width": 640, - "altText": "Facebook 1bn graphic", - "copyrightHolder": "BBC", - "type": "image" - }, - "embedding": false, - "available": true, - "live": false, - "type": "version" - }, - "indexImage": { - "id": "63302853", - "subType": "index", - "href": "http://wwwpreview.test.newsonline.tc.nca.bbc.co.uk/media/images/63302000/jpg/_63302853_63302850.jpg", - "path": "/tmcs/media/images/63302000/jpg/_63302853_63302850.jpg", - "height": 360, - "width": 640, - "altText": "Facebook 1bn graphic", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:gahuza/amakuru-23058544", - "type": "cps" - } - }, - { - "id": "1400d345-2efc-b64b-b42f-62eb0a6b37b9", - "rank": 9, - "count": 3619, - "urn": "urn:bbc:curie:asset:1400d345-2efc-b64b-b42f-62eb0a6b37b9", - "promo": { - "headlines": { - "shortHeadline": "Buhari avuga ku ifaranga rya Naira", - "headline": "Buhari avuga ku ifaranga rya Naira" - }, - "locators": { - "assetUri": "/gahuza/amakuru-23022528", - "curieCpsUrn": "urn:bbc:cps:curie:asset:1400d345-2efc-b64b-b42f-62eb0a6b37b9", - "assetId": "23022528", - "cpsUrn": "urn:bbc:content:assetUri:gahuza/amakuru-23022528", - "curie": "http://www.bbc.co.uk/asset/1400d345-2efc-b64b-b42f-62eb0a6b37b9" - }, - "summary": "Igwa ry'ibiciro bya peteroli ku isi ryatumye agaciro k'ifaranga rya Naira rikoreshwa muri Nigeria kagwa mu bavunja amafaranga mu buryo butemewe n'amategeko.", - "timestamp": 1455191293000, - "language": "rw", - "passport": { - "home": "http://www.bbc.co.uk/ontologies/passport/home/Gahuza", - "taggings": [] - }, - "media": { - "id": "63305311", - "subType": "primary", - "format": "video", - "externalId": "p00zc1p4", - "duration": "PT2M13S", - "caption": "ඉන්දියාවේ බැංගලෝර් නුවර පාසලකට කඩා වැඩුණු දිවියෙක් ඇල්ලීමට තැත් කළ පුද්ගලයන් හය දෙනෙකු තුවාල ලබා තිබේ.", - "image": { - "id": "63305311", - "subType": "thumbnail", - "href": "http://wwwpreview.test.newsonline.tc.nca.bbc.co.uk/media/images/63302000/jpg/_63302851_63302850.jpg", - "path": "/tmcs/media/images/63302000/jpg/_63302851_63302850.jpg", - "height": 360, - "width": 640, - "altText": "Facebook 1bn graphic", - "copyrightHolder": "BBC", - "type": "image" - }, - "embedding": false, - "available": true, - "live": false, - "type": "version" - }, - "indexImage": { - "id": "63302853", - "subType": "index", - "href": "http://wwwpreview.test.newsonline.tc.nca.bbc.co.uk/media/images/63302000/jpg/_63302853_63302850.jpg", - "path": "/tmcs/media/images/63302000/jpg/_63302853_63302850.jpg", - "height": 360, - "width": 640, - "altText": "Facebook 1bn graphic", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:gahuza/amakuru-23022528", - "type": "cps" - } - }, - { - "id": "3ee9e218-f620-c24d-b249-89266a821e21", - "rank": 10, - "count": 3064, - "urn": "urn:bbc:curie:asset:3ee9e218-f620-c24d-b249-89266a821e21", - "promo": { - "headlines": { - "shortHeadline": "Buhari avuga ku ifaranga rya Naira 13", - "headline": "Buhari avuga ku ifaranga rya Naira 13" - }, - "locators": { - "assetUri": "/gahuza/amakuru-23058547", - "curieCpsUrn": "urn:bbc:cps:curie:asset:3ee9e218-f620-c24d-b249-89266a821e21", - "assetId": "23058547", - "cpsUrn": "urn:bbc:content:assetUri:gahuza/amakuru-23058547", - "curie": "http://www.bbc.co.uk/asset/3ee9e218-f620-c24d-b249-89266a821e21" - }, - "summary": "Igwa ry'ibiciro bya peteroli ku isi ryatumye agaciro k'ifaranga rya Naira rikoreshwa muri Nigeria kagwa mu bavunja amafaranga mu buryo butemewe n'amategeko.", - "timestamp": 1467896617000, - "language": "rw", - "passport": { - "home": "http://www.bbc.co.uk/ontologies/passport/home/Gahuza", - "taggings": [] - }, - "media": { - "id": "63305311", - "subType": "primary", - "format": "video", - "externalId": "p00zc1p4", - "duration": "PT2M13S", - "caption": "ඉන්දියාවේ බැංගලෝර් නුවර පාසලකට කඩා වැඩුණු දිවියෙක් ඇල්ලීමට තැත් කළ පුද්ගලයන් හය දෙනෙකු තුවාල ලබා තිබේ.", - "image": { - "id": "63305311", - "subType": "thumbnail", - "href": "http://wwwpreview.test.newsonline.tc.nca.bbc.co.uk/media/images/63302000/jpg/_63302851_63302850.jpg", - "path": "/tmcs/media/images/63302000/jpg/_63302851_63302850.jpg", - "height": 360, - "width": 640, - "altText": "Facebook 1bn graphic", - "copyrightHolder": "BBC", - "type": "image" - }, - "embedding": false, - "available": true, - "live": false, - "type": "version" - }, - "indexImage": { - "id": "63302853", - "subType": "index", - "href": "http://wwwpreview.test.newsonline.tc.nca.bbc.co.uk/media/images/63302000/jpg/_63302853_63302850.jpg", - "path": "/tmcs/media/images/63302000/jpg/_63302853_63302850.jpg", - "height": 360, - "width": 640, - "altText": "Facebook 1bn graphic", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:gahuza/amakuru-23058547", - "type": "cps" - } - }, - { - "id": "358696fc-4a4f-c84d-9d88-7a894176bd24", - "rank": 11, - "count": 2979, - "urn": "urn:bbc:curie:asset:358696fc-4a4f-c84d-9d88-7a894176bd24", - "promo": { - "headlines": { - "shortHeadline": "Imiliyoni z'abanyamerika zigiye kwivuza bigoranye kuva mu 2018", - "headline": "Imiliyoni z'abanyamerika zigiye kwivuza bigoranye kuva mu 2018" - }, - "locators": { - "assetUri": "/gahuza/amakuru-23108773", - "curieCpsUrn": "urn:bbc:cps:curie:asset:358696fc-4a4f-c84d-9d88-7a894176bd24", - "assetId": "23108773", - "cpsUrn": "urn:bbc:content:assetUri:gahuza/amakuru-23108773", - "curie": "http://www.bbc.co.uk/asset/358696fc-4a4f-c84d-9d88-7a894176bd24" - }, - "summary": "Abantu baharugwa ku miliyoni 14 bagiye guhagarikwa kwivuza ku buryo bworoshe bakoresha \"assurance\" kuva mu 2018 igihe itegeko ry'aba républicains ku bijanye n'amagara rizoba ritanguye kuja mu ngiro.", - "timestamp": 1489659310000, - "language": "rw", - "passport": { - "home": "http://www.bbc.co.uk/ontologies/passport/home/Gahuza", - "taggings": [] - }, - "media": { - "id": "23108775", - "subType": "primary", - "format": "audio", - "externalId": "p018xz0r", - "entityType": "Clip", - "caption": "gghhjjjjjjjjjjjj", - "statusCode": 410, - "statusMessage": "Asset could not be found. Perhaps it was withdrawn.", - "type": "external_vpid" - }, - "indexImage": { - "id": "63531145", - "subType": "index", - "href": "http://b.files.bbci.co.uk/D361/test/_63531145_p018xz27.jpg", - "path": "/cpsdevpb/D361/test/_63531145_p018xz27.jpg", - "height": 549, - "width": 976, - "altText": "mmmjjh", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:gahuza/amakuru-23108773", - "type": "cps" - } - }, - { - "id": "f048fae5-cf3f-3641-a243-9e426ca2c367", - "rank": 12, - "count": 2807, - "urn": "urn:bbc:curie:asset:f048fae5-cf3f-3641-a243-9e426ca2c367", - "promo": { - "headlines": { - "shortHeadline": "A new audio piece for Gahuza, via OMP update", - "headline": "Short synopsis for a BBC Gahuza audio, uploaded via OMP updated" - }, - "locators": { - "assetUri": "/gahuza/imikino-23026243", - "curieCpsUrn": "urn:bbc:cps:curie:asset:f048fae5-cf3f-3641-a243-9e426ca2c367", - "assetId": "23026243", - "cpsUrn": "urn:bbc:content:assetUri:gahuza/imikino-23026243", - "curie": "http://www.bbc.co.uk/asset/f048fae5-cf3f-3641-a243-9e426ca2c367" - }, - "summary": "Ariko rero kubona yari umuhanga ntabwo byatumye abona imfashanyo yari akeneye kugirango agere kure.", - "timestamp": 1456930298000, - "language": "rw", - "passport": { - "home": "http://www.bbc.co.uk/ontologies/passport/home/Gahuza", - "taggings": [] - }, - "media": { - "id": "23026244", - "subType": "primary", - "format": "audio", - "externalId": "p010h9p2", - "entityType": "Clip", - "caption": "Short synopsis for a BBC Gahuza audio, uploaded via OMP", - "statusCode": 404, - "statusMessage": "Asset could not be found. Perhaps it was withdrawn.", - "type": "external_vpid" - }, - "indexImage": { - "id": "63475932", - "subType": "index", - "href": "http://b.files.bbci.co.uk/5D95/test/_63475932_p010h9pc.jpg", - "path": "/cpsdevpb/5D95/test/_63475932_p010h9pc.jpg", - "height": 576, - "width": 1024, - "altText": "BBC gahuza audio", - "caption": "BBC gahuza audio", - "copyrightHolder": "EPA", - "type": "image" - }, - "id": "urn:bbc:ares::asset:gahuza/imikino-23026243", - "type": "cps" - } - }, - { - "id": "b7ea801b-e8e9-1940-8d14-0b0e373a8eae", - "rank": 13, - "count": 668, - "urn": "urn:bbc:curie:asset:b7ea801b-e8e9-1940-8d14-0b0e373a8eae", - "promo": { - "headlines": { - "shortHeadline": "Ethiopia humiliated by Ghanaian counterparts", - "headline": "Ethiopia humiliated by Ghanaian counterparts" - }, - "locators": { - "assetUri": "/amharic/23132860", - "curieCpsUrn": "urn:bbc:cps:curie:asset:b7ea801b-e8e9-1940-8d14-0b0e373a8eae", - "assetId": "23132860", - "cpsUrn": "urn:bbc:content:assetUri:amharic/23132860", - "curie": "http://www.bbc.co.uk/asset/b7ea801b-e8e9-1940-8d14-0b0e373a8eae" - }, - "summary": "Ethiopia loses 5-0 with tough Ghana", - "timestamp": 1497442127000, - "language": "am", - "passport": { - "home": "http://www.bbc.co.uk/ontologies/passport/home/Amharic", - "taggings": [] - }, - "media": { - "id": "p01b7w2r", - "subType": "clip", - "format": "audio", - "title": "पुणे सुपरजायंट्स आयपीएलच्या अंतिम फेरीत!", - "synopses": { - "short": "मुंबई इंडियन्सला आता दुसऱ्या क्वॉलिफायर लढतीत खेळावे लागणार आहे." - }, - "imageUrl": "ichef.test.bbci.co.uk/images/ic/$recipe/p01b7w9z.jpg", - "embedding": false, - "advertising": true, - "caption": "Pele celebrate", - "versions": [ - { - "versionId": "p01b7w2z", - "types": [ - "Original" - ], - "duration": 16, - "durationISO8601": "PT16S", - "warnings": {}, - "availableTerritories": { - "uk": true, - "nonUk": true - }, - "availableFrom": 1495467503000 - } - ], - "smpKind": "radioProgramme", - "type": "media" - }, - "indexImage": { - "id": "63542516", - "subType": "index", - "href": "http://b.files.bbci.co.uk/F054/test/_63542516_p01b7w9z.jpg", - "path": "/cpsdevpb/F054/test/_63542516_p01b7w9z.jpg", - "height": 576, - "width": 1024, - "altText": "सेहवागनं 'असा' पाहिला मुंबई-पुणे सामना", - "copyrightHolder": "Getty Images", - "type": "image" - }, - "id": "urn:bbc:ares::asset:amharic/23132860", - "type": "cps" - } - } - ] - } + "mostRead": null } }, "contentType": "application/json; charset=utf-8" diff --git a/data/persian/cpsAssets/iran-23231114.json b/data/persian/cpsAssets/iran-23231114.json index c249b1771a5..e2226ca1ea5 100644 --- a/data/persian/cpsAssets/iran-23231114.json +++ b/data/persian/cpsAssets/iran-23231114.json @@ -191,2045 +191,7 @@ "secondaryData": { "topStories": null, "features": null, - "mostRead": null, - "mostWatched": { - "generated": "2023-06-22T06:32:45.198Z", - "lastRecordTimeStamp": "2023-06-22T06:30:00Z", - "firstRecordTimeStamp": "2023-06-22T04:30:00Z", - "totalRecords": 20, - "records": [ - { - "id": "77968e34-ca62-c144-ac62-6b5920857eaf", - "rank": 1, - "count": 479, - "urn": "urn:bbc:curie:asset:77968e34-ca62-c144-ac62-6b5920857eaf", - "promo": { - "headlines": { - "shortHeadline": "تلویزیون فارسی بی‌بی‌سی: پخش زنده اینترنتی", - "headline": "تلویزیون فارسی بی‌بی‌سی: پخش زنده اینترنتی" - }, - "locators": { - "assetUri": "/persian/media-49522521", - "cpsUrn": "urn:bbc:content:assetUri:persian/media-49522521", - "curie": "http://www.bbc.co.uk/asset/77968e34-ca62-c144-ac62-6b5920857eaf", - "assetId": "49522521" - }, - "summary": "تلویزیون فارسی بی‌بی‌سی: پخش زنده اینترنتی", - "timestamp": 1567153433000, - "language": "fa", - "media": { - "id": "108540165", - "subType": "primary", - "format": "video", - "externalId": "bbc_persian_tv", - "duration": "PT0S", - "caption": "", - "image": { - "id": "108540165", - "subType": "thumbnail", - "href": "http://c.files.bbci.co.uk/15DFF/production/_116499598_persian_16_9_updated.png", - "path": "/cpsprodpb/15DFF/production/_116499598_persian_16_9_updated.png", - "height": 1080, - "width": 1921, - "altText": "بخش فارسی بی بی سی", - "copyrightHolder": "(C) British Broadcasting Corporation", - "type": "image" - }, - "embedding": false, - "available": true, - "live": true, - "type": "version" - }, - "indexImage": { - "id": "116499600", - "subType": "index", - "href": "http://c.files.bbci.co.uk/02BB/production/_116499600_persian_16_9_updated.png", - "path": "/cpsprodpb/02BB/production/_116499600_persian_16_9_updated.png", - "height": 1081, - "width": 1921, - "altText": "بخش فارس", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:persian/media-49522521", - "type": "cps" - } - }, - { - "id": "a513ec0e-3183-11e6-9d2c-71af3db9bd6e", - "rank": 2, - "count": 21, - "urn": "urn:bbc:curie:asset:a513ec0e-3183-11e6-9d2c-71af3db9bd6e", - "promo": { - "headlines": { - "shortHeadline": "افتتاح رستوران برهنه ها در لندن", - "headline": "افتتاح رستوران برهنه ها در لندن" - }, - "locators": { - "assetUri": "/persian/world/2016/06/160613_om_naked_dining", - "cpsUrn": "urn:bbc:content:assetUri:persian/world/2016/06/160613_om_naked_dining", - "curie": "http://www.bbc.co.uk/asset/a513ec0e-3183-11e6-9d2c-71af3db9bd6e", - "assetId": "44215375" - }, - "summary": "در لندن رستوران جدیدی افتتاح شده که در آن گوشت خام سرو می شود و مشتری هایش هم لخت سر غذا می نشینند.", - "timestamp": 1465835242000, - "language": "fa", - "media": { - "id": "44215375", - "subType": "primary", - "format": "video", - "image": { - "id": "44215375", - "subType": "thumbnail", - "href": "http://a.files.bbci.co.uk/worldservice/live/assets/images/2016/06/13/160613162531_om_naked_dining_640x360_bbc_nocredit.jpg", - "path": "/amz/worldservice/live/assets/images/2016/06/13/160613162531_om_naked_dining_640x360_bbc_nocredit.jpg", - "height": 360, - "width": 640, - "altText": "", - "copyrightHolder": "", - "type": "image" - }, - "aspectRatio": "16:9", - "live": false, - "href": "http://www.bbc.co.uk/persian/meta/dps/2016/06/emp/160613_om_naked_dining.emp.xml", - "playlist": [ - { - "format": "mp4", - "bitrate": "168000", - "url": "https://wsodprogrf.akamaized.net/persian/dps/2016/06/world~fom_nak~f1706~f13~f6_16x9_lo.mp4" - }, - { - "format": "mp4", - "bitrate": "320000", - "url": "https://wsodprogrf.akamaized.net/persian/dps/2016/06/world~fom_nak~f1706~f13~f6_16x9_med.mp4" - }, - { - "format": "mp4", - "bitrate": "904000", - "url": "https://wsodprogrf.akamaized.net/persian/dps/2016/06/world~fom_nak~f1706~f13~f6_16x9_hi.mp4" - } - ], - "type": "legacyMedia" - }, - "indexImage": { - "id": "d5e285", - "subType": "index", - "href": "http://a.files.bbci.co.uk/worldservice/live/assets/images/2016/06/13/160613162531_om_naked_dining_640x360_bbc_nocredit.jpg", - "path": "/amz/worldservice/live/assets/images/2016/06/13/160613162531_om_naked_dining_640x360_bbc_nocredit.jpg", - "height": 360, - "width": 640, - "altText": "", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:persian/world/2016/06/160613_om_naked_dining", - "type": "cps" - } - }, - { - "id": "3787f90b-b91e-5442-a8fc-16f1d56fded8", - "rank": 3, - "count": 12, - "urn": "urn:bbc:curie:asset:3787f90b-b91e-5442-a8fc-16f1d56fded8", - "promo": { - "headlines": { - "shortHeadline": "اولین رابطه جنسی", - "headline": "اولین رابطه جنسی" - }, - "locators": { - "assetUri": "/persian/tv-and-radio-40511619", - "cpsUrn": "urn:bbc:content:assetUri:persian/tv-and-radio-40511619", - "curie": "http://www.bbc.co.uk/asset/3787f90b-b91e-5442-a8fc-16f1d56fded8", - "assetId": "40511619" - }, - "summary": "اين مقوله بحثي است بسيار حساسيت برانگيز. متخصصان امورمذهبي، سياسي، سلامت و اجتماعي هركدام از يك زاويه خاص به اين امر نگاه مي‌كنند", - "timestamp": 1499426197000, - "language": "fa", - "media": { - "id": "p057tz28", - "subType": "clip", - "format": "video", - "title": "اولین رابطه جنسی", - "synopses": { - "short": "اولین رابطه جنسی", - "medium": "اولین رابطه جنسی", - "long": "اولین رابطه جنسی" - }, - "imageUrl": "ichef.bbci.co.uk/images/ic/$recipe/p057tzs6.jpg", - "embedding": false, - "advertising": true, - "caption": "اولین رابطه جنسی", - "versions": [ - { - "versionId": "p057tz2d", - "types": [ - "Original" - ], - "duration": 385, - "durationISO8601": "PT6M25S", - "warnings": {}, - "availableTerritories": { - "uk": true, - "nonUk": true - }, - "availableFrom": 1499267500000 - } - ], - "smpKind": "programme", - "type": "media" - }, - "indexImage": { - "id": "96816879", - "subType": "index", - "href": "http://c.files.bbci.co.uk/17E45/production/_96816879_p057tzs6.jpg", - "path": "/cpsprodpb/17E45/production/_96816879_p057tzs6.jpg", - "height": 576, - "width": 1024, - "altText": "اولین رابطه جنسی", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:persian/tv-and-radio-40511619", - "type": "cps" - } - }, - { - "id": "29435466-724b-11e7-a786-53853db9bd6e", - "rank": 4, - "count": 7, - "urn": "urn:bbc:curie:asset:29435466-724b-11e7-a786-53853db9bd6e", - "promo": { - "headlines": { - "shortHeadline": "خالق سکس و دختر مجرد در گذشت", - "headline": "خالق سکس و دختر مجرد در گذشت" - }, - "locators": { - "assetUri": "/persian/world/2012/08/120814_l42_vid_helen_brown", - "cpsUrn": "urn:bbc:content:assetUri:persian/world/2012/08/120814_l42_vid_helen_brown", - "curie": "http://www.bbc.co.uk/asset/29435466-724b-11e7-a786-53853db9bd6e", - "assetId": "19296482" - }, - "summary": "خالق سکس و دختر مجرد در گذشت. هلن براون که به تفکرات انقلابی اش در مورد رابطه جنسی زنان مشهور بود، در سن ۹۰ سالگی در نیویورک از دنیا رفت. اما چه شد که خانم براون این همه سر زبان ها افتاد؟", - "timestamp": 1344969808000, - "language": "fa", - "media": { - "id": "19296482", - "subType": "primary", - "format": "video", - "image": { - "id": "19296482", - "subType": "thumbnail", - "href": "http://a.files.bbci.co.uk/worldservice/live/assets/images/2012/08/14/120814174916_helen_brown_640x360_ap_nocredit.jpg", - "path": "/amz/worldservice/live/assets/images/2012/08/14/120814174916_helen_brown_640x360_ap_nocredit.jpg", - "height": 360, - "width": 640, - "altText": "", - "copyrightHolder": "", - "type": "image" - }, - "aspectRatio": "16:9", - "live": false, - "href": "http://www.bbc.co.uk/persian/meta/dps/2012/08/emp/120814_l42_vid_helen_brown.emp.xml", - "playlist": [ - { - "format": "mp4", - "bitrate": "168000", - "url": "https://wsodprogrf.akamaized.net/persian/dps/2012/08/14aug12_helen_brown_16x9_lo.mp4" - }, - { - "format": "mp4", - "bitrate": "320000", - "url": "https://wsodprogrf.akamaized.net/persian/dps/2012/08/14aug12_helen_brown_16x9_med.mp4" - }, - { - "format": "mp4", - "bitrate": "904000", - "url": "https://wsodprogrf.akamaized.net/persian/dps/2012/08/14aug12_helen_brown_16x9_hi.mp4" - } - ], - "type": "legacyMedia" - }, - "indexImage": { - "id": "d7e232", - "subType": "index", - "href": "http://a.files.bbci.co.uk/worldservice/live/assets/images/2012/08/14/120814174916_helen_brown_144x81_ap_nocredit.jpg", - "path": "/amz/worldservice/live/assets/images/2012/08/14/120814174916_helen_brown_144x81_ap_nocredit.jpg", - "height": 81, - "width": 144, - "altText": "", - "copyrightHolder": "AP", - "type": "image" - }, - "id": "urn:bbc:ares::asset:persian/world/2012/08/120814_l42_vid_helen_brown", - "type": "cps" - } - }, - { - "id": "ed0c57ce-e646-8443-bf53-c5d5ac419c9c", - "rank": 5, - "count": 6, - "urn": "urn:bbc:curie:asset:ed0c57ce-e646-8443-bf53-c5d5ac419c9c", - "promo": { - "headlines": { - "shortHeadline": "کشف فسیلهای انسانهای نخستین", - "headline": "کشف فسیلهای انسانهای نخستین" - }, - "locators": { - "assetUri": "/persian/science-39878409", - "cpsUrn": "urn:bbc:content:assetUri:persian/science-39878409", - "curie": "http://www.bbc.co.uk/asset/ed0c57ce-e646-8443-bf53-c5d5ac419c9c", - "assetId": "39878409" - }, - "summary": "یافته‌های تازه از دوران باستان اطلاعات ما را درباره تکامل انسان بیشتر کرده.", - "timestamp": 1494439188000, - "language": "fa", - "passport": { - "category": { - "categoryId": "http://www.bbc.co.uk/ontologies/applicationlogic-news/News", - "categoryName": "News" - }, - "taggings": [] - }, - "media": { - "id": "p052k5y0", - "subType": "clip", - "format": "video", - "title": "کشف فسیلهای انسانهای نخستین", - "synopses": { - "short": "کشف فسیلهای انسانهای نخستین", - "medium": "یافته‌های تازه از دوران باستان اطلاعات ما را درباره تکامل انسان بیشتر کرده.", - "long": "یافته‌های تازه از دوران باستان اطلاعات ما را درباره تکامل انسان بیشتر کرده. فسیلهایی که به تازگی کشف شده‌اند حکایت از آن دارند که انسانهای نخستین با اولین انسانهای متأخر همزیستی داشته‌اند، حدود 230 هزار سال پیش. کارن آلن خبرنگار بی‌بی‌سی از ژوهانسبورگ گزارشی فرستاده که باهم می‌بینیم" - }, - "imageUrl": "ichef.bbci.co.uk/images/ic/$recipe/p052k7fy.jpg", - "embedding": false, - "advertising": true, - "caption": "کشف فسیلهای انسانهای نخستین", - "versions": [ - { - "versionId": "p052k5y2", - "types": [ - "Original" - ], - "duration": 106, - "durationISO8601": "PT1M46S", - "warnings": {}, - "availableTerritories": { - "uk": true, - "nonUk": true - }, - "availableFrom": 1494438542000 - } - ], - "smpKind": "programme", - "type": "media" - }, - "indexImage": { - "id": "96004930", - "subType": "index", - "href": "http://c.files.bbci.co.uk/0F64/production/_96004930_p052k7fy.jpg", - "path": "/cpsprodpb/0F64/production/_96004930_p052k7fy.jpg", - "height": 576, - "width": 1024, - "altText": "کشف فسیلهای انسانهای نخستین", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:persian/science-39878409", - "type": "cps" - } - }, - { - "id": "7837e4be-3674-f54d-8aa3-b7f6217f86d3", - "rank": 6, - "count": 6, - "urn": "urn:bbc:curie:asset:7837e4be-3674-f54d-8aa3-b7f6217f86d3", - "promo": { - "headlines": { - "shortHeadline": "اچ آی وی، ایدز و رابطه جنسی", - "headline": "اچ آی وی، ایدز و رابطه جنسی" - }, - "locators": { - "assetUri": "/persian/tv-and-radio-40508709", - "cpsUrn": "urn:bbc:content:assetUri:persian/tv-and-radio-40508709", - "curie": "http://www.bbc.co.uk/asset/7837e4be-3674-f54d-8aa3-b7f6217f86d3", - "assetId": "40508709" - }, - "summary": "در حال حاضر بیش از ۳۰ هزار نفر بر اساس آمارهای رسمی در ایران مبتلا به اچ آی وی و نوع پیشرفته آن ایدز هستند", - "timestamp": 1499426135000, - "language": "fa", - "media": { - "id": "p057trqz", - "subType": "clip", - "format": "video", - "title": "اچ آی وی، ایدز و رابطه جنسی", - "synopses": { - "short": "اچ آی وی، ایدز و رابطه جنسی", - "medium": "اچ آی وی، ایدز و رابطه جنسی", - "long": "اچ آی وی، ایدز و رابطه جنسی" - }, - "imageUrl": "ichef.bbci.co.uk/images/ic/$recipe/p057trwf.jpg", - "embedding": false, - "advertising": true, - "caption": "اچ آی وی، ایدز و رابطه جنسی", - "versions": [ - { - "versionId": "p057trr1", - "types": [ - "Original" - ], - "duration": 446, - "durationISO8601": "PT7M26S", - "warnings": {}, - "availableTerritories": { - "uk": true, - "nonUk": true - }, - "availableFrom": 1499263822000 - } - ], - "smpKind": "programme", - "type": "media" - }, - "indexImage": { - "id": "96816873", - "subType": "index", - "href": "http://c.files.bbci.co.uk/93E5/production/_96816873_p057trwf.jpg", - "path": "/cpsprodpb/93E5/production/_96816873_p057trwf.jpg", - "height": 576, - "width": 1024, - "altText": "اچ آی وی، ایدز و رابطه جنسی", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:persian/tv-and-radio-40508709", - "type": "cps" - } - }, - { - "id": "c0cab1db-53be-ac46-a33c-5ae949de3553", - "rank": 7, - "count": 5, - "urn": "urn:bbc:curie:asset:c0cab1db-53be-ac46-a33c-5ae949de3553", - "promo": { - "headlines": { - "shortHeadline": "مشارکت زنان معمار افغان در بازسازی کشورشان", - "headline": "مشارکت زنان معمار افغان در بازسازی کشورشان" - }, - "locators": { - "assetUri": "/persian/afghanistan-46461896", - "cpsUrn": "urn:bbc:content:assetUri:persian/afghanistan-46461896", - "curie": "http://www.bbc.co.uk/asset/c0cab1db-53be-ac46-a33c-5ae949de3553", - "assetId": "46461896" - }, - "summary": "در دو سال اخیر بیش از 2400 دختر در رشته‌های مختلف مهندسی از دانشگاه‌های افغانستان فارغ‌التحصیل شدند.", - "timestamp": 1544034854000, - "language": "fa", - "passport": { - "category": { - "categoryId": "http://www.bbc.co.uk/ontologies/applicationlogic-news/News", - "categoryName": "News" - }, - "campaigns": [ - { - "campaignId": "5a988e4739461b000e9dabfc", - "campaignName": "Update me" - } - ], - "taggings": [] - }, - "media": { - "id": "p06trfxv", - "subType": "clip", - "format": "video", - "title": "مشارکت زنان معمار افغان در بازسازی کشورشان", - "synopses": { - "short": "مشارکت زنان معمار افغان در بازسازی کشورشان", - "long": "در دو سال اخیر بیش از 2400 دختر در رشته‌های مختلف مهندسی از دانشگاه‌های افغانستان فارغ‌التحصیل شدند. تعداد دختران دانشجوی معماری، همیشه کمتر از پسران بوده؛ اما در این اواخر دختران فارغ التحصیل این رشته، توانستند در کابل فرصت‌های شغلی مناسبی بدست آورند. نسرین نوا، خبرنگار ما در کابل با شماری از این معماران صحبت کرده", - "medium": "در دو سال اخیر بیش از 2400 دختر در رشته‌های مختلف مهندسی از دانشگاه‌های افغانستان فارغ‌التحصیل شدند." - }, - "imageUrl": "ichef.bbci.co.uk/images/ic/$recipe/p06trgzx.jpg", - "embedding": true, - "advertising": true, - "caption": "مشارکت زنان معمار افغان در بازسازی کشورشان", - "versions": [ - { - "versionId": "p06trfxy", - "types": [ - "Original" - ], - "duration": 188, - "durationISO8601": "PT3M8S", - "warnings": {}, - "availableTerritories": { - "uk": true, - "nonUk": true - }, - "availableFrom": 1544034418000 - } - ], - "imageCopyright": "BBC", - "smpKind": "programme", - "type": "media" - }, - "indexImage": { - "id": "104633411", - "subType": "index", - "href": "http://c.files.bbci.co.uk/2CA9/production/_104633411_p06trgzx.jpg", - "path": "/cpsprodpb/2CA9/production/_104633411_p06trgzx.jpg", - "height": 549, - "width": 976, - "altText": "مشارکت زنان معمار افغان در بازسازی کشورشان", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:persian/afghanistan-46461896", - "type": "cps" - } - }, - { - "id": "a325c42e-7248-11e7-a786-53853db9bd6e", - "rank": 8, - "count": 5, - "urn": "urn:bbc:curie:asset:a325c42e-7248-11e7-a786-53853db9bd6e", - "promo": { - "headlines": { - "shortHeadline": "بارداری بلای جان مادران نوجوان", - "headline": "بارداری بلای جان مادران نوجوان" - }, - "locators": { - "assetUri": "/persian/world/2012/06/120627_l13_teenage_pregnancy_vid", - "cpsUrn": "urn:bbc:content:assetUri:persian/world/2012/06/120627_l13_teenage_pregnancy_vid", - "curie": "http://www.bbc.co.uk/asset/a325c42e-7248-11e7-a786-53853db9bd6e", - "assetId": "18244241" - }, - "summary": "سالانه یک میلیون دختر زیر هجده سال، به دلیل بارداری یا زایمان، می میرند یا آسیب شدید می بینند. ", - "timestamp": 1340822594000, - "language": "fa", - "media": { - "id": "18244241", - "subType": "primary", - "format": "video", - "image": { - "id": "18244241", - "subType": "thumbnail", - "href": "http://a.files.bbci.co.uk/worldservice/live/assets/images/2012/06/14/120614103206_cn_china_pregnancy_640x360_afp.jpg", - "path": "/amz/worldservice/live/assets/images/2012/06/14/120614103206_cn_china_pregnancy_640x360_afp.jpg", - "height": 360, - "width": 640, - "altText": "", - "copyrightHolder": "", - "type": "image" - }, - "aspectRatio": "16:9", - "live": false, - "href": "http://www.bbc.co.uk/persian/meta/dps/2012/06/emp/120627_l13_teenage_pregnancy_vid.emp.xml", - "playlist": [ - { - "format": "mp4", - "bitrate": "168000", - "url": "https://wsodprogrf.akamaized.net/persian/dps/2012/06/pregnancy_teenage_16x9_lo.mp4" - }, - { - "format": "mp4", - "bitrate": "320000", - "url": "https://wsodprogrf.akamaized.net/persian/dps/2012/06/pregnancy_teenage_16x9_med.mp4" - }, - { - "format": "mp4", - "bitrate": "904000", - "url": "https://wsodprogrf.akamaized.net/persian/dps/2012/06/pregnancy_teenage_16x9_hi.mp4" - } - ], - "type": "legacyMedia" - }, - "indexImage": { - "id": "d7e238", - "subType": "index", - "href": "http://a.files.bbci.co.uk/worldservice/live/assets/images/2012/06/14/120614103210_cn_china_pregnancy_144x81_afp_nocredit.jpg", - "path": "/amz/worldservice/live/assets/images/2012/06/14/120614103210_cn_china_pregnancy_144x81_afp_nocredit.jpg", - "height": 81, - "width": 144, - "altText": "", - "copyrightHolder": "AFP", - "type": "image" - }, - "id": "urn:bbc:ares::asset:persian/world/2012/06/120627_l13_teenage_pregnancy_vid", - "type": "cps" - } - }, - { - "id": "6453ebc5-6d67-442d-b7fc-a481bda7ac8a", - "rank": 9, - "count": 5, - "urn": "urn:bbc:curie:asset:6453ebc5-6d67-442d-b7fc-a481bda7ac8a", - "promo": { - "headlines": { - "shortHeadline": "ببینید؛ خروج آب از سد آسیب دیده اوکراین", - "headline": "ببینید؛ خروج آب از سد آسیب دیده اوکراین" - }, - "locators": { - "assetUri": "/persian/world-65821421", - "curieCpsUrn": "urn:bbc:cps:curie:asset:6453ebc5-6d67-442d-b7fc-a481bda7ac8a", - "assetId": "65821421", - "cpsUrn": "urn:bbc:content:assetUri:persian/world-65821421", - "curie": "http://www.bbc.co.uk/asset/6453ebc5-6d67-442d-b7fc-a481bda7ac8a" - }, - "summary": "ولودیمیر زلنسکی،‌ رئیس جمهوری اوکراین، ویدیویی از سد خسارت دیده کاخوفکا در نزدیکی شهر خرسون به اشتراک گذاشته است.", - "timestamp": 1686045239000, - "language": "fa", - "passport": { - "category": { - "categoryId": "http://www.bbc.co.uk/ontologies/applicationlogic-news/News", - "categoryName": "News" - }, - "language": "fa", - "home": "http://www.bbc.co.uk/ontologies/passport/home/Persian", - "locator": "urn:bbc:cps:curie:asset:6453ebc5-6d67-442d-b7fc-a481bda7ac8a", - "availability": "AVAILABLE", - "taggings": [ - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/ee8750ed-a7fb-453f-bfca-2aa8b3fb064c#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/primaryMediaType", - "value": "http://www.bbc.co.uk/things/ffc98bca-8cff-4ee6-9beb-a6ff6ef3ef9f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/39267b85-1784-4f4b-80ed-f8cb4a35f337#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/contributor", - "value": "http://www.bbc.co.uk/things/093fff0e-e9bb-4d78-9e0b-7920c6357368#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/mentions", - "value": "http://www.bbc.co.uk/things/ee8750ed-a7fb-453f-bfca-2aa8b3fb064c#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/assetType", - "value": "http://www.bbc.co.uk/things/22ea958e-2004-4f34-80a7-bf5acad52f6f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/format", - "value": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id" - } - ], - "schemaVersion": "1.4.0", - "publishedState": "PUBLISHED", - "predicates": { - "contributor": [ - { - "value": "http://www.bbc.co.uk/things/093fff0e-e9bb-4d78-9e0b-7920c6357368#id", - "type": "contributor" - } - ], - "assetType": [ - { - "value": "http://www.bbc.co.uk/things/22ea958e-2004-4f34-80a7-bf5acad52f6f#id", - "type": "assetType" - } - ], - "primaryMediaType": [ - { - "value": "http://www.bbc.co.uk/things/ffc98bca-8cff-4ee6-9beb-a6ff6ef3ef9f#id", - "type": "primaryMediaType" - } - ], - "formats": [ - { - "value": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id", - "thingLabel": "News report", - "thingUri": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id", - "thingId": "46c0517d-9927-4d1a-9954-8c63a3f7a888", - "thingType": [ - "tagging:TagConcept", - "tagging:Format" - ], - "thingSameAs": [], - "thingEnglishLabel": "Report", - "thingPreferredLabel": "Report", - "thingLabelLanguage": "fa", - "type": "formats" - } - ], - "about": [ - { - "value": "http://www.bbc.co.uk/things/39267b85-1784-4f4b-80ed-f8cb4a35f337#id", - "thingLabel": "روسیه", - "thingUri": "http://www.bbc.co.uk/things/39267b85-1784-4f4b-80ed-f8cb4a35f337#id", - "thingId": "39267b85-1784-4f4b-80ed-f8cb4a35f337", - "thingType": [ - "core:Place", - "tagging:TagConcept", - "core:Thing" - ], - "thingSameAs": [ - "http://sws.geonames.org/2017370/" - ], - "thingEnglishLabel": "Russia", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/ee8750ed-a7fb-453f-bfca-2aa8b3fb064c#id", - "thingLabel": "اوکراین", - "thingUri": "http://www.bbc.co.uk/things/ee8750ed-a7fb-453f-bfca-2aa8b3fb064c#id", - "thingId": "ee8750ed-a7fb-453f-bfca-2aa8b3fb064c", - "thingType": [ - "tagging:TagConcept", - "core:Thing", - "core:Place" - ], - "thingSameAs": [ - "http://dbpedia.org/resource/Ukraine", - "http://www.wikidata.org/entity/Q212", - "http://sws.geonames.org/690791/" - ], - "thingEnglishLabel": "Ukraine", - "type": "about" - } - ] - } - }, - "media": { - "id": "p0fsj2lf", - "subType": "clip", - "format": "video", - "title": "Watch: Water gushes through damaged Ukraine dam", - "synopses": { - "short": "Watch: Water gushes through damaged Ukraine dam", - "long": "Ukraine's military has accused Russian forces of blowing up a major dam in the Moscow-seized region of Kherson in the south of the country.\nPresident Zelensky shared a video of the damaged Kakhovka dam on his Telegram page.", - "medium": "President Zelensky shared a video of the Kakhovka dam, in Kherson region, on his Telegram page." - }, - "imageUrl": "ichef.bbci.co.uk/images/ic/$recipe/p0fsk6qs.jpg", - "embedding": true, - "advertising": true, - "caption": "رئیس جمهوری اوکراین ویدیویی از سد خسارت دیده کاخوفکا در نزدیکی شهر خرسون به اشتراک گذاشته است.", - "versions": [ - { - "versionId": "p0fsk4g4", - "types": [ - "Editorial" - ], - "duration": 92, - "durationISO8601": "PT1M32S", - "warnings": {}, - "availableTerritories": { - "uk": true, - "nonUk": true - }, - "availableFrom": 1686032449000 - } - ], - "imageCopyright": "Telegram", - "smpKind": "programme", - "type": "media" - }, - "indexImage": { - "id": "130003707", - "subType": "index", - "href": "http://c.files.bbci.co.uk/1144A/production/_130003707_ukraine_dam_2.jpg", - "path": "/cpsprodpb/1144A/production/_130003707_ukraine_dam_2.jpg", - "height": 549, - "width": 976, - "altText": "Water gushes through damaged dam", - "copyrightHolder": "Telegram", - "allowSyndication": false, - "type": "image" - }, - "id": "urn:bbc:ares::asset:persian/world-65821421", - "type": "cps" - } - }, - { - "id": "91903af0-21c1-4836-8d85-c0cee2fe8144", - "rank": 10, - "count": 4, - "urn": "urn:bbc:curie:asset:91903af0-21c1-4836-8d85-c0cee2fe8144", - "promo": { - "headlines": { - "shortHeadline": "ببینید: آتش‌سوزی در یک کشتی تفریحی در فیلیپین", - "headline": "ببینید: آتش‌سوزی در یک کشتی تفریحی در فیلیپین" - }, - "locators": { - "assetUri": "/persian/world-65943276", - "curieCpsUrn": "urn:bbc:cps:curie:asset:91903af0-21c1-4836-8d85-c0cee2fe8144", - "assetId": "65943276", - "cpsUrn": "urn:bbc:content:assetUri:persian/world-65943276", - "curie": "http://www.bbc.co.uk/asset/91903af0-21c1-4836-8d85-c0cee2fe8144" - }, - "summary": "گارد ساحلی فیلیپین از ماشین آبپاش برای خاموش کردن آتش‌سوزی که در یک کشتی تحریحی رخ داده بود استفاده کرد.", - "timestamp": 1687078618000, - "language": "fa", - "passport": { - "category": { - "categoryId": "http://www.bbc.co.uk/ontologies/applicationlogic-news/News", - "categoryName": "News" - }, - "campaigns": [ - { - "campaignId": "5a988e4739461b000e9dabfc", - "campaignName": "WS - Update me" - } - ], - "language": "fa", - "home": "http://www.bbc.co.uk/ontologies/passport/home/Persian", - "locator": "urn:bbc:cps:curie:asset:91903af0-21c1-4836-8d85-c0cee2fe8144", - "availability": "AVAILABLE", - "taggings": [ - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/contributor", - "value": "http://www.bbc.co.uk/things/093fff0e-e9bb-4d78-9e0b-7920c6357368#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/ba90754a-9033-4e9c-990b-d1139e5070a3#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/audience/motivation", - "value": "http://www.bbc.co.uk/things/bf928ac3-b3bd-4d47-924e-cca1bdc29174#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/primaryMediaType", - "value": "http://www.bbc.co.uk/things/ffc98bca-8cff-4ee6-9beb-a6ff6ef3ef9f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/assetType", - "value": "http://www.bbc.co.uk/things/22ea958e-2004-4f34-80a7-bf5acad52f6f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/format", - "value": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id" - } - ], - "schemaVersion": "1.4.0", - "publishedState": "PUBLISHED", - "predicates": { - "contributor": [ - { - "value": "http://www.bbc.co.uk/things/093fff0e-e9bb-4d78-9e0b-7920c6357368#id", - "type": "contributor" - } - ], - "assetType": [ - { - "value": "http://www.bbc.co.uk/things/22ea958e-2004-4f34-80a7-bf5acad52f6f#id", - "type": "assetType" - } - ], - "primaryMediaType": [ - { - "value": "http://www.bbc.co.uk/things/ffc98bca-8cff-4ee6-9beb-a6ff6ef3ef9f#id", - "type": "primaryMediaType" - } - ], - "motivation": [], - "formats": [ - { - "value": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id", - "thingLabel": "News report", - "thingUri": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id", - "thingId": "46c0517d-9927-4d1a-9954-8c63a3f7a888", - "thingType": [ - "tagging:TagConcept", - "tagging:Format" - ], - "thingSameAs": [], - "thingEnglishLabel": "Report", - "thingPreferredLabel": "Report", - "thingLabelLanguage": "fa", - "type": "formats" - } - ], - "about": [ - { - "value": "http://www.bbc.co.uk/things/ba90754a-9033-4e9c-990b-d1139e5070a3#id", - "thingLabel": "آسیا", - "thingUri": "http://www.bbc.co.uk/things/ba90754a-9033-4e9c-990b-d1139e5070a3#id", - "thingId": "ba90754a-9033-4e9c-990b-d1139e5070a3", - "thingType": [ - "core:Place", - "core:Thing", - "tagging:TagConcept" - ], - "thingSameAs": [ - "http://www.wikidata.org/entity/Q48", - "http://dbpedia.org/resource/Asia" - ], - "thingEnglishLabel": "Asia", - "type": "about" - } - ] - } - }, - "media": { - "id": "p0fvwcj1", - "subType": "clip", - "format": "video", - "title": "Watch: Huge fire breaks out on Philippines ferry", - "synopses": { - "short": "Philippines passenger ship catches fire at sea", - "long": "The Philippine Coast Guard has used a water cannon to extinguish a fire that broke out on a passenger ferry.\n\nThe Esperanza Star was travelling between provinces when the blaze started off the island of Bohol. \n\nOfficials said all 120 passengers and crew on board have been accounted for and no casualties were reported.\n\nThe cause of the incident is still being investigated.", - "medium": "All passengers and crew on board have been accounted for and no casualties were reported." - }, - "imageUrl": "ichef.bbci.co.uk/images/ic/$recipe/p0fvwdf1.jpg", - "embedding": true, - "advertising": true, - "caption": "ببینید: آتش‌سوزی در یک کشتی تفریحی در فیلیپین", - "versions": [ - { - "versionId": "p0fvwcj9", - "types": [ - "Original" - ], - "duration": 49, - "durationISO8601": "PT49S", - "warnings": {}, - "availableTerritories": { - "uk": true, - "nonUk": true - }, - "availableFrom": 1687072722000 - } - ], - "imageCopyright": "Philippine Coast Guard handout", - "smpKind": "programme", - "type": "media" - }, - "indexImage": { - "id": "130123837", - "subType": "index", - "href": "http://c.files.bbci.co.uk/12068/production/_130123837_p0fvwdf1.jpg", - "path": "/cpsprodpb/12068/production/_130123837_p0fvwdf1.jpg", - "height": 549, - "width": 976, - "altText": "آتش‌سوزی که در یک کشتی تفریحی", - "copyrightHolder": "Philippine Coast Guard handout", - "allowSyndication": false, - "type": "image" - }, - "id": "urn:bbc:ares::asset:persian/world-65943276", - "type": "cps" - } - }, - { - "id": "0350376c-c96c-4885-b47a-9802e21b77c2", - "rank": 11, - "count": 4, - "urn": "urn:bbc:curie:asset:0350376c-c96c-4885-b47a-9802e21b77c2", - "promo": { - "headlines": { - "shortHeadline": "تصاویر جدید از لحظه نجات چهار کودک سانحه هوایی در آمازون کلمبیا", - "headline": "تصاویر جدید از لحظه نجات چهار کودک سانحه هوایی در آمازون کلمبیا" - }, - "locators": { - "assetUri": "/persian/tv-and-radio-65899454", - "curieCpsUrn": "urn:bbc:cps:curie:asset:0350376c-c96c-4885-b47a-9802e21b77c2", - "assetId": "65899454", - "cpsUrn": "urn:bbc:content:assetUri:persian/tv-and-radio-65899454", - "curie": "http://www.bbc.co.uk/asset/0350376c-c96c-4885-b47a-9802e21b77c2" - }, - "summary": "تصاویر جدیدی از لحظه نجات چهار کودکی منتشر شده که پس از سقوط هواپیما برای ۴۰ روز در جنگل‌های آمازون داخل کلمبیا توانستند زنده بمانند.", - "timestamp": 1686695718000, - "language": "fa", - "passport": { - "category": { - "categoryId": "http://www.bbc.co.uk/ontologies/applicationlogic-news/News", - "categoryName": "News" - }, - "language": "fa", - "home": "http://www.bbc.co.uk/ontologies/passport/home/Persian", - "locator": "urn:bbc:cps:curie:asset:0350376c-c96c-4885-b47a-9802e21b77c2", - "availability": "AVAILABLE", - "taggings": [ - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/primaryMediaType", - "value": "http://www.bbc.co.uk/things/ffc98bca-8cff-4ee6-9beb-a6ff6ef3ef9f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/e0d04166-b92f-468e-9e68-d5f9330e6ae7#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/contributor", - "value": "http://www.bbc.co.uk/things/093fff0e-e9bb-4d78-9e0b-7920c6357368#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/8ce9d18a-8023-49bb-b29a-263376b81198#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/assetType", - "value": "http://www.bbc.co.uk/things/22ea958e-2004-4f34-80a7-bf5acad52f6f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/format", - "value": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id" - } - ], - "schemaVersion": "1.4.0", - "publishedState": "PUBLISHED", - "predicates": { - "contributor": [ - { - "value": "http://www.bbc.co.uk/things/093fff0e-e9bb-4d78-9e0b-7920c6357368#id", - "type": "contributor" - } - ], - "assetType": [ - { - "value": "http://www.bbc.co.uk/things/22ea958e-2004-4f34-80a7-bf5acad52f6f#id", - "type": "assetType" - } - ], - "primaryMediaType": [ - { - "value": "http://www.bbc.co.uk/things/ffc98bca-8cff-4ee6-9beb-a6ff6ef3ef9f#id", - "type": "primaryMediaType" - } - ], - "formats": [ - { - "value": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id", - "thingLabel": "News report", - "thingUri": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id", - "thingId": "46c0517d-9927-4d1a-9954-8c63a3f7a888", - "thingType": [ - "tagging:TagConcept", - "tagging:Format" - ], - "thingSameAs": [], - "thingEnglishLabel": "Report", - "thingPreferredLabel": "Report", - "thingLabelLanguage": "fa", - "type": "formats" - } - ], - "about": [ - { - "value": "http://www.bbc.co.uk/things/8ce9d18a-8023-49bb-b29a-263376b81198#id", - "thingLabel": "سفر هوایی", - "thingUri": "http://www.bbc.co.uk/things/8ce9d18a-8023-49bb-b29a-263376b81198#id", - "thingId": "8ce9d18a-8023-49bb-b29a-263376b81198", - "thingType": [ - "tagging:TagConcept", - "core:Thing", - "core:Theme" - ], - "thingSameAs": [ - "http://dbpedia.org/resource/Aviation", - "http://www.wikidata.org/entity/Q765633" - ], - "thingEnglishLabel": "Air travel", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/e0d04166-b92f-468e-9e68-d5f9330e6ae7#id", - "thingLabel": "آمریکای جنوبی", - "thingUri": "http://www.bbc.co.uk/things/e0d04166-b92f-468e-9e68-d5f9330e6ae7#id", - "thingId": "e0d04166-b92f-468e-9e68-d5f9330e6ae7", - "thingType": [ - "core:Place", - "tagging:TagConcept", - "core:Thing" - ], - "thingSameAs": [ - "http://www.wikidata.org/entity/Q12585", - "http://dbpedia.org/resource/Latin_America" - ], - "thingEnglishLabel": "Latin America", - "type": "about" - } - ] - } - }, - "media": { - "id": "p0ftvwk6", - "subType": "clip", - "format": "video", - "title": "New video shows plane crash children found in jungle", - "synopses": { - "short": "Colombia plane crash: New video shows lost children found in Amazon", - "long": "Newly released video shows the first moments four lost children were found alive after surviving a plane crash. \n\nThey had spent weeks fending for themselves in the Amazon jungle in Colombia.\n\nTwo pilots and the children's mother and were killed when their light aircraft crashed on 1 May. \n\nThe siblings, aged 13, nine, five, and one, weren't found until 9 June and were rescued and airlifted out of the jungle. They were then moved to a military hospital in Colombia's capital, Bogota. \n\nRead more about the story here.", - "medium": "Newly released footage shows the men tending to the children after they spent 40 days in the Amazon." - }, - "imageUrl": "ichef.bbci.co.uk/images/ic/$recipe/p0ftwwpr.jpg", - "embedding": true, - "advertising": true, - "caption": "رئیس‌جمهور کلمبیا روز پیدا شدن این کودکان را «روز جادویی» خوانده", - "versions": [ - { - "versionId": "p0ftvwkb", - "types": [ - "Original" - ], - "duration": 34, - "durationISO8601": "PT34S", - "warnings": {}, - "availableTerritories": { - "uk": true, - "nonUk": true - }, - "availableFrom": 1686653062000 - } - ], - "imageCopyright": "Resguardo Indigena Jiri-Jiri", - "smpKind": "programme", - "type": "media" - }, - "indexImage": { - "id": "130076498", - "subType": "index", - "href": "http://c.files.bbci.co.uk/15D7B/production/_130076498_p0ftwwpr.jpg", - "path": "/cpsprodpb/15D7B/production/_130076498_p0ftwwpr.jpg", - "height": 576, - "width": 1024, - "altText": "Man holding young child in his arms in the middle of the jungle", - "copyrightHolder": "Resguardo Indigena Jiri-Jiri", - "allowSyndication": false, - "type": "image" - }, - "id": "urn:bbc:ares::asset:persian/tv-and-radio-65899454", - "type": "cps" - } - }, - { - "id": "f298819c-199d-11e4-9c73-95b33db9bd6e", - "rank": 12, - "count": 3, - "urn": "urn:bbc:curie:asset:f298819c-199d-11e4-9c73-95b33db9bd6e", - "promo": { - "headlines": { - "shortHeadline": "اولین تماس با قبیله‌ای ناشناخته در قلب جنگل‌های آمازون", - "headline": "اولین تماس با قبیله‌ای ناشناخته در قلب جنگل‌های آمازون" - }, - "locators": { - "assetUri": "/persian/science/2014/08/140801_l93_amazon_tribe", - "cpsUrn": "urn:bbc:content:assetUri:persian/science/2014/08/140801_l93_amazon_tribe", - "curie": "http://www.bbc.co.uk/asset/f298819c-199d-11e4-9c73-95b33db9bd6e" - }, - "summary": "در برزیل، در قلب جنگلهای آمازون اعضای یک قبیله برای اولین بار با دنیای خارج تماس پیدا کرده اند. در حاشیه رودخانه انویرا نزدیک مرز پرو آنها با جمعی از بومیان محلی برخورد کردند.", - "timestamp": 1406912699000, - "language": "fa", - "media": { - "id": "33754670", - "subType": "primary", - "format": "video", - "image": { - "id": "33754670", - "subType": "thumbnail", - "href": "http://a.files.bbci.co.uk/worldservice/live/assets/images/2014/08/01/140801165310_tribe_640x360_bbc_nocredit.jpg", - "path": "/amz/worldservice/live/assets/images/2014/08/01/140801165310_tribe_640x360_bbc_nocredit.jpg", - "height": 360, - "width": 640, - "altText": "", - "copyrightHolder": "", - "type": "image" - }, - "aspectRatio": "16:9", - "live": false, - "href": "http://www.bbc.co.uk/persian/meta/dps/2014/08/emp/140801_l93_amazon_tribe.emp.xml", - "playlist": [ - { - "format": "mp4", - "bitrate": "168000", - "url": "https://wsodprogrf.akamaized.net/persian/dps/2014/08/amazon_qabileh_16x9_lo.mp4" - }, - { - "format": "mp4", - "bitrate": "320000", - "url": "https://wsodprogrf.akamaized.net/persian/dps/2014/08/amazon_qabileh_16x9_med.mp4" - }, - { - "format": "mp4", - "bitrate": "904000", - "url": "https://wsodprogrf.akamaized.net/persian/dps/2014/08/amazon_qabileh_16x9_hi.mp4" - } - ], - "type": "legacyMedia" - }, - "indexImage": { - "id": "d5e218", - "subType": "index", - "href": "http://a.files.bbci.co.uk/worldservice/live/assets/images/2014/08/01/140801165310_tribe_112x63_bbc_nocredit.jpg", - "path": "/amz/worldservice/live/assets/images/2014/08/01/140801165310_tribe_112x63_bbc_nocredit.jpg", - "height": 63, - "width": 112, - "altText": "", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:persian/science/2014/08/140801_l93_amazon_tribe", - "type": "cps" - } - }, - { - "id": "de65b5be-f373-4b56-9088-50b152e742db", - "rank": 13, - "count": 3, - "urn": "urn:bbc:curie:asset:de65b5be-f373-4b56-9088-50b152e742db", - "promo": { - "headlines": { - "shortHeadline": "ببینید پلیس چطور خرسی را که در خودرو گیر افتاده بود آزاد کرد", - "headline": "ببینید پلیس چطور خرسی را که در خودرو گیر افتاده بود آزاد کرد" - }, - "locators": { - "assetUri": "/persian/world-65716401", - "curieCpsUrn": "urn:bbc:cps:curie:asset:de65b5be-f373-4b56-9088-50b152e742db", - "assetId": "65716401", - "cpsUrn": "urn:bbc:content:assetUri:persian/world-65716401", - "curie": "http://www.bbc.co.uk/asset/de65b5be-f373-4b56-9088-50b152e742db" - }, - "summary": "برای عملیات دقت زیاد و یک طناب لازم بود تا از فاصله دور در ماشین باز شود.", - "timestamp": 1685437257000, - "language": "fa", - "passport": { - "category": { - "categoryId": "http://www.bbc.co.uk/ontologies/applicationlogic-news/News", - "categoryName": "News" - }, - "campaigns": [ - { - "campaignId": "5a988e3139461b000e9dabf9", - "campaignName": "WS - Divert me" - } - ], - "language": "fa", - "home": "http://www.bbc.co.uk/ontologies/passport/home/Persian", - "locator": "urn:bbc:cps:curie:asset:de65b5be-f373-4b56-9088-50b152e742db", - "availability": "AVAILABLE", - "taggings": [ - { - "predicate": "http://www.bbc.co.uk/ontologies/audience/motivation", - "value": "http://www.bbc.co.uk/things/e1deed1e-0cab-4965-8e92-897b195f7a47#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/assetType", - "value": "http://www.bbc.co.uk/things/22ea958e-2004-4f34-80a7-bf5acad52f6f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/8455721e-3da5-4a1c-a114-180dbc2bbd92#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/14745d1f-885d-4b9f-b28a-24540e7beb15#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/82857f8e-8134-462a-bb32-b7b14f4eab75#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/1c3b60a9-14eb-484b-a750-9f5b1aeaac31#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/contributor", - "value": "http://www.bbc.co.uk/things/093fff0e-e9bb-4d78-9e0b-7920c6357368#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/primaryMediaType", - "value": "http://www.bbc.co.uk/things/ffc98bca-8cff-4ee6-9beb-a6ff6ef3ef9f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/a4e315c5-007c-4b8a-9762-bebd79fb8b6b#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/format", - "value": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id" - } - ], - "schemaVersion": "1.4.0", - "publishedState": "PUBLISHED", - "predicates": { - "contributor": [ - { - "value": "http://www.bbc.co.uk/things/093fff0e-e9bb-4d78-9e0b-7920c6357368#id", - "type": "contributor" - } - ], - "assetType": [ - { - "value": "http://www.bbc.co.uk/things/22ea958e-2004-4f34-80a7-bf5acad52f6f#id", - "type": "assetType" - } - ], - "primaryMediaType": [ - { - "value": "http://www.bbc.co.uk/things/ffc98bca-8cff-4ee6-9beb-a6ff6ef3ef9f#id", - "type": "primaryMediaType" - } - ], - "motivation": [], - "formats": [ - { - "value": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id", - "thingLabel": "News report", - "thingUri": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id", - "thingId": "46c0517d-9927-4d1a-9954-8c63a3f7a888", - "thingType": [ - "tagging:TagConcept", - "tagging:Format" - ], - "thingSameAs": [], - "thingEnglishLabel": "Report", - "thingPreferredLabel": "Report", - "thingLabelLanguage": "fa", - "type": "formats" - } - ], - "about": [ - { - "value": "http://www.bbc.co.uk/things/14745d1f-885d-4b9f-b28a-24540e7beb15#id", - "thingLabel": "حیوانات", - "thingUri": "http://www.bbc.co.uk/things/14745d1f-885d-4b9f-b28a-24540e7beb15#id", - "thingId": "14745d1f-885d-4b9f-b28a-24540e7beb15", - "thingType": [ - "tagging:TagConcept", - "core:Theme", - "core:Thing" - ], - "thingSameAs": [ - "http://www.wikidata.org/entity/Q729", - "http://dbpedia.org/resource/Animal" - ], - "thingEnglishLabel": "Animals", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/1c3b60a9-14eb-484b-a750-9f5b1aeaac31#id", - "thingLabel": "سرگرمی", - "thingUri": "http://www.bbc.co.uk/things/1c3b60a9-14eb-484b-a750-9f5b1aeaac31#id", - "thingId": "1c3b60a9-14eb-484b-a750-9f5b1aeaac31", - "thingType": [ - "core:Theme", - "tagging:Genre", - "tagging:AmbiguousTerm", - "tagging:TagConcept", - "core:Thing" - ], - "thingSameAs": [ - "http://dbpedia.org/resource/Entertainment", - "http://www.wikidata.org/entity/Q173799" - ], - "thingEnglishLabel": "Entertainment", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/82857f8e-8134-462a-bb32-b7b14f4eab75#id", - "thingLabel": "ایالات متحده آمریکا", - "thingUri": "http://www.bbc.co.uk/things/82857f8e-8134-462a-bb32-b7b14f4eab75#id", - "thingId": "82857f8e-8134-462a-bb32-b7b14f4eab75", - "thingType": [ - "tagging:TagConcept", - "core:Place", - "core:Thing" - ], - "thingSameAs": [ - "http://sws.geonames.org/6252001/" - ], - "thingEnglishLabel": "United States", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/8455721e-3da5-4a1c-a114-180dbc2bbd92#id", - "thingLabel": "حقوق حیوانات", - "thingUri": "http://www.bbc.co.uk/things/8455721e-3da5-4a1c-a114-180dbc2bbd92#id", - "thingId": "8455721e-3da5-4a1c-a114-180dbc2bbd92", - "thingType": [ - "core:Theme", - "tagging:TagConcept", - "core:Thing" - ], - "thingSameAs": [ - "http://dbpedia.org/resource/Animal_rights", - "http://www.wikidata.org/entity/Q426" - ], - "thingEnglishLabel": "Animal rights", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/a4e315c5-007c-4b8a-9762-bebd79fb8b6b#id", - "thingLabel": "رفاه حیوانات", - "thingUri": "http://www.bbc.co.uk/things/a4e315c5-007c-4b8a-9762-bebd79fb8b6b#id", - "thingId": "a4e315c5-007c-4b8a-9762-bebd79fb8b6b", - "thingType": [ - "tagging:TagConcept", - "core:Thing", - "core:Theme" - ], - "thingSameAs": [ - "http://dbpedia.org/resource/Animal_welfare", - "http://www.wikidata.org/entity/Q459426" - ], - "thingEnglishLabel": "Animal welfare", - "type": "about" - } - ] - } - }, - "media": { - "id": "p0fr4vvv", - "subType": "clip", - "format": "video", - "title": "See how police freed a bear trapped inside a car", - "synopses": { - "short": "See how police carefully freed a bear trapped inside a car", - "long": "Residents called the Washoe County Sheriff’s Office after discovering a bear stuck inside a car in northern Nevada. Officers used a long piece of rope to pull open the door from a distance and free the animal.", - "medium": "The careful operation required a long piece of rope to open the car door from a distance." - }, - "imageUrl": "ichef.bbci.co.uk/images/ic/$recipe/p0fr4xbj.jpg", - "embedding": true, - "advertising": true, - "caption": "See how police carefully freed a bear trapped inside a car", - "versions": [ - { - "versionId": "p0fr4vvz", - "types": [ - "Original" - ], - "duration": 36, - "durationISO8601": "PT36S", - "warnings": {}, - "availableTerritories": { - "uk": true, - "nonUk": true - }, - "availableFrom": 1685419239000 - } - ], - "imageCopyright": "Washoe County Sheriff’s Office", - "smpKind": "programme", - "type": "media" - }, - "indexImage": { - "id": "129904440", - "subType": "index", - "href": "http://c.files.bbci.co.uk/1158/production/_129904440_p0fr4xbj.jpg", - "path": "/cpsprodpb/1158/production/_129904440_p0fr4xbj.jpg", - "height": 549, - "width": 976, - "altText": "Bear climbs out of car", - "copyrightHolder": "Washoe County Sheriff’s Office", - "allowSyndication": false, - "type": "image" - }, - "id": "urn:bbc:ares::asset:persian/world-65716401", - "type": "cps" - } - }, - { - "id": "a3e3afe4-7247-11e7-a786-53853db9bd6e", - "rank": 14, - "count": 3, - "urn": "urn:bbc:curie:asset:a3e3afe4-7247-11e7-a786-53853db9bd6e", - "promo": { - "headlines": { - "shortHeadline": "Word on the Street - Part1", - "headline": "Word on the Street - Part1" - }, - "locators": { - "assetUri": "/persian/learningenglish/2012/06/120602_l72_engilish_vid", - "cpsUrn": "urn:bbc:content:assetUri:persian/learningenglish/2012/06/120602_l72_engilish_vid", - "curie": "http://www.bbc.co.uk/asset/a3e3afe4-7247-11e7-a786-53853db9bd6e", - "assetId": "17704161" - }, - "summary": "آموزش زبان انگلیسی با بی بی سی ", - "timestamp": 1339165751000, - "language": "fa", - "media": { - "id": "17704161", - "subType": "primary", - "format": "video", - "image": { - "id": "17704161", - "subType": "thumbnail", - "href": "http://a.files.bbci.co.uk/worldservice/live/assets/images/2012/06/08/120608142731_word_on_the_street_640x360_._nocredit.jpg", - "path": "/amz/worldservice/live/assets/images/2012/06/08/120608142731_word_on_the_street_640x360_._nocredit.jpg", - "height": 360, - "width": 640, - "altText": "", - "copyrightHolder": "", - "type": "image" - }, - "aspectRatio": "16:9", - "live": false, - "href": "http://www.bbc.co.uk/persian/meta/dps/2012/06/emp/120602_l72_engilish_vid.emp.xml", - "playlist": [ - { - "format": "mp4", - "bitrate": "168000", - "url": "https://wsodprogrf.akamaized.net/persian/dps/2012/06/wots_ep1_16x9_lo.mp4" - }, - { - "format": "mp4", - "bitrate": "320000", - "url": "https://wsodprogrf.akamaized.net/persian/dps/2012/06/wots_ep1_16x9_med.mp4" - }, - { - "format": "mp4", - "bitrate": "904000", - "url": "https://wsodprogrf.akamaized.net/persian/dps/2012/06/wots_ep1_16x9_hi.mp4" - } - ], - "type": "legacyMedia" - }, - "indexImage": { - "id": "d7e232", - "subType": "index", - "href": "http://a.files.bbci.co.uk/worldservice/live/assets/images/2012/06/08/120608142626_word_on_the_street_112x63_._nocredit.jpg", - "path": "/amz/worldservice/live/assets/images/2012/06/08/120608142626_word_on_the_street_112x63_._nocredit.jpg", - "height": 63, - "width": 112, - "altText": "", - "copyrightHolder": ".", - "type": "image" - }, - "id": "urn:bbc:ares::asset:persian/learningenglish/2012/06/120602_l72_engilish_vid", - "type": "cps" - } - }, - { - "id": "caf7fe0d-f1a8-4647-831f-9979b980df5d", - "rank": 15, - "count": 2, - "urn": "urn:bbc:curie:asset:caf7fe0d-f1a8-4647-831f-9979b980df5d", - "promo": { - "headlines": { - "shortHeadline": "کیواِنان: آیا ۳۶۵۳۴۸ کودک در سال ۲۰۲۰ در آمریکا مفقود شدند؟", - "headline": "کمتر یا بیشتر(۱۱): آیا ۳۶۵۳۴۸ کودک در سال ۲۰۲۰ در آمریکا مفقود شدند؟" - }, - "locators": { - "assetUri": "/persian/tv-and-radio-62019107", - "curieCpsUrn": "urn:bbc:cps:curie:asset:caf7fe0d-f1a8-4647-831f-9979b980df5d", - "assetId": "62019107", - "cpsUrn": "urn:bbc:content:assetUri:persian/tv-and-radio-62019107", - "curie": "http://www.bbc.co.uk/asset/caf7fe0d-f1a8-4647-831f-9979b980df5d" - }, - "summary": "در برنامه این هفته کمتر یا بیشتر در مورد آمار سوال برانگیز نظریه پردازان توطئه در مورد تعداد کودکان ناپدید شده در آمریکا صحبت می کنیم.", - "timestamp": 1656727824000, - "language": "fa", - "media": { - "id": "p0cjg9xz", - "subType": "clip", - "format": "audio", - "title": "کیواِنان: آیا ۳۶۵۳۴۸ کودک در سال ۲۰۲۰ در آمریکا مفقود شدند؟", - "synopses": { - "short": "کیواِنان: آیا ۳۶۵۳۴۸ کودک در سال ۲۰۲۰ در آمریکا مفقود شدند؟" - }, - "imageUrl": "ichef.bbci.co.uk/images/ic/$recipe/p0cjgbk6.jpg", - "embedding": true, - "advertising": true, - "caption": "کیواِنان: آیا ۳۶۵۳۴۸ کودک در سال ۲۰۲۰ در آمریکا مفقود شدند؟", - "versions": [ - { - "versionId": "p0cjg9y3", - "types": [ - "Original" - ], - "duration": 499, - "durationISO8601": "PT8M19S", - "warnings": {}, - "availableTerritories": { - "uk": true, - "nonUk": true - }, - "availableFrom": 1656727318000 - } - ], - "imageCopyright": "BBC", - "smpKind": "radioProgramme", - "type": "media" - }, - "indexImage": { - "id": "125728578", - "subType": "index", - "href": "http://c.files.bbci.co.uk/1561E/production/_125728578_p0cjgbk6.jpg", - "path": "/cpsprodpb/1561E/production/_125728578_p0cjgbk6.jpg", - "height": 576, - "width": 1024, - "altText": "ترافیک و تابلوی هشدار کودک مفقود شده", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:persian/tv-and-radio-62019107", - "type": "cps" - } - }, - { - "id": "b254f908-724b-11e7-a786-53853db9bd6e", - "rank": 16, - "count": 2, - "urn": "urn:bbc:curie:asset:b254f908-724b-11e7-a786-53853db9bd6e", - "promo": { - "headlines": { - "shortHeadline": "مبارزه با افسردگی در روز جهانی سلامت روان", - "headline": "مبارزه با افسردگی در روز جهانی سلامت روان" - }, - "locators": { - "assetUri": "/persian/science/2012/10/121010_l42_vid_mental_health", - "cpsUrn": "urn:bbc:content:assetUri:persian/science/2012/10/121010_l42_vid_mental_health", - "curie": "http://www.bbc.co.uk/asset/b254f908-724b-11e7-a786-53853db9bd6e", - "assetId": "20433970" - }, - "summary": "سالانه حدود نیم میلیون نفر که به افسردگی مبتلا هستند، خودکشی می کنند. افسردگی در زمره معدود بیماری هایی است که در گوشه گوشه دنیا قربانی می گیرد.", - "timestamp": 1349897727000, - "language": "fa", - "media": { - "id": "20433970", - "subType": "primary", - "format": "video", - "image": { - "id": "20433970", - "subType": "thumbnail", - "href": "http://a.files.bbci.co.uk/worldservice/live/assets/images/2012/10/10/121010185453_depression_640x360_pa_nocredit.jpg", - "path": "/amz/worldservice/live/assets/images/2012/10/10/121010185453_depression_640x360_pa_nocredit.jpg", - "height": 360, - "width": 640, - "altText": "", - "copyrightHolder": "", - "type": "image" - }, - "aspectRatio": "16:9", - "live": false, - "href": "http://www.bbc.co.uk/persian/meta/dps/2012/10/emp/121010_l42_vid_mental_health.emp.xml", - "playlist": [ - { - "format": "mp4", - "bitrate": "168000", - "url": "https://wsodprogrf.akamaized.net/persian/dps/2012/10/10oct12_mental_health_16x9_lo.mp4" - }, - { - "format": "mp4", - "bitrate": "320000", - "url": "https://wsodprogrf.akamaized.net/persian/dps/2012/10/10oct12_mental_health_16x9_med.mp4" - }, - { - "format": "mp4", - "bitrate": "904000", - "url": "https://wsodprogrf.akamaized.net/persian/dps/2012/10/10oct12_mental_health_16x9_hi.mp4" - } - ], - "type": "legacyMedia" - }, - "indexImage": { - "id": "d7e232", - "subType": "index", - "href": "http://a.files.bbci.co.uk/worldservice/live/assets/images/2012/10/10/121010185453_depression_144x81_pa_nocredit.jpg", - "path": "/amz/worldservice/live/assets/images/2012/10/10/121010185453_depression_144x81_pa_nocredit.jpg", - "height": 81, - "width": 144, - "altText": "", - "copyrightHolder": "PA", - "type": "image" - }, - "id": "urn:bbc:ares::asset:persian/science/2012/10/121010_l42_vid_mental_health", - "type": "cps" - } - }, - { - "id": "afb4c907-eb5d-4b7f-9e22-c22ca084774e", - "rank": 17, - "count": 2, - "urn": "urn:bbc:curie:asset:afb4c907-eb5d-4b7f-9e22-c22ca084774e", - "promo": { - "headlines": { - "shortHeadline": "فاجعه غرق‌شدن کشتی پناهجویان در سواحل یونان؛ دیدار اشک‌بار دو برادر", - "headline": "فاجعه غرق‌شدن کشتی پناهجویان در سواحل یونان؛ دیدار اشک‌بار دو برادر" - }, - "locators": { - "assetUri": "/persian/world-65931049", - "curieCpsUrn": "urn:bbc:cps:curie:asset:afb4c907-eb5d-4b7f-9e22-c22ca084774e", - "assetId": "65931049", - "cpsUrn": "urn:bbc:content:assetUri:persian/world-65931049", - "curie": "http://www.bbc.co.uk/asset/afb4c907-eb5d-4b7f-9e22-c22ca084774e" - }, - "summary": "محمد، جوان هجده ساله پناهجو که در میان بازماندگان کشتی غرق‌شده است، با برادرش دیدار کرده است. برادر محمد از هلند به یونان رفته و موفق شده است تا با بردادرش دیداری کوتاه داشته باشد.", - "timestamp": 1686928097000, - "language": "fa", - "passport": { - "category": { - "categoryId": "http://www.bbc.co.uk/ontologies/applicationlogic-news/News", - "categoryName": "News" - }, - "campaigns": [ - { - "campaignId": "5a988e4739461b000e9dabfc", - "campaignName": "WS - Update me" - } - ], - "language": "fa", - "home": "http://www.bbc.co.uk/ontologies/passport/home/Persian", - "locator": "urn:bbc:cps:curie:asset:afb4c907-eb5d-4b7f-9e22-c22ca084774e", - "availability": "AVAILABLE", - "taggings": [ - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/contributor", - "value": "http://www.bbc.co.uk/things/093fff0e-e9bb-4d78-9e0b-7920c6357368#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/785b1cd2-db1a-493f-8647-05da1aaef049#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/audience/motivation", - "value": "http://www.bbc.co.uk/things/bf928ac3-b3bd-4d47-924e-cca1bdc29174#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/primaryMediaType", - "value": "http://www.bbc.co.uk/things/ffc98bca-8cff-4ee6-9beb-a6ff6ef3ef9f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/0cd55773-e753-44ad-ad07-1366bf1aa6bc#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/assetType", - "value": "http://www.bbc.co.uk/things/22ea958e-2004-4f34-80a7-bf5acad52f6f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/format", - "value": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id" - } - ], - "schemaVersion": "1.4.0", - "publishedState": "PUBLISHED", - "predicates": { - "contributor": [ - { - "value": "http://www.bbc.co.uk/things/093fff0e-e9bb-4d78-9e0b-7920c6357368#id", - "type": "contributor" - } - ], - "assetType": [ - { - "value": "http://www.bbc.co.uk/things/22ea958e-2004-4f34-80a7-bf5acad52f6f#id", - "type": "assetType" - } - ], - "primaryMediaType": [ - { - "value": "http://www.bbc.co.uk/things/ffc98bca-8cff-4ee6-9beb-a6ff6ef3ef9f#id", - "type": "primaryMediaType" - } - ], - "motivation": [], - "formats": [ - { - "value": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id", - "thingLabel": "News report", - "thingUri": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id", - "thingId": "46c0517d-9927-4d1a-9954-8c63a3f7a888", - "thingType": [ - "tagging:TagConcept", - "tagging:Format" - ], - "thingSameAs": [], - "thingEnglishLabel": "Report", - "thingPreferredLabel": "Report", - "thingLabelLanguage": "fa", - "type": "formats" - } - ], - "about": [ - { - "value": "http://www.bbc.co.uk/things/0cd55773-e753-44ad-ad07-1366bf1aa6bc#id", - "thingLabel": "پناهندگان و پناهجویان", - "thingUri": "http://www.bbc.co.uk/things/0cd55773-e753-44ad-ad07-1366bf1aa6bc#id", - "thingId": "0cd55773-e753-44ad-ad07-1366bf1aa6bc", - "thingType": [ - "tagging:TagConcept", - "core:Thing", - "core:Theme" - ], - "thingSameAs": [ - "http://dbpedia.org/resource/Refugee", - "http://www.wikidata.org/entity/Q564811" - ], - "thingEnglishLabel": "Refugees and asylum seekers", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/785b1cd2-db1a-493f-8647-05da1aaef049#id", - "thingLabel": "یونان", - "thingUri": "http://www.bbc.co.uk/things/785b1cd2-db1a-493f-8647-05da1aaef049#id", - "thingId": "785b1cd2-db1a-493f-8647-05da1aaef049", - "thingType": [ - "core:Thing", - "core:Place", - "tagging:TagConcept" - ], - "thingSameAs": [ - "http://sws.geonames.org/390903/" - ], - "thingEnglishLabel": "Greece", - "type": "about" - } - ] - } - }, - "media": { - "id": "p0fvjxdk", - "subType": "clip", - "format": "video", - "title": "Tears as Greece shipwreck survivor reunited with brother", - "synopses": { - "short": "Greece boat disaster: Brothers' tearful reunion through gates", - "long": "An 18-year-old man, who was among the survivors of a shipwreck in Greece, has tearfully reunited with his brother.\n\nFedi had been in Libya for almost two years before making the crossing.\n\nHis brother, Mohammad, travelled from Italy, and embraced Fedi through the gates at the port in Kalamata.\n\nAt least 78 people have already been confirmed dead in the disaster, but more could still be missing at sea. \n\nReports suggest up to 750 people were on board.", - "medium": "Eighteen-year-old Fedi was among the survivors of a deadly incident, where at least 78 people have died." - }, - "imageUrl": "ichef.bbci.co.uk/images/ic/$recipe/p0fvk0s2.jpg", - "embedding": true, - "advertising": true, - "caption": "فاجعه غرق‌شدن کشتی پناهجویان در سواحل یونان؛ دیدار اشک‌بار دو برادر", - "versions": [ - { - "versionId": "p0fvjxdp", - "types": [ - "Original" - ], - "duration": 22, - "durationISO8601": "PT22S", - "warnings": {}, - "availableTerritories": { - "uk": true, - "nonUk": true - }, - "availableFrom": 1686903609000 - } - ], - "imageCopyright": "Reuters", - "smpKind": "programme", - "type": "media" - }, - "indexImage": { - "id": "130108833", - "subType": "index", - "href": "http://c.files.bbci.co.uk/8458/production/_130108833_p0fvk0s2.jpg", - "path": "/cpsprodpb/8458/production/_130108833_p0fvk0s2.jpg", - "height": 576, - "width": 1024, - "altText": "فاجعه غرق‌شدن کشتی پناهجویان در سواحل یونان؛ دیدار اشک‌بار دو برادر", - "copyrightHolder": "Reuters", - "allowSyndication": true, - "type": "image" - }, - "id": "urn:bbc:ares::asset:persian/world-65931049", - "type": "cps" - } - }, - { - "id": "7316084a-724b-11e7-a786-53853db9bd6e", - "rank": 18, - "count": 2, - "urn": "urn:bbc:curie:asset:7316084a-724b-11e7-a786-53853db9bd6e", - "promo": { - "headlines": { - "shortHeadline": "سلمان رشدی: از نوشتن آیات شیطانی پشیمان نیستم", - "headline": "سلمان رشدی: از نوشتن آیات شیطانی پشیمان نیستم" - }, - "locators": { - "assetUri": "/persian/arts/2012/09/120917_l93_rushdi", - "cpsUrn": "urn:bbc:content:assetUri:persian/arts/2012/09/120917_l93_rushdi", - "curie": "http://www.bbc.co.uk/asset/7316084a-724b-11e7-a786-53853db9bd6e", - "assetId": "19966013" - }, - "summary": "سلمان رشدی نویسنده کتاب آیات شیطانی به بی بی سی گفته از نوشتن این کتاب پشیمان نیست.", - "timestamp": 1347894877000, - "language": "fa", - "media": { - "id": "19966013", - "subType": "primary", - "format": "video", - "image": { - "id": "19966013", - "subType": "thumbnail", - "href": "http://a.files.bbci.co.uk/worldservice/live/assets/images/2012/09/17/120917145913_rushdie_640x360_bbc_nocredit.jpg", - "path": "/amz/worldservice/live/assets/images/2012/09/17/120917145913_rushdie_640x360_bbc_nocredit.jpg", - "height": 360, - "width": 640, - "altText": "", - "copyrightHolder": "", - "type": "image" - }, - "aspectRatio": "16:9", - "live": false, - "href": "http://www.bbc.co.uk/persian/meta/dps/2012/09/emp/120917_l93_rushdi.emp.xml", - "playlist": [ - { - "format": "mp4", - "bitrate": "168000", - "url": "https://wsodprogrf.akamaized.net/persian/dps/2012/09/rushdie~fbook~f1600~f17~f9_16x9_lo.mp4" - }, - { - "format": "mp4", - "bitrate": "320000", - "url": "https://wsodprogrf.akamaized.net/persian/dps/2012/09/rushdie~fbook~f1600~f17~f9_16x9_med.mp4" - }, - { - "format": "mp4", - "bitrate": "904000", - "url": "https://wsodprogrf.akamaized.net/persian/dps/2012/09/rushdie~fbook~f1600~f17~f9_16x9_hi.mp4" - } - ], - "type": "legacyMedia" - }, - "indexImage": { - "id": "d7e223", - "subType": "index", - "href": "http://a.files.bbci.co.uk/worldservice/live/assets/images/2012/09/17/120917145914_rushdie_112x63_bbc_nocredit.jpg", - "path": "/amz/worldservice/live/assets/images/2012/09/17/120917145914_rushdie_112x63_bbc_nocredit.jpg", - "height": 63, - "width": 112, - "altText": "", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:persian/arts/2012/09/120917_l93_rushdi", - "type": "cps" - } - }, - { - "id": "4e5a8db2-7239-11e7-a786-53853db9bd6e", - "rank": 19, - "count": 2, - "urn": "urn:bbc:curie:asset:4e5a8db2-7239-11e7-a786-53853db9bd6e", - "promo": { - "headlines": { - "shortHeadline": "مسابقه رمان نویسی برای همه", - "headline": "مسابقه رمان نویسی برای همه" - }, - "locators": { - "assetUri": "/persian/world/2011/10/111007_l72_novel_mehrdad", - "cpsUrn": "urn:bbc:content:assetUri:persian/world/2011/10/111007_l72_novel_mehrdad", - "curie": "http://www.bbc.co.uk/asset/4e5a8db2-7239-11e7-a786-53853db9bd6e", - "assetId": "13244385" - }, - "summary": "می گویند ما همه داستانی در ذهن داریم که فقط باید بنشینیم و آن را بنویسیم. حالا در بریتانیا این فرصت به نویسندگان بالقوه داده شده است.", - "timestamp": 1318001233000, - "language": "fa", - "media": { - "id": "13244385", - "subType": "primary", - "format": "video", - "image": { - "id": "13244385", - "subType": "thumbnail", - "href": "http://a.files.bbci.co.uk/worldservice/live/assets/images/2011/10/07/111007152529_novel_640x360_bbc_nocredit.jpg", - "path": "/amz/worldservice/live/assets/images/2011/10/07/111007152529_novel_640x360_bbc_nocredit.jpg", - "height": 360, - "width": 640, - "altText": "", - "copyrightHolder": "", - "type": "image" - }, - "aspectRatio": "16:9", - "live": false, - "href": "http://www.bbc.co.uk/persian/meta/dps/2011/10/emp/111007_l72_novel_mehrdad.emp.xml", - "playlist": [ - { - "format": "x-flv", - "bitrate": "0", - "url": "rtmpt://cp48502.edgefcs.net/ondemand/48502/persian/flash/2011/10/novel_mehrdad_16x9_bb.flv" - }, - { - "format": "mp4", - "bitrate": "168000", - "url": "https://wsodprogrf.akamaized.net/persian/dps/2011/10/novel_mehrdad_16x9_lo.mp4" - }, - { - "format": "mp4", - "bitrate": "320000", - "url": "https://wsodprogrf.akamaized.net/persian/dps/2011/10/novel_mehrdad_16x9_med.mp4" - }, - { - "format": "mp4", - "bitrate": "704000", - "url": "https://wsodprogrf.akamaized.net/persian/dps/2011/10/novel_mehrdad_16x9_hi.mp4" - } - ], - "type": "legacyMedia" - }, - "indexImage": { - "id": "d7e232", - "subType": "index", - "href": "http://a.files.bbci.co.uk/worldservice/live/assets/images/2011/10/07/111007152529_novel_144x81_bbc_nocredit.jpg", - "path": "/amz/worldservice/live/assets/images/2011/10/07/111007152529_novel_144x81_bbc_nocredit.jpg", - "height": 81, - "width": 144, - "altText": "مسابقه رمان نویسی ", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:persian/world/2011/10/111007_l72_novel_mehrdad", - "type": "cps" - } - }, - { - "id": "4a8f1f24-389e-11e2-989b-e179a79c3f60", - "rank": 20, - "count": 2, - "urn": "urn:bbc:curie:asset:4a8f1f24-389e-11e2-989b-e179a79c3f60", - "promo": { - "headlines": { - "shortHeadline": "پرگار: پرسش‌هایی برای تمام فصل ها", - "headline": "پرگار: پرسش‌هایی برای تمام فصل ها" - }, - "locators": { - "assetUri": "/persian/tv/2011/04/000001_ptv_pargar", - "cpsUrn": "urn:bbc:content:assetUri:persian/tv/2011/04/000001_ptv_pargar", - "curie": "http://www.bbc.co.uk/asset/4a8f1f24-389e-11e2-989b-e179a79c3f60", - "assetId": "9959623" - }, - "summary": "پرگار: پرسش‌هایی برای تمام فصل‏‌ها", - "timestamp": 1417452971000, - "language": "fa", - "media": { - "id": "9959623", - "subType": "primary", - "format": "video", - "image": { - "id": "9959623", - "subType": "thumbnail", - "href": "http://a.files.bbci.co.uk/worldservice/live/assets/images/2014/03/04/140304104936_pargar_logo_640x360_bbc_nocredit.jpg", - "path": "/amz/worldservice/live/assets/images/2014/03/04/140304104936_pargar_logo_640x360_bbc_nocredit.jpg", - "height": 360, - "width": 640, - "altText": "پرگار", - "copyrightHolder": "", - "type": "image" - }, - "aspectRatio": "16:9", - "live": false, - "href": "http://wsdownload.bbc.co.uk/persian/meta/tx/tv/smp/pargar.xml", - "playlist": [ - { - "format": "x-flv", - "bitrate": "0", - "url": "rtmpt://cp48502.edgefcs.net/ondemand/48502/persian/flash/2011/04/opening_dv_000001_ptv_pargar_16x9_bb.flv" - } - ], - "type": "legacyMedia" - }, - "indexImage": { - "id": "d5e218", - "subType": "index", - "href": "http://a.files.bbci.co.uk/worldservice/live/assets/images/2012/01/28/120128180059_pargar_112x63_pic_nocredit.jpg", - "path": "/amz/worldservice/live/assets/images/2012/01/28/120128180059_pargar_112x63_pic_nocredit.jpg", - "height": 63, - "width": 112, - "altText": "", - "copyrightHolder": "pic", - "type": "image" - }, - "id": "urn:bbc:ares::asset:persian/tv/2011/04/000001_ptv_pargar", - "type": "cps" - } - } - ] - } + "mostRead": null } }, "contentType": "application/json; charset=utf-8" diff --git a/data/persian/legacyAssets/iran/2016/09/160907_tc2_testmap1.json b/data/persian/legacyAssets/iran/2016/09/160907_tc2_testmap1.json index 3ebd06b5661..3d46d9824e8 100644 --- a/data/persian/legacyAssets/iran/2016/09/160907_tc2_testmap1.json +++ b/data/persian/legacyAssets/iran/2016/09/160907_tc2_testmap1.json @@ -185,2045 +185,7 @@ "secondaryData": { "topStories": null, "features": null, - "mostRead": null, - "mostWatched": { - "generated": "2023-06-22T06:32:45.198Z", - "lastRecordTimeStamp": "2023-06-22T06:30:00Z", - "firstRecordTimeStamp": "2023-06-22T04:30:00Z", - "totalRecords": 20, - "records": [ - { - "id": "77968e34-ca62-c144-ac62-6b5920857eaf", - "rank": 1, - "count": 479, - "urn": "urn:bbc:curie:asset:77968e34-ca62-c144-ac62-6b5920857eaf", - "promo": { - "headlines": { - "shortHeadline": "تلویزیون فارسی بی‌بی‌سی: پخش زنده اینترنتی", - "headline": "تلویزیون فارسی بی‌بی‌سی: پخش زنده اینترنتی" - }, - "locators": { - "assetUri": "/persian/media-49522521", - "cpsUrn": "urn:bbc:content:assetUri:persian/media-49522521", - "curie": "http://www.bbc.co.uk/asset/77968e34-ca62-c144-ac62-6b5920857eaf", - "assetId": "49522521" - }, - "summary": "تلویزیون فارسی بی‌بی‌سی: پخش زنده اینترنتی", - "timestamp": 1567153433000, - "language": "fa", - "media": { - "id": "108540165", - "subType": "primary", - "format": "video", - "externalId": "bbc_persian_tv", - "duration": "PT0S", - "caption": "", - "image": { - "id": "108540165", - "subType": "thumbnail", - "href": "http://c.files.bbci.co.uk/15DFF/production/_116499598_persian_16_9_updated.png", - "path": "/cpsprodpb/15DFF/production/_116499598_persian_16_9_updated.png", - "height": 1080, - "width": 1921, - "altText": "بخش فارسی بی بی سی", - "copyrightHolder": "(C) British Broadcasting Corporation", - "type": "image" - }, - "embedding": false, - "available": true, - "live": true, - "type": "version" - }, - "indexImage": { - "id": "116499600", - "subType": "index", - "href": "http://c.files.bbci.co.uk/02BB/production/_116499600_persian_16_9_updated.png", - "path": "/cpsprodpb/02BB/production/_116499600_persian_16_9_updated.png", - "height": 1081, - "width": 1921, - "altText": "بخش فارس", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:persian/media-49522521", - "type": "cps" - } - }, - { - "id": "a513ec0e-3183-11e6-9d2c-71af3db9bd6e", - "rank": 2, - "count": 21, - "urn": "urn:bbc:curie:asset:a513ec0e-3183-11e6-9d2c-71af3db9bd6e", - "promo": { - "headlines": { - "shortHeadline": "افتتاح رستوران برهنه ها در لندن", - "headline": "افتتاح رستوران برهنه ها در لندن" - }, - "locators": { - "assetUri": "/persian/world/2016/06/160613_om_naked_dining", - "cpsUrn": "urn:bbc:content:assetUri:persian/world/2016/06/160613_om_naked_dining", - "curie": "http://www.bbc.co.uk/asset/a513ec0e-3183-11e6-9d2c-71af3db9bd6e", - "assetId": "44215375" - }, - "summary": "در لندن رستوران جدیدی افتتاح شده که در آن گوشت خام سرو می شود و مشتری هایش هم لخت سر غذا می نشینند.", - "timestamp": 1465835242000, - "language": "fa", - "media": { - "id": "44215375", - "subType": "primary", - "format": "video", - "image": { - "id": "44215375", - "subType": "thumbnail", - "href": "http://a.files.bbci.co.uk/worldservice/live/assets/images/2016/06/13/160613162531_om_naked_dining_640x360_bbc_nocredit.jpg", - "path": "/amz/worldservice/live/assets/images/2016/06/13/160613162531_om_naked_dining_640x360_bbc_nocredit.jpg", - "height": 360, - "width": 640, - "altText": "", - "copyrightHolder": "", - "type": "image" - }, - "aspectRatio": "16:9", - "live": false, - "href": "http://www.bbc.co.uk/persian/meta/dps/2016/06/emp/160613_om_naked_dining.emp.xml", - "playlist": [ - { - "format": "mp4", - "bitrate": "168000", - "url": "https://wsodprogrf.akamaized.net/persian/dps/2016/06/world~fom_nak~f1706~f13~f6_16x9_lo.mp4" - }, - { - "format": "mp4", - "bitrate": "320000", - "url": "https://wsodprogrf.akamaized.net/persian/dps/2016/06/world~fom_nak~f1706~f13~f6_16x9_med.mp4" - }, - { - "format": "mp4", - "bitrate": "904000", - "url": "https://wsodprogrf.akamaized.net/persian/dps/2016/06/world~fom_nak~f1706~f13~f6_16x9_hi.mp4" - } - ], - "type": "legacyMedia" - }, - "indexImage": { - "id": "d5e285", - "subType": "index", - "href": "http://a.files.bbci.co.uk/worldservice/live/assets/images/2016/06/13/160613162531_om_naked_dining_640x360_bbc_nocredit.jpg", - "path": "/amz/worldservice/live/assets/images/2016/06/13/160613162531_om_naked_dining_640x360_bbc_nocredit.jpg", - "height": 360, - "width": 640, - "altText": "", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:persian/world/2016/06/160613_om_naked_dining", - "type": "cps" - } - }, - { - "id": "3787f90b-b91e-5442-a8fc-16f1d56fded8", - "rank": 3, - "count": 12, - "urn": "urn:bbc:curie:asset:3787f90b-b91e-5442-a8fc-16f1d56fded8", - "promo": { - "headlines": { - "shortHeadline": "اولین رابطه جنسی", - "headline": "اولین رابطه جنسی" - }, - "locators": { - "assetUri": "/persian/tv-and-radio-40511619", - "cpsUrn": "urn:bbc:content:assetUri:persian/tv-and-radio-40511619", - "curie": "http://www.bbc.co.uk/asset/3787f90b-b91e-5442-a8fc-16f1d56fded8", - "assetId": "40511619" - }, - "summary": "اين مقوله بحثي است بسيار حساسيت برانگيز. متخصصان امورمذهبي، سياسي، سلامت و اجتماعي هركدام از يك زاويه خاص به اين امر نگاه مي‌كنند", - "timestamp": 1499426197000, - "language": "fa", - "media": { - "id": "p057tz28", - "subType": "clip", - "format": "video", - "title": "اولین رابطه جنسی", - "synopses": { - "short": "اولین رابطه جنسی", - "medium": "اولین رابطه جنسی", - "long": "اولین رابطه جنسی" - }, - "imageUrl": "ichef.bbci.co.uk/images/ic/$recipe/p057tzs6.jpg", - "embedding": false, - "advertising": true, - "caption": "اولین رابطه جنسی", - "versions": [ - { - "versionId": "p057tz2d", - "types": [ - "Original" - ], - "duration": 385, - "durationISO8601": "PT6M25S", - "warnings": {}, - "availableTerritories": { - "uk": true, - "nonUk": true - }, - "availableFrom": 1499267500000 - } - ], - "smpKind": "programme", - "type": "media" - }, - "indexImage": { - "id": "96816879", - "subType": "index", - "href": "http://c.files.bbci.co.uk/17E45/production/_96816879_p057tzs6.jpg", - "path": "/cpsprodpb/17E45/production/_96816879_p057tzs6.jpg", - "height": 576, - "width": 1024, - "altText": "اولین رابطه جنسی", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:persian/tv-and-radio-40511619", - "type": "cps" - } - }, - { - "id": "29435466-724b-11e7-a786-53853db9bd6e", - "rank": 4, - "count": 7, - "urn": "urn:bbc:curie:asset:29435466-724b-11e7-a786-53853db9bd6e", - "promo": { - "headlines": { - "shortHeadline": "خالق سکس و دختر مجرد در گذشت", - "headline": "خالق سکس و دختر مجرد در گذشت" - }, - "locators": { - "assetUri": "/persian/world/2012/08/120814_l42_vid_helen_brown", - "cpsUrn": "urn:bbc:content:assetUri:persian/world/2012/08/120814_l42_vid_helen_brown", - "curie": "http://www.bbc.co.uk/asset/29435466-724b-11e7-a786-53853db9bd6e", - "assetId": "19296482" - }, - "summary": "خالق سکس و دختر مجرد در گذشت. هلن براون که به تفکرات انقلابی اش در مورد رابطه جنسی زنان مشهور بود، در سن ۹۰ سالگی در نیویورک از دنیا رفت. اما چه شد که خانم براون این همه سر زبان ها افتاد؟", - "timestamp": 1344969808000, - "language": "fa", - "media": { - "id": "19296482", - "subType": "primary", - "format": "video", - "image": { - "id": "19296482", - "subType": "thumbnail", - "href": "http://a.files.bbci.co.uk/worldservice/live/assets/images/2012/08/14/120814174916_helen_brown_640x360_ap_nocredit.jpg", - "path": "/amz/worldservice/live/assets/images/2012/08/14/120814174916_helen_brown_640x360_ap_nocredit.jpg", - "height": 360, - "width": 640, - "altText": "", - "copyrightHolder": "", - "type": "image" - }, - "aspectRatio": "16:9", - "live": false, - "href": "http://www.bbc.co.uk/persian/meta/dps/2012/08/emp/120814_l42_vid_helen_brown.emp.xml", - "playlist": [ - { - "format": "mp4", - "bitrate": "168000", - "url": "https://wsodprogrf.akamaized.net/persian/dps/2012/08/14aug12_helen_brown_16x9_lo.mp4" - }, - { - "format": "mp4", - "bitrate": "320000", - "url": "https://wsodprogrf.akamaized.net/persian/dps/2012/08/14aug12_helen_brown_16x9_med.mp4" - }, - { - "format": "mp4", - "bitrate": "904000", - "url": "https://wsodprogrf.akamaized.net/persian/dps/2012/08/14aug12_helen_brown_16x9_hi.mp4" - } - ], - "type": "legacyMedia" - }, - "indexImage": { - "id": "d7e232", - "subType": "index", - "href": "http://a.files.bbci.co.uk/worldservice/live/assets/images/2012/08/14/120814174916_helen_brown_144x81_ap_nocredit.jpg", - "path": "/amz/worldservice/live/assets/images/2012/08/14/120814174916_helen_brown_144x81_ap_nocredit.jpg", - "height": 81, - "width": 144, - "altText": "", - "copyrightHolder": "AP", - "type": "image" - }, - "id": "urn:bbc:ares::asset:persian/world/2012/08/120814_l42_vid_helen_brown", - "type": "cps" - } - }, - { - "id": "ed0c57ce-e646-8443-bf53-c5d5ac419c9c", - "rank": 5, - "count": 6, - "urn": "urn:bbc:curie:asset:ed0c57ce-e646-8443-bf53-c5d5ac419c9c", - "promo": { - "headlines": { - "shortHeadline": "کشف فسیلهای انسانهای نخستین", - "headline": "کشف فسیلهای انسانهای نخستین" - }, - "locators": { - "assetUri": "/persian/science-39878409", - "cpsUrn": "urn:bbc:content:assetUri:persian/science-39878409", - "curie": "http://www.bbc.co.uk/asset/ed0c57ce-e646-8443-bf53-c5d5ac419c9c", - "assetId": "39878409" - }, - "summary": "یافته‌های تازه از دوران باستان اطلاعات ما را درباره تکامل انسان بیشتر کرده.", - "timestamp": 1494439188000, - "language": "fa", - "passport": { - "category": { - "categoryId": "http://www.bbc.co.uk/ontologies/applicationlogic-news/News", - "categoryName": "News" - }, - "taggings": [] - }, - "media": { - "id": "p052k5y0", - "subType": "clip", - "format": "video", - "title": "کشف فسیلهای انسانهای نخستین", - "synopses": { - "short": "کشف فسیلهای انسانهای نخستین", - "medium": "یافته‌های تازه از دوران باستان اطلاعات ما را درباره تکامل انسان بیشتر کرده.", - "long": "یافته‌های تازه از دوران باستان اطلاعات ما را درباره تکامل انسان بیشتر کرده. فسیلهایی که به تازگی کشف شده‌اند حکایت از آن دارند که انسانهای نخستین با اولین انسانهای متأخر همزیستی داشته‌اند، حدود 230 هزار سال پیش. کارن آلن خبرنگار بی‌بی‌سی از ژوهانسبورگ گزارشی فرستاده که باهم می‌بینیم" - }, - "imageUrl": "ichef.bbci.co.uk/images/ic/$recipe/p052k7fy.jpg", - "embedding": false, - "advertising": true, - "caption": "کشف فسیلهای انسانهای نخستین", - "versions": [ - { - "versionId": "p052k5y2", - "types": [ - "Original" - ], - "duration": 106, - "durationISO8601": "PT1M46S", - "warnings": {}, - "availableTerritories": { - "uk": true, - "nonUk": true - }, - "availableFrom": 1494438542000 - } - ], - "smpKind": "programme", - "type": "media" - }, - "indexImage": { - "id": "96004930", - "subType": "index", - "href": "http://c.files.bbci.co.uk/0F64/production/_96004930_p052k7fy.jpg", - "path": "/cpsprodpb/0F64/production/_96004930_p052k7fy.jpg", - "height": 576, - "width": 1024, - "altText": "کشف فسیلهای انسانهای نخستین", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:persian/science-39878409", - "type": "cps" - } - }, - { - "id": "7837e4be-3674-f54d-8aa3-b7f6217f86d3", - "rank": 6, - "count": 6, - "urn": "urn:bbc:curie:asset:7837e4be-3674-f54d-8aa3-b7f6217f86d3", - "promo": { - "headlines": { - "shortHeadline": "اچ آی وی، ایدز و رابطه جنسی", - "headline": "اچ آی وی، ایدز و رابطه جنسی" - }, - "locators": { - "assetUri": "/persian/tv-and-radio-40508709", - "cpsUrn": "urn:bbc:content:assetUri:persian/tv-and-radio-40508709", - "curie": "http://www.bbc.co.uk/asset/7837e4be-3674-f54d-8aa3-b7f6217f86d3", - "assetId": "40508709" - }, - "summary": "در حال حاضر بیش از ۳۰ هزار نفر بر اساس آمارهای رسمی در ایران مبتلا به اچ آی وی و نوع پیشرفته آن ایدز هستند", - "timestamp": 1499426135000, - "language": "fa", - "media": { - "id": "p057trqz", - "subType": "clip", - "format": "video", - "title": "اچ آی وی، ایدز و رابطه جنسی", - "synopses": { - "short": "اچ آی وی، ایدز و رابطه جنسی", - "medium": "اچ آی وی، ایدز و رابطه جنسی", - "long": "اچ آی وی، ایدز و رابطه جنسی" - }, - "imageUrl": "ichef.bbci.co.uk/images/ic/$recipe/p057trwf.jpg", - "embedding": false, - "advertising": true, - "caption": "اچ آی وی، ایدز و رابطه جنسی", - "versions": [ - { - "versionId": "p057trr1", - "types": [ - "Original" - ], - "duration": 446, - "durationISO8601": "PT7M26S", - "warnings": {}, - "availableTerritories": { - "uk": true, - "nonUk": true - }, - "availableFrom": 1499263822000 - } - ], - "smpKind": "programme", - "type": "media" - }, - "indexImage": { - "id": "96816873", - "subType": "index", - "href": "http://c.files.bbci.co.uk/93E5/production/_96816873_p057trwf.jpg", - "path": "/cpsprodpb/93E5/production/_96816873_p057trwf.jpg", - "height": 576, - "width": 1024, - "altText": "اچ آی وی، ایدز و رابطه جنسی", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:persian/tv-and-radio-40508709", - "type": "cps" - } - }, - { - "id": "c0cab1db-53be-ac46-a33c-5ae949de3553", - "rank": 7, - "count": 5, - "urn": "urn:bbc:curie:asset:c0cab1db-53be-ac46-a33c-5ae949de3553", - "promo": { - "headlines": { - "shortHeadline": "مشارکت زنان معمار افغان در بازسازی کشورشان", - "headline": "مشارکت زنان معمار افغان در بازسازی کشورشان" - }, - "locators": { - "assetUri": "/persian/afghanistan-46461896", - "cpsUrn": "urn:bbc:content:assetUri:persian/afghanistan-46461896", - "curie": "http://www.bbc.co.uk/asset/c0cab1db-53be-ac46-a33c-5ae949de3553", - "assetId": "46461896" - }, - "summary": "در دو سال اخیر بیش از 2400 دختر در رشته‌های مختلف مهندسی از دانشگاه‌های افغانستان فارغ‌التحصیل شدند.", - "timestamp": 1544034854000, - "language": "fa", - "passport": { - "category": { - "categoryId": "http://www.bbc.co.uk/ontologies/applicationlogic-news/News", - "categoryName": "News" - }, - "campaigns": [ - { - "campaignId": "5a988e4739461b000e9dabfc", - "campaignName": "Update me" - } - ], - "taggings": [] - }, - "media": { - "id": "p06trfxv", - "subType": "clip", - "format": "video", - "title": "مشارکت زنان معمار افغان در بازسازی کشورشان", - "synopses": { - "short": "مشارکت زنان معمار افغان در بازسازی کشورشان", - "long": "در دو سال اخیر بیش از 2400 دختر در رشته‌های مختلف مهندسی از دانشگاه‌های افغانستان فارغ‌التحصیل شدند. تعداد دختران دانشجوی معماری، همیشه کمتر از پسران بوده؛ اما در این اواخر دختران فارغ التحصیل این رشته، توانستند در کابل فرصت‌های شغلی مناسبی بدست آورند. نسرین نوا، خبرنگار ما در کابل با شماری از این معماران صحبت کرده", - "medium": "در دو سال اخیر بیش از 2400 دختر در رشته‌های مختلف مهندسی از دانشگاه‌های افغانستان فارغ‌التحصیل شدند." - }, - "imageUrl": "ichef.bbci.co.uk/images/ic/$recipe/p06trgzx.jpg", - "embedding": true, - "advertising": true, - "caption": "مشارکت زنان معمار افغان در بازسازی کشورشان", - "versions": [ - { - "versionId": "p06trfxy", - "types": [ - "Original" - ], - "duration": 188, - "durationISO8601": "PT3M8S", - "warnings": {}, - "availableTerritories": { - "uk": true, - "nonUk": true - }, - "availableFrom": 1544034418000 - } - ], - "imageCopyright": "BBC", - "smpKind": "programme", - "type": "media" - }, - "indexImage": { - "id": "104633411", - "subType": "index", - "href": "http://c.files.bbci.co.uk/2CA9/production/_104633411_p06trgzx.jpg", - "path": "/cpsprodpb/2CA9/production/_104633411_p06trgzx.jpg", - "height": 549, - "width": 976, - "altText": "مشارکت زنان معمار افغان در بازسازی کشورشان", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:persian/afghanistan-46461896", - "type": "cps" - } - }, - { - "id": "a325c42e-7248-11e7-a786-53853db9bd6e", - "rank": 8, - "count": 5, - "urn": "urn:bbc:curie:asset:a325c42e-7248-11e7-a786-53853db9bd6e", - "promo": { - "headlines": { - "shortHeadline": "بارداری بلای جان مادران نوجوان", - "headline": "بارداری بلای جان مادران نوجوان" - }, - "locators": { - "assetUri": "/persian/world/2012/06/120627_l13_teenage_pregnancy_vid", - "cpsUrn": "urn:bbc:content:assetUri:persian/world/2012/06/120627_l13_teenage_pregnancy_vid", - "curie": "http://www.bbc.co.uk/asset/a325c42e-7248-11e7-a786-53853db9bd6e", - "assetId": "18244241" - }, - "summary": "سالانه یک میلیون دختر زیر هجده سال، به دلیل بارداری یا زایمان، می میرند یا آسیب شدید می بینند. ", - "timestamp": 1340822594000, - "language": "fa", - "media": { - "id": "18244241", - "subType": "primary", - "format": "video", - "image": { - "id": "18244241", - "subType": "thumbnail", - "href": "http://a.files.bbci.co.uk/worldservice/live/assets/images/2012/06/14/120614103206_cn_china_pregnancy_640x360_afp.jpg", - "path": "/amz/worldservice/live/assets/images/2012/06/14/120614103206_cn_china_pregnancy_640x360_afp.jpg", - "height": 360, - "width": 640, - "altText": "", - "copyrightHolder": "", - "type": "image" - }, - "aspectRatio": "16:9", - "live": false, - "href": "http://www.bbc.co.uk/persian/meta/dps/2012/06/emp/120627_l13_teenage_pregnancy_vid.emp.xml", - "playlist": [ - { - "format": "mp4", - "bitrate": "168000", - "url": "https://wsodprogrf.akamaized.net/persian/dps/2012/06/pregnancy_teenage_16x9_lo.mp4" - }, - { - "format": "mp4", - "bitrate": "320000", - "url": "https://wsodprogrf.akamaized.net/persian/dps/2012/06/pregnancy_teenage_16x9_med.mp4" - }, - { - "format": "mp4", - "bitrate": "904000", - "url": "https://wsodprogrf.akamaized.net/persian/dps/2012/06/pregnancy_teenage_16x9_hi.mp4" - } - ], - "type": "legacyMedia" - }, - "indexImage": { - "id": "d7e238", - "subType": "index", - "href": "http://a.files.bbci.co.uk/worldservice/live/assets/images/2012/06/14/120614103210_cn_china_pregnancy_144x81_afp_nocredit.jpg", - "path": "/amz/worldservice/live/assets/images/2012/06/14/120614103210_cn_china_pregnancy_144x81_afp_nocredit.jpg", - "height": 81, - "width": 144, - "altText": "", - "copyrightHolder": "AFP", - "type": "image" - }, - "id": "urn:bbc:ares::asset:persian/world/2012/06/120627_l13_teenage_pregnancy_vid", - "type": "cps" - } - }, - { - "id": "6453ebc5-6d67-442d-b7fc-a481bda7ac8a", - "rank": 9, - "count": 5, - "urn": "urn:bbc:curie:asset:6453ebc5-6d67-442d-b7fc-a481bda7ac8a", - "promo": { - "headlines": { - "shortHeadline": "ببینید؛ خروج آب از سد آسیب دیده اوکراین", - "headline": "ببینید؛ خروج آب از سد آسیب دیده اوکراین" - }, - "locators": { - "assetUri": "/persian/world-65821421", - "curieCpsUrn": "urn:bbc:cps:curie:asset:6453ebc5-6d67-442d-b7fc-a481bda7ac8a", - "assetId": "65821421", - "cpsUrn": "urn:bbc:content:assetUri:persian/world-65821421", - "curie": "http://www.bbc.co.uk/asset/6453ebc5-6d67-442d-b7fc-a481bda7ac8a" - }, - "summary": "ولودیمیر زلنسکی،‌ رئیس جمهوری اوکراین، ویدیویی از سد خسارت دیده کاخوفکا در نزدیکی شهر خرسون به اشتراک گذاشته است.", - "timestamp": 1686045239000, - "language": "fa", - "passport": { - "category": { - "categoryId": "http://www.bbc.co.uk/ontologies/applicationlogic-news/News", - "categoryName": "News" - }, - "language": "fa", - "home": "http://www.bbc.co.uk/ontologies/passport/home/Persian", - "locator": "urn:bbc:cps:curie:asset:6453ebc5-6d67-442d-b7fc-a481bda7ac8a", - "availability": "AVAILABLE", - "taggings": [ - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/ee8750ed-a7fb-453f-bfca-2aa8b3fb064c#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/primaryMediaType", - "value": "http://www.bbc.co.uk/things/ffc98bca-8cff-4ee6-9beb-a6ff6ef3ef9f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/39267b85-1784-4f4b-80ed-f8cb4a35f337#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/contributor", - "value": "http://www.bbc.co.uk/things/093fff0e-e9bb-4d78-9e0b-7920c6357368#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/mentions", - "value": "http://www.bbc.co.uk/things/ee8750ed-a7fb-453f-bfca-2aa8b3fb064c#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/assetType", - "value": "http://www.bbc.co.uk/things/22ea958e-2004-4f34-80a7-bf5acad52f6f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/format", - "value": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id" - } - ], - "schemaVersion": "1.4.0", - "publishedState": "PUBLISHED", - "predicates": { - "contributor": [ - { - "value": "http://www.bbc.co.uk/things/093fff0e-e9bb-4d78-9e0b-7920c6357368#id", - "type": "contributor" - } - ], - "assetType": [ - { - "value": "http://www.bbc.co.uk/things/22ea958e-2004-4f34-80a7-bf5acad52f6f#id", - "type": "assetType" - } - ], - "primaryMediaType": [ - { - "value": "http://www.bbc.co.uk/things/ffc98bca-8cff-4ee6-9beb-a6ff6ef3ef9f#id", - "type": "primaryMediaType" - } - ], - "formats": [ - { - "value": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id", - "thingLabel": "News report", - "thingUri": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id", - "thingId": "46c0517d-9927-4d1a-9954-8c63a3f7a888", - "thingType": [ - "tagging:TagConcept", - "tagging:Format" - ], - "thingSameAs": [], - "thingEnglishLabel": "Report", - "thingPreferredLabel": "Report", - "thingLabelLanguage": "fa", - "type": "formats" - } - ], - "about": [ - { - "value": "http://www.bbc.co.uk/things/39267b85-1784-4f4b-80ed-f8cb4a35f337#id", - "thingLabel": "روسیه", - "thingUri": "http://www.bbc.co.uk/things/39267b85-1784-4f4b-80ed-f8cb4a35f337#id", - "thingId": "39267b85-1784-4f4b-80ed-f8cb4a35f337", - "thingType": [ - "core:Place", - "tagging:TagConcept", - "core:Thing" - ], - "thingSameAs": [ - "http://sws.geonames.org/2017370/" - ], - "thingEnglishLabel": "Russia", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/ee8750ed-a7fb-453f-bfca-2aa8b3fb064c#id", - "thingLabel": "اوکراین", - "thingUri": "http://www.bbc.co.uk/things/ee8750ed-a7fb-453f-bfca-2aa8b3fb064c#id", - "thingId": "ee8750ed-a7fb-453f-bfca-2aa8b3fb064c", - "thingType": [ - "tagging:TagConcept", - "core:Thing", - "core:Place" - ], - "thingSameAs": [ - "http://dbpedia.org/resource/Ukraine", - "http://www.wikidata.org/entity/Q212", - "http://sws.geonames.org/690791/" - ], - "thingEnglishLabel": "Ukraine", - "type": "about" - } - ] - } - }, - "media": { - "id": "p0fsj2lf", - "subType": "clip", - "format": "video", - "title": "Watch: Water gushes through damaged Ukraine dam", - "synopses": { - "short": "Watch: Water gushes through damaged Ukraine dam", - "long": "Ukraine's military has accused Russian forces of blowing up a major dam in the Moscow-seized region of Kherson in the south of the country.\nPresident Zelensky shared a video of the damaged Kakhovka dam on his Telegram page.", - "medium": "President Zelensky shared a video of the Kakhovka dam, in Kherson region, on his Telegram page." - }, - "imageUrl": "ichef.bbci.co.uk/images/ic/$recipe/p0fsk6qs.jpg", - "embedding": true, - "advertising": true, - "caption": "رئیس جمهوری اوکراین ویدیویی از سد خسارت دیده کاخوفکا در نزدیکی شهر خرسون به اشتراک گذاشته است.", - "versions": [ - { - "versionId": "p0fsk4g4", - "types": [ - "Editorial" - ], - "duration": 92, - "durationISO8601": "PT1M32S", - "warnings": {}, - "availableTerritories": { - "uk": true, - "nonUk": true - }, - "availableFrom": 1686032449000 - } - ], - "imageCopyright": "Telegram", - "smpKind": "programme", - "type": "media" - }, - "indexImage": { - "id": "130003707", - "subType": "index", - "href": "http://c.files.bbci.co.uk/1144A/production/_130003707_ukraine_dam_2.jpg", - "path": "/cpsprodpb/1144A/production/_130003707_ukraine_dam_2.jpg", - "height": 549, - "width": 976, - "altText": "Water gushes through damaged dam", - "copyrightHolder": "Telegram", - "allowSyndication": false, - "type": "image" - }, - "id": "urn:bbc:ares::asset:persian/world-65821421", - "type": "cps" - } - }, - { - "id": "91903af0-21c1-4836-8d85-c0cee2fe8144", - "rank": 10, - "count": 4, - "urn": "urn:bbc:curie:asset:91903af0-21c1-4836-8d85-c0cee2fe8144", - "promo": { - "headlines": { - "shortHeadline": "ببینید: آتش‌سوزی در یک کشتی تفریحی در فیلیپین", - "headline": "ببینید: آتش‌سوزی در یک کشتی تفریحی در فیلیپین" - }, - "locators": { - "assetUri": "/persian/world-65943276", - "curieCpsUrn": "urn:bbc:cps:curie:asset:91903af0-21c1-4836-8d85-c0cee2fe8144", - "assetId": "65943276", - "cpsUrn": "urn:bbc:content:assetUri:persian/world-65943276", - "curie": "http://www.bbc.co.uk/asset/91903af0-21c1-4836-8d85-c0cee2fe8144" - }, - "summary": "گارد ساحلی فیلیپین از ماشین آبپاش برای خاموش کردن آتش‌سوزی که در یک کشتی تحریحی رخ داده بود استفاده کرد.", - "timestamp": 1687078618000, - "language": "fa", - "passport": { - "category": { - "categoryId": "http://www.bbc.co.uk/ontologies/applicationlogic-news/News", - "categoryName": "News" - }, - "campaigns": [ - { - "campaignId": "5a988e4739461b000e9dabfc", - "campaignName": "WS - Update me" - } - ], - "language": "fa", - "home": "http://www.bbc.co.uk/ontologies/passport/home/Persian", - "locator": "urn:bbc:cps:curie:asset:91903af0-21c1-4836-8d85-c0cee2fe8144", - "availability": "AVAILABLE", - "taggings": [ - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/contributor", - "value": "http://www.bbc.co.uk/things/093fff0e-e9bb-4d78-9e0b-7920c6357368#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/ba90754a-9033-4e9c-990b-d1139e5070a3#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/audience/motivation", - "value": "http://www.bbc.co.uk/things/bf928ac3-b3bd-4d47-924e-cca1bdc29174#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/primaryMediaType", - "value": "http://www.bbc.co.uk/things/ffc98bca-8cff-4ee6-9beb-a6ff6ef3ef9f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/assetType", - "value": "http://www.bbc.co.uk/things/22ea958e-2004-4f34-80a7-bf5acad52f6f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/format", - "value": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id" - } - ], - "schemaVersion": "1.4.0", - "publishedState": "PUBLISHED", - "predicates": { - "contributor": [ - { - "value": "http://www.bbc.co.uk/things/093fff0e-e9bb-4d78-9e0b-7920c6357368#id", - "type": "contributor" - } - ], - "assetType": [ - { - "value": "http://www.bbc.co.uk/things/22ea958e-2004-4f34-80a7-bf5acad52f6f#id", - "type": "assetType" - } - ], - "primaryMediaType": [ - { - "value": "http://www.bbc.co.uk/things/ffc98bca-8cff-4ee6-9beb-a6ff6ef3ef9f#id", - "type": "primaryMediaType" - } - ], - "motivation": [], - "formats": [ - { - "value": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id", - "thingLabel": "News report", - "thingUri": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id", - "thingId": "46c0517d-9927-4d1a-9954-8c63a3f7a888", - "thingType": [ - "tagging:TagConcept", - "tagging:Format" - ], - "thingSameAs": [], - "thingEnglishLabel": "Report", - "thingPreferredLabel": "Report", - "thingLabelLanguage": "fa", - "type": "formats" - } - ], - "about": [ - { - "value": "http://www.bbc.co.uk/things/ba90754a-9033-4e9c-990b-d1139e5070a3#id", - "thingLabel": "آسیا", - "thingUri": "http://www.bbc.co.uk/things/ba90754a-9033-4e9c-990b-d1139e5070a3#id", - "thingId": "ba90754a-9033-4e9c-990b-d1139e5070a3", - "thingType": [ - "core:Place", - "core:Thing", - "tagging:TagConcept" - ], - "thingSameAs": [ - "http://www.wikidata.org/entity/Q48", - "http://dbpedia.org/resource/Asia" - ], - "thingEnglishLabel": "Asia", - "type": "about" - } - ] - } - }, - "media": { - "id": "p0fvwcj1", - "subType": "clip", - "format": "video", - "title": "Watch: Huge fire breaks out on Philippines ferry", - "synopses": { - "short": "Philippines passenger ship catches fire at sea", - "long": "The Philippine Coast Guard has used a water cannon to extinguish a fire that broke out on a passenger ferry.\n\nThe Esperanza Star was travelling between provinces when the blaze started off the island of Bohol. \n\nOfficials said all 120 passengers and crew on board have been accounted for and no casualties were reported.\n\nThe cause of the incident is still being investigated.", - "medium": "All passengers and crew on board have been accounted for and no casualties were reported." - }, - "imageUrl": "ichef.bbci.co.uk/images/ic/$recipe/p0fvwdf1.jpg", - "embedding": true, - "advertising": true, - "caption": "ببینید: آتش‌سوزی در یک کشتی تفریحی در فیلیپین", - "versions": [ - { - "versionId": "p0fvwcj9", - "types": [ - "Original" - ], - "duration": 49, - "durationISO8601": "PT49S", - "warnings": {}, - "availableTerritories": { - "uk": true, - "nonUk": true - }, - "availableFrom": 1687072722000 - } - ], - "imageCopyright": "Philippine Coast Guard handout", - "smpKind": "programme", - "type": "media" - }, - "indexImage": { - "id": "130123837", - "subType": "index", - "href": "http://c.files.bbci.co.uk/12068/production/_130123837_p0fvwdf1.jpg", - "path": "/cpsprodpb/12068/production/_130123837_p0fvwdf1.jpg", - "height": 549, - "width": 976, - "altText": "آتش‌سوزی که در یک کشتی تفریحی", - "copyrightHolder": "Philippine Coast Guard handout", - "allowSyndication": false, - "type": "image" - }, - "id": "urn:bbc:ares::asset:persian/world-65943276", - "type": "cps" - } - }, - { - "id": "0350376c-c96c-4885-b47a-9802e21b77c2", - "rank": 11, - "count": 4, - "urn": "urn:bbc:curie:asset:0350376c-c96c-4885-b47a-9802e21b77c2", - "promo": { - "headlines": { - "shortHeadline": "تصاویر جدید از لحظه نجات چهار کودک سانحه هوایی در آمازون کلمبیا", - "headline": "تصاویر جدید از لحظه نجات چهار کودک سانحه هوایی در آمازون کلمبیا" - }, - "locators": { - "assetUri": "/persian/tv-and-radio-65899454", - "curieCpsUrn": "urn:bbc:cps:curie:asset:0350376c-c96c-4885-b47a-9802e21b77c2", - "assetId": "65899454", - "cpsUrn": "urn:bbc:content:assetUri:persian/tv-and-radio-65899454", - "curie": "http://www.bbc.co.uk/asset/0350376c-c96c-4885-b47a-9802e21b77c2" - }, - "summary": "تصاویر جدیدی از لحظه نجات چهار کودکی منتشر شده که پس از سقوط هواپیما برای ۴۰ روز در جنگل‌های آمازون داخل کلمبیا توانستند زنده بمانند.", - "timestamp": 1686695718000, - "language": "fa", - "passport": { - "category": { - "categoryId": "http://www.bbc.co.uk/ontologies/applicationlogic-news/News", - "categoryName": "News" - }, - "language": "fa", - "home": "http://www.bbc.co.uk/ontologies/passport/home/Persian", - "locator": "urn:bbc:cps:curie:asset:0350376c-c96c-4885-b47a-9802e21b77c2", - "availability": "AVAILABLE", - "taggings": [ - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/primaryMediaType", - "value": "http://www.bbc.co.uk/things/ffc98bca-8cff-4ee6-9beb-a6ff6ef3ef9f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/e0d04166-b92f-468e-9e68-d5f9330e6ae7#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/contributor", - "value": "http://www.bbc.co.uk/things/093fff0e-e9bb-4d78-9e0b-7920c6357368#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/8ce9d18a-8023-49bb-b29a-263376b81198#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/assetType", - "value": "http://www.bbc.co.uk/things/22ea958e-2004-4f34-80a7-bf5acad52f6f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/format", - "value": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id" - } - ], - "schemaVersion": "1.4.0", - "publishedState": "PUBLISHED", - "predicates": { - "contributor": [ - { - "value": "http://www.bbc.co.uk/things/093fff0e-e9bb-4d78-9e0b-7920c6357368#id", - "type": "contributor" - } - ], - "assetType": [ - { - "value": "http://www.bbc.co.uk/things/22ea958e-2004-4f34-80a7-bf5acad52f6f#id", - "type": "assetType" - } - ], - "primaryMediaType": [ - { - "value": "http://www.bbc.co.uk/things/ffc98bca-8cff-4ee6-9beb-a6ff6ef3ef9f#id", - "type": "primaryMediaType" - } - ], - "formats": [ - { - "value": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id", - "thingLabel": "News report", - "thingUri": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id", - "thingId": "46c0517d-9927-4d1a-9954-8c63a3f7a888", - "thingType": [ - "tagging:TagConcept", - "tagging:Format" - ], - "thingSameAs": [], - "thingEnglishLabel": "Report", - "thingPreferredLabel": "Report", - "thingLabelLanguage": "fa", - "type": "formats" - } - ], - "about": [ - { - "value": "http://www.bbc.co.uk/things/8ce9d18a-8023-49bb-b29a-263376b81198#id", - "thingLabel": "سفر هوایی", - "thingUri": "http://www.bbc.co.uk/things/8ce9d18a-8023-49bb-b29a-263376b81198#id", - "thingId": "8ce9d18a-8023-49bb-b29a-263376b81198", - "thingType": [ - "tagging:TagConcept", - "core:Thing", - "core:Theme" - ], - "thingSameAs": [ - "http://dbpedia.org/resource/Aviation", - "http://www.wikidata.org/entity/Q765633" - ], - "thingEnglishLabel": "Air travel", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/e0d04166-b92f-468e-9e68-d5f9330e6ae7#id", - "thingLabel": "آمریکای جنوبی", - "thingUri": "http://www.bbc.co.uk/things/e0d04166-b92f-468e-9e68-d5f9330e6ae7#id", - "thingId": "e0d04166-b92f-468e-9e68-d5f9330e6ae7", - "thingType": [ - "core:Place", - "tagging:TagConcept", - "core:Thing" - ], - "thingSameAs": [ - "http://www.wikidata.org/entity/Q12585", - "http://dbpedia.org/resource/Latin_America" - ], - "thingEnglishLabel": "Latin America", - "type": "about" - } - ] - } - }, - "media": { - "id": "p0ftvwk6", - "subType": "clip", - "format": "video", - "title": "New video shows plane crash children found in jungle", - "synopses": { - "short": "Colombia plane crash: New video shows lost children found in Amazon", - "long": "Newly released video shows the first moments four lost children were found alive after surviving a plane crash. \n\nThey had spent weeks fending for themselves in the Amazon jungle in Colombia.\n\nTwo pilots and the children's mother and were killed when their light aircraft crashed on 1 May. \n\nThe siblings, aged 13, nine, five, and one, weren't found until 9 June and were rescued and airlifted out of the jungle. They were then moved to a military hospital in Colombia's capital, Bogota. \n\nRead more about the story here.", - "medium": "Newly released footage shows the men tending to the children after they spent 40 days in the Amazon." - }, - "imageUrl": "ichef.bbci.co.uk/images/ic/$recipe/p0ftwwpr.jpg", - "embedding": true, - "advertising": true, - "caption": "رئیس‌جمهور کلمبیا روز پیدا شدن این کودکان را «روز جادویی» خوانده", - "versions": [ - { - "versionId": "p0ftvwkb", - "types": [ - "Original" - ], - "duration": 34, - "durationISO8601": "PT34S", - "warnings": {}, - "availableTerritories": { - "uk": true, - "nonUk": true - }, - "availableFrom": 1686653062000 - } - ], - "imageCopyright": "Resguardo Indigena Jiri-Jiri", - "smpKind": "programme", - "type": "media" - }, - "indexImage": { - "id": "130076498", - "subType": "index", - "href": "http://c.files.bbci.co.uk/15D7B/production/_130076498_p0ftwwpr.jpg", - "path": "/cpsprodpb/15D7B/production/_130076498_p0ftwwpr.jpg", - "height": 576, - "width": 1024, - "altText": "Man holding young child in his arms in the middle of the jungle", - "copyrightHolder": "Resguardo Indigena Jiri-Jiri", - "allowSyndication": false, - "type": "image" - }, - "id": "urn:bbc:ares::asset:persian/tv-and-radio-65899454", - "type": "cps" - } - }, - { - "id": "f298819c-199d-11e4-9c73-95b33db9bd6e", - "rank": 12, - "count": 3, - "urn": "urn:bbc:curie:asset:f298819c-199d-11e4-9c73-95b33db9bd6e", - "promo": { - "headlines": { - "shortHeadline": "اولین تماس با قبیله‌ای ناشناخته در قلب جنگل‌های آمازون", - "headline": "اولین تماس با قبیله‌ای ناشناخته در قلب جنگل‌های آمازون" - }, - "locators": { - "assetUri": "/persian/science/2014/08/140801_l93_amazon_tribe", - "cpsUrn": "urn:bbc:content:assetUri:persian/science/2014/08/140801_l93_amazon_tribe", - "curie": "http://www.bbc.co.uk/asset/f298819c-199d-11e4-9c73-95b33db9bd6e" - }, - "summary": "در برزیل، در قلب جنگلهای آمازون اعضای یک قبیله برای اولین بار با دنیای خارج تماس پیدا کرده اند. در حاشیه رودخانه انویرا نزدیک مرز پرو آنها با جمعی از بومیان محلی برخورد کردند.", - "timestamp": 1406912699000, - "language": "fa", - "media": { - "id": "33754670", - "subType": "primary", - "format": "video", - "image": { - "id": "33754670", - "subType": "thumbnail", - "href": "http://a.files.bbci.co.uk/worldservice/live/assets/images/2014/08/01/140801165310_tribe_640x360_bbc_nocredit.jpg", - "path": "/amz/worldservice/live/assets/images/2014/08/01/140801165310_tribe_640x360_bbc_nocredit.jpg", - "height": 360, - "width": 640, - "altText": "", - "copyrightHolder": "", - "type": "image" - }, - "aspectRatio": "16:9", - "live": false, - "href": "http://www.bbc.co.uk/persian/meta/dps/2014/08/emp/140801_l93_amazon_tribe.emp.xml", - "playlist": [ - { - "format": "mp4", - "bitrate": "168000", - "url": "https://wsodprogrf.akamaized.net/persian/dps/2014/08/amazon_qabileh_16x9_lo.mp4" - }, - { - "format": "mp4", - "bitrate": "320000", - "url": "https://wsodprogrf.akamaized.net/persian/dps/2014/08/amazon_qabileh_16x9_med.mp4" - }, - { - "format": "mp4", - "bitrate": "904000", - "url": "https://wsodprogrf.akamaized.net/persian/dps/2014/08/amazon_qabileh_16x9_hi.mp4" - } - ], - "type": "legacyMedia" - }, - "indexImage": { - "id": "d5e218", - "subType": "index", - "href": "http://a.files.bbci.co.uk/worldservice/live/assets/images/2014/08/01/140801165310_tribe_112x63_bbc_nocredit.jpg", - "path": "/amz/worldservice/live/assets/images/2014/08/01/140801165310_tribe_112x63_bbc_nocredit.jpg", - "height": 63, - "width": 112, - "altText": "", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:persian/science/2014/08/140801_l93_amazon_tribe", - "type": "cps" - } - }, - { - "id": "de65b5be-f373-4b56-9088-50b152e742db", - "rank": 13, - "count": 3, - "urn": "urn:bbc:curie:asset:de65b5be-f373-4b56-9088-50b152e742db", - "promo": { - "headlines": { - "shortHeadline": "ببینید پلیس چطور خرسی را که در خودرو گیر افتاده بود آزاد کرد", - "headline": "ببینید پلیس چطور خرسی را که در خودرو گیر افتاده بود آزاد کرد" - }, - "locators": { - "assetUri": "/persian/world-65716401", - "curieCpsUrn": "urn:bbc:cps:curie:asset:de65b5be-f373-4b56-9088-50b152e742db", - "assetId": "65716401", - "cpsUrn": "urn:bbc:content:assetUri:persian/world-65716401", - "curie": "http://www.bbc.co.uk/asset/de65b5be-f373-4b56-9088-50b152e742db" - }, - "summary": "برای عملیات دقت زیاد و یک طناب لازم بود تا از فاصله دور در ماشین باز شود.", - "timestamp": 1685437257000, - "language": "fa", - "passport": { - "category": { - "categoryId": "http://www.bbc.co.uk/ontologies/applicationlogic-news/News", - "categoryName": "News" - }, - "campaigns": [ - { - "campaignId": "5a988e3139461b000e9dabf9", - "campaignName": "WS - Divert me" - } - ], - "language": "fa", - "home": "http://www.bbc.co.uk/ontologies/passport/home/Persian", - "locator": "urn:bbc:cps:curie:asset:de65b5be-f373-4b56-9088-50b152e742db", - "availability": "AVAILABLE", - "taggings": [ - { - "predicate": "http://www.bbc.co.uk/ontologies/audience/motivation", - "value": "http://www.bbc.co.uk/things/e1deed1e-0cab-4965-8e92-897b195f7a47#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/assetType", - "value": "http://www.bbc.co.uk/things/22ea958e-2004-4f34-80a7-bf5acad52f6f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/8455721e-3da5-4a1c-a114-180dbc2bbd92#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/14745d1f-885d-4b9f-b28a-24540e7beb15#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/82857f8e-8134-462a-bb32-b7b14f4eab75#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/1c3b60a9-14eb-484b-a750-9f5b1aeaac31#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/contributor", - "value": "http://www.bbc.co.uk/things/093fff0e-e9bb-4d78-9e0b-7920c6357368#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/primaryMediaType", - "value": "http://www.bbc.co.uk/things/ffc98bca-8cff-4ee6-9beb-a6ff6ef3ef9f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/a4e315c5-007c-4b8a-9762-bebd79fb8b6b#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/format", - "value": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id" - } - ], - "schemaVersion": "1.4.0", - "publishedState": "PUBLISHED", - "predicates": { - "contributor": [ - { - "value": "http://www.bbc.co.uk/things/093fff0e-e9bb-4d78-9e0b-7920c6357368#id", - "type": "contributor" - } - ], - "assetType": [ - { - "value": "http://www.bbc.co.uk/things/22ea958e-2004-4f34-80a7-bf5acad52f6f#id", - "type": "assetType" - } - ], - "primaryMediaType": [ - { - "value": "http://www.bbc.co.uk/things/ffc98bca-8cff-4ee6-9beb-a6ff6ef3ef9f#id", - "type": "primaryMediaType" - } - ], - "motivation": [], - "formats": [ - { - "value": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id", - "thingLabel": "News report", - "thingUri": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id", - "thingId": "46c0517d-9927-4d1a-9954-8c63a3f7a888", - "thingType": [ - "tagging:TagConcept", - "tagging:Format" - ], - "thingSameAs": [], - "thingEnglishLabel": "Report", - "thingPreferredLabel": "Report", - "thingLabelLanguage": "fa", - "type": "formats" - } - ], - "about": [ - { - "value": "http://www.bbc.co.uk/things/14745d1f-885d-4b9f-b28a-24540e7beb15#id", - "thingLabel": "حیوانات", - "thingUri": "http://www.bbc.co.uk/things/14745d1f-885d-4b9f-b28a-24540e7beb15#id", - "thingId": "14745d1f-885d-4b9f-b28a-24540e7beb15", - "thingType": [ - "tagging:TagConcept", - "core:Theme", - "core:Thing" - ], - "thingSameAs": [ - "http://www.wikidata.org/entity/Q729", - "http://dbpedia.org/resource/Animal" - ], - "thingEnglishLabel": "Animals", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/1c3b60a9-14eb-484b-a750-9f5b1aeaac31#id", - "thingLabel": "سرگرمی", - "thingUri": "http://www.bbc.co.uk/things/1c3b60a9-14eb-484b-a750-9f5b1aeaac31#id", - "thingId": "1c3b60a9-14eb-484b-a750-9f5b1aeaac31", - "thingType": [ - "core:Theme", - "tagging:Genre", - "tagging:AmbiguousTerm", - "tagging:TagConcept", - "core:Thing" - ], - "thingSameAs": [ - "http://dbpedia.org/resource/Entertainment", - "http://www.wikidata.org/entity/Q173799" - ], - "thingEnglishLabel": "Entertainment", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/82857f8e-8134-462a-bb32-b7b14f4eab75#id", - "thingLabel": "ایالات متحده آمریکا", - "thingUri": "http://www.bbc.co.uk/things/82857f8e-8134-462a-bb32-b7b14f4eab75#id", - "thingId": "82857f8e-8134-462a-bb32-b7b14f4eab75", - "thingType": [ - "tagging:TagConcept", - "core:Place", - "core:Thing" - ], - "thingSameAs": [ - "http://sws.geonames.org/6252001/" - ], - "thingEnglishLabel": "United States", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/8455721e-3da5-4a1c-a114-180dbc2bbd92#id", - "thingLabel": "حقوق حیوانات", - "thingUri": "http://www.bbc.co.uk/things/8455721e-3da5-4a1c-a114-180dbc2bbd92#id", - "thingId": "8455721e-3da5-4a1c-a114-180dbc2bbd92", - "thingType": [ - "core:Theme", - "tagging:TagConcept", - "core:Thing" - ], - "thingSameAs": [ - "http://dbpedia.org/resource/Animal_rights", - "http://www.wikidata.org/entity/Q426" - ], - "thingEnglishLabel": "Animal rights", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/a4e315c5-007c-4b8a-9762-bebd79fb8b6b#id", - "thingLabel": "رفاه حیوانات", - "thingUri": "http://www.bbc.co.uk/things/a4e315c5-007c-4b8a-9762-bebd79fb8b6b#id", - "thingId": "a4e315c5-007c-4b8a-9762-bebd79fb8b6b", - "thingType": [ - "tagging:TagConcept", - "core:Thing", - "core:Theme" - ], - "thingSameAs": [ - "http://dbpedia.org/resource/Animal_welfare", - "http://www.wikidata.org/entity/Q459426" - ], - "thingEnglishLabel": "Animal welfare", - "type": "about" - } - ] - } - }, - "media": { - "id": "p0fr4vvv", - "subType": "clip", - "format": "video", - "title": "See how police freed a bear trapped inside a car", - "synopses": { - "short": "See how police carefully freed a bear trapped inside a car", - "long": "Residents called the Washoe County Sheriff’s Office after discovering a bear stuck inside a car in northern Nevada. Officers used a long piece of rope to pull open the door from a distance and free the animal.", - "medium": "The careful operation required a long piece of rope to open the car door from a distance." - }, - "imageUrl": "ichef.bbci.co.uk/images/ic/$recipe/p0fr4xbj.jpg", - "embedding": true, - "advertising": true, - "caption": "See how police carefully freed a bear trapped inside a car", - "versions": [ - { - "versionId": "p0fr4vvz", - "types": [ - "Original" - ], - "duration": 36, - "durationISO8601": "PT36S", - "warnings": {}, - "availableTerritories": { - "uk": true, - "nonUk": true - }, - "availableFrom": 1685419239000 - } - ], - "imageCopyright": "Washoe County Sheriff’s Office", - "smpKind": "programme", - "type": "media" - }, - "indexImage": { - "id": "129904440", - "subType": "index", - "href": "http://c.files.bbci.co.uk/1158/production/_129904440_p0fr4xbj.jpg", - "path": "/cpsprodpb/1158/production/_129904440_p0fr4xbj.jpg", - "height": 549, - "width": 976, - "altText": "Bear climbs out of car", - "copyrightHolder": "Washoe County Sheriff’s Office", - "allowSyndication": false, - "type": "image" - }, - "id": "urn:bbc:ares::asset:persian/world-65716401", - "type": "cps" - } - }, - { - "id": "a3e3afe4-7247-11e7-a786-53853db9bd6e", - "rank": 14, - "count": 3, - "urn": "urn:bbc:curie:asset:a3e3afe4-7247-11e7-a786-53853db9bd6e", - "promo": { - "headlines": { - "shortHeadline": "Word on the Street - Part1", - "headline": "Word on the Street - Part1" - }, - "locators": { - "assetUri": "/persian/learningenglish/2012/06/120602_l72_engilish_vid", - "cpsUrn": "urn:bbc:content:assetUri:persian/learningenglish/2012/06/120602_l72_engilish_vid", - "curie": "http://www.bbc.co.uk/asset/a3e3afe4-7247-11e7-a786-53853db9bd6e", - "assetId": "17704161" - }, - "summary": "آموزش زبان انگلیسی با بی بی سی ", - "timestamp": 1339165751000, - "language": "fa", - "media": { - "id": "17704161", - "subType": "primary", - "format": "video", - "image": { - "id": "17704161", - "subType": "thumbnail", - "href": "http://a.files.bbci.co.uk/worldservice/live/assets/images/2012/06/08/120608142731_word_on_the_street_640x360_._nocredit.jpg", - "path": "/amz/worldservice/live/assets/images/2012/06/08/120608142731_word_on_the_street_640x360_._nocredit.jpg", - "height": 360, - "width": 640, - "altText": "", - "copyrightHolder": "", - "type": "image" - }, - "aspectRatio": "16:9", - "live": false, - "href": "http://www.bbc.co.uk/persian/meta/dps/2012/06/emp/120602_l72_engilish_vid.emp.xml", - "playlist": [ - { - "format": "mp4", - "bitrate": "168000", - "url": "https://wsodprogrf.akamaized.net/persian/dps/2012/06/wots_ep1_16x9_lo.mp4" - }, - { - "format": "mp4", - "bitrate": "320000", - "url": "https://wsodprogrf.akamaized.net/persian/dps/2012/06/wots_ep1_16x9_med.mp4" - }, - { - "format": "mp4", - "bitrate": "904000", - "url": "https://wsodprogrf.akamaized.net/persian/dps/2012/06/wots_ep1_16x9_hi.mp4" - } - ], - "type": "legacyMedia" - }, - "indexImage": { - "id": "d7e232", - "subType": "index", - "href": "http://a.files.bbci.co.uk/worldservice/live/assets/images/2012/06/08/120608142626_word_on_the_street_112x63_._nocredit.jpg", - "path": "/amz/worldservice/live/assets/images/2012/06/08/120608142626_word_on_the_street_112x63_._nocredit.jpg", - "height": 63, - "width": 112, - "altText": "", - "copyrightHolder": ".", - "type": "image" - }, - "id": "urn:bbc:ares::asset:persian/learningenglish/2012/06/120602_l72_engilish_vid", - "type": "cps" - } - }, - { - "id": "caf7fe0d-f1a8-4647-831f-9979b980df5d", - "rank": 15, - "count": 2, - "urn": "urn:bbc:curie:asset:caf7fe0d-f1a8-4647-831f-9979b980df5d", - "promo": { - "headlines": { - "shortHeadline": "کیواِنان: آیا ۳۶۵۳۴۸ کودک در سال ۲۰۲۰ در آمریکا مفقود شدند؟", - "headline": "کمتر یا بیشتر(۱۱): آیا ۳۶۵۳۴۸ کودک در سال ۲۰۲۰ در آمریکا مفقود شدند؟" - }, - "locators": { - "assetUri": "/persian/tv-and-radio-62019107", - "curieCpsUrn": "urn:bbc:cps:curie:asset:caf7fe0d-f1a8-4647-831f-9979b980df5d", - "assetId": "62019107", - "cpsUrn": "urn:bbc:content:assetUri:persian/tv-and-radio-62019107", - "curie": "http://www.bbc.co.uk/asset/caf7fe0d-f1a8-4647-831f-9979b980df5d" - }, - "summary": "در برنامه این هفته کمتر یا بیشتر در مورد آمار سوال برانگیز نظریه پردازان توطئه در مورد تعداد کودکان ناپدید شده در آمریکا صحبت می کنیم.", - "timestamp": 1656727824000, - "language": "fa", - "media": { - "id": "p0cjg9xz", - "subType": "clip", - "format": "audio", - "title": "کیواِنان: آیا ۳۶۵۳۴۸ کودک در سال ۲۰۲۰ در آمریکا مفقود شدند؟", - "synopses": { - "short": "کیواِنان: آیا ۳۶۵۳۴۸ کودک در سال ۲۰۲۰ در آمریکا مفقود شدند؟" - }, - "imageUrl": "ichef.bbci.co.uk/images/ic/$recipe/p0cjgbk6.jpg", - "embedding": true, - "advertising": true, - "caption": "کیواِنان: آیا ۳۶۵۳۴۸ کودک در سال ۲۰۲۰ در آمریکا مفقود شدند؟", - "versions": [ - { - "versionId": "p0cjg9y3", - "types": [ - "Original" - ], - "duration": 499, - "durationISO8601": "PT8M19S", - "warnings": {}, - "availableTerritories": { - "uk": true, - "nonUk": true - }, - "availableFrom": 1656727318000 - } - ], - "imageCopyright": "BBC", - "smpKind": "radioProgramme", - "type": "media" - }, - "indexImage": { - "id": "125728578", - "subType": "index", - "href": "http://c.files.bbci.co.uk/1561E/production/_125728578_p0cjgbk6.jpg", - "path": "/cpsprodpb/1561E/production/_125728578_p0cjgbk6.jpg", - "height": 576, - "width": 1024, - "altText": "ترافیک و تابلوی هشدار کودک مفقود شده", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:persian/tv-and-radio-62019107", - "type": "cps" - } - }, - { - "id": "b254f908-724b-11e7-a786-53853db9bd6e", - "rank": 16, - "count": 2, - "urn": "urn:bbc:curie:asset:b254f908-724b-11e7-a786-53853db9bd6e", - "promo": { - "headlines": { - "shortHeadline": "مبارزه با افسردگی در روز جهانی سلامت روان", - "headline": "مبارزه با افسردگی در روز جهانی سلامت روان" - }, - "locators": { - "assetUri": "/persian/science/2012/10/121010_l42_vid_mental_health", - "cpsUrn": "urn:bbc:content:assetUri:persian/science/2012/10/121010_l42_vid_mental_health", - "curie": "http://www.bbc.co.uk/asset/b254f908-724b-11e7-a786-53853db9bd6e", - "assetId": "20433970" - }, - "summary": "سالانه حدود نیم میلیون نفر که به افسردگی مبتلا هستند، خودکشی می کنند. افسردگی در زمره معدود بیماری هایی است که در گوشه گوشه دنیا قربانی می گیرد.", - "timestamp": 1349897727000, - "language": "fa", - "media": { - "id": "20433970", - "subType": "primary", - "format": "video", - "image": { - "id": "20433970", - "subType": "thumbnail", - "href": "http://a.files.bbci.co.uk/worldservice/live/assets/images/2012/10/10/121010185453_depression_640x360_pa_nocredit.jpg", - "path": "/amz/worldservice/live/assets/images/2012/10/10/121010185453_depression_640x360_pa_nocredit.jpg", - "height": 360, - "width": 640, - "altText": "", - "copyrightHolder": "", - "type": "image" - }, - "aspectRatio": "16:9", - "live": false, - "href": "http://www.bbc.co.uk/persian/meta/dps/2012/10/emp/121010_l42_vid_mental_health.emp.xml", - "playlist": [ - { - "format": "mp4", - "bitrate": "168000", - "url": "https://wsodprogrf.akamaized.net/persian/dps/2012/10/10oct12_mental_health_16x9_lo.mp4" - }, - { - "format": "mp4", - "bitrate": "320000", - "url": "https://wsodprogrf.akamaized.net/persian/dps/2012/10/10oct12_mental_health_16x9_med.mp4" - }, - { - "format": "mp4", - "bitrate": "904000", - "url": "https://wsodprogrf.akamaized.net/persian/dps/2012/10/10oct12_mental_health_16x9_hi.mp4" - } - ], - "type": "legacyMedia" - }, - "indexImage": { - "id": "d7e232", - "subType": "index", - "href": "http://a.files.bbci.co.uk/worldservice/live/assets/images/2012/10/10/121010185453_depression_144x81_pa_nocredit.jpg", - "path": "/amz/worldservice/live/assets/images/2012/10/10/121010185453_depression_144x81_pa_nocredit.jpg", - "height": 81, - "width": 144, - "altText": "", - "copyrightHolder": "PA", - "type": "image" - }, - "id": "urn:bbc:ares::asset:persian/science/2012/10/121010_l42_vid_mental_health", - "type": "cps" - } - }, - { - "id": "afb4c907-eb5d-4b7f-9e22-c22ca084774e", - "rank": 17, - "count": 2, - "urn": "urn:bbc:curie:asset:afb4c907-eb5d-4b7f-9e22-c22ca084774e", - "promo": { - "headlines": { - "shortHeadline": "فاجعه غرق‌شدن کشتی پناهجویان در سواحل یونان؛ دیدار اشک‌بار دو برادر", - "headline": "فاجعه غرق‌شدن کشتی پناهجویان در سواحل یونان؛ دیدار اشک‌بار دو برادر" - }, - "locators": { - "assetUri": "/persian/world-65931049", - "curieCpsUrn": "urn:bbc:cps:curie:asset:afb4c907-eb5d-4b7f-9e22-c22ca084774e", - "assetId": "65931049", - "cpsUrn": "urn:bbc:content:assetUri:persian/world-65931049", - "curie": "http://www.bbc.co.uk/asset/afb4c907-eb5d-4b7f-9e22-c22ca084774e" - }, - "summary": "محمد، جوان هجده ساله پناهجو که در میان بازماندگان کشتی غرق‌شده است، با برادرش دیدار کرده است. برادر محمد از هلند به یونان رفته و موفق شده است تا با بردادرش دیداری کوتاه داشته باشد.", - "timestamp": 1686928097000, - "language": "fa", - "passport": { - "category": { - "categoryId": "http://www.bbc.co.uk/ontologies/applicationlogic-news/News", - "categoryName": "News" - }, - "campaigns": [ - { - "campaignId": "5a988e4739461b000e9dabfc", - "campaignName": "WS - Update me" - } - ], - "language": "fa", - "home": "http://www.bbc.co.uk/ontologies/passport/home/Persian", - "locator": "urn:bbc:cps:curie:asset:afb4c907-eb5d-4b7f-9e22-c22ca084774e", - "availability": "AVAILABLE", - "taggings": [ - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/contributor", - "value": "http://www.bbc.co.uk/things/093fff0e-e9bb-4d78-9e0b-7920c6357368#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/785b1cd2-db1a-493f-8647-05da1aaef049#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/audience/motivation", - "value": "http://www.bbc.co.uk/things/bf928ac3-b3bd-4d47-924e-cca1bdc29174#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/primaryMediaType", - "value": "http://www.bbc.co.uk/things/ffc98bca-8cff-4ee6-9beb-a6ff6ef3ef9f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/0cd55773-e753-44ad-ad07-1366bf1aa6bc#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/assetType", - "value": "http://www.bbc.co.uk/things/22ea958e-2004-4f34-80a7-bf5acad52f6f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/format", - "value": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id" - } - ], - "schemaVersion": "1.4.0", - "publishedState": "PUBLISHED", - "predicates": { - "contributor": [ - { - "value": "http://www.bbc.co.uk/things/093fff0e-e9bb-4d78-9e0b-7920c6357368#id", - "type": "contributor" - } - ], - "assetType": [ - { - "value": "http://www.bbc.co.uk/things/22ea958e-2004-4f34-80a7-bf5acad52f6f#id", - "type": "assetType" - } - ], - "primaryMediaType": [ - { - "value": "http://www.bbc.co.uk/things/ffc98bca-8cff-4ee6-9beb-a6ff6ef3ef9f#id", - "type": "primaryMediaType" - } - ], - "motivation": [], - "formats": [ - { - "value": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id", - "thingLabel": "News report", - "thingUri": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id", - "thingId": "46c0517d-9927-4d1a-9954-8c63a3f7a888", - "thingType": [ - "tagging:TagConcept", - "tagging:Format" - ], - "thingSameAs": [], - "thingEnglishLabel": "Report", - "thingPreferredLabel": "Report", - "thingLabelLanguage": "fa", - "type": "formats" - } - ], - "about": [ - { - "value": "http://www.bbc.co.uk/things/0cd55773-e753-44ad-ad07-1366bf1aa6bc#id", - "thingLabel": "پناهندگان و پناهجویان", - "thingUri": "http://www.bbc.co.uk/things/0cd55773-e753-44ad-ad07-1366bf1aa6bc#id", - "thingId": "0cd55773-e753-44ad-ad07-1366bf1aa6bc", - "thingType": [ - "tagging:TagConcept", - "core:Thing", - "core:Theme" - ], - "thingSameAs": [ - "http://dbpedia.org/resource/Refugee", - "http://www.wikidata.org/entity/Q564811" - ], - "thingEnglishLabel": "Refugees and asylum seekers", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/785b1cd2-db1a-493f-8647-05da1aaef049#id", - "thingLabel": "یونان", - "thingUri": "http://www.bbc.co.uk/things/785b1cd2-db1a-493f-8647-05da1aaef049#id", - "thingId": "785b1cd2-db1a-493f-8647-05da1aaef049", - "thingType": [ - "core:Thing", - "core:Place", - "tagging:TagConcept" - ], - "thingSameAs": [ - "http://sws.geonames.org/390903/" - ], - "thingEnglishLabel": "Greece", - "type": "about" - } - ] - } - }, - "media": { - "id": "p0fvjxdk", - "subType": "clip", - "format": "video", - "title": "Tears as Greece shipwreck survivor reunited with brother", - "synopses": { - "short": "Greece boat disaster: Brothers' tearful reunion through gates", - "long": "An 18-year-old man, who was among the survivors of a shipwreck in Greece, has tearfully reunited with his brother.\n\nFedi had been in Libya for almost two years before making the crossing.\n\nHis brother, Mohammad, travelled from Italy, and embraced Fedi through the gates at the port in Kalamata.\n\nAt least 78 people have already been confirmed dead in the disaster, but more could still be missing at sea. \n\nReports suggest up to 750 people were on board.", - "medium": "Eighteen-year-old Fedi was among the survivors of a deadly incident, where at least 78 people have died." - }, - "imageUrl": "ichef.bbci.co.uk/images/ic/$recipe/p0fvk0s2.jpg", - "embedding": true, - "advertising": true, - "caption": "فاجعه غرق‌شدن کشتی پناهجویان در سواحل یونان؛ دیدار اشک‌بار دو برادر", - "versions": [ - { - "versionId": "p0fvjxdp", - "types": [ - "Original" - ], - "duration": 22, - "durationISO8601": "PT22S", - "warnings": {}, - "availableTerritories": { - "uk": true, - "nonUk": true - }, - "availableFrom": 1686903609000 - } - ], - "imageCopyright": "Reuters", - "smpKind": "programme", - "type": "media" - }, - "indexImage": { - "id": "130108833", - "subType": "index", - "href": "http://c.files.bbci.co.uk/8458/production/_130108833_p0fvk0s2.jpg", - "path": "/cpsprodpb/8458/production/_130108833_p0fvk0s2.jpg", - "height": 576, - "width": 1024, - "altText": "فاجعه غرق‌شدن کشتی پناهجویان در سواحل یونان؛ دیدار اشک‌بار دو برادر", - "copyrightHolder": "Reuters", - "allowSyndication": true, - "type": "image" - }, - "id": "urn:bbc:ares::asset:persian/world-65931049", - "type": "cps" - } - }, - { - "id": "7316084a-724b-11e7-a786-53853db9bd6e", - "rank": 18, - "count": 2, - "urn": "urn:bbc:curie:asset:7316084a-724b-11e7-a786-53853db9bd6e", - "promo": { - "headlines": { - "shortHeadline": "سلمان رشدی: از نوشتن آیات شیطانی پشیمان نیستم", - "headline": "سلمان رشدی: از نوشتن آیات شیطانی پشیمان نیستم" - }, - "locators": { - "assetUri": "/persian/arts/2012/09/120917_l93_rushdi", - "cpsUrn": "urn:bbc:content:assetUri:persian/arts/2012/09/120917_l93_rushdi", - "curie": "http://www.bbc.co.uk/asset/7316084a-724b-11e7-a786-53853db9bd6e", - "assetId": "19966013" - }, - "summary": "سلمان رشدی نویسنده کتاب آیات شیطانی به بی بی سی گفته از نوشتن این کتاب پشیمان نیست.", - "timestamp": 1347894877000, - "language": "fa", - "media": { - "id": "19966013", - "subType": "primary", - "format": "video", - "image": { - "id": "19966013", - "subType": "thumbnail", - "href": "http://a.files.bbci.co.uk/worldservice/live/assets/images/2012/09/17/120917145913_rushdie_640x360_bbc_nocredit.jpg", - "path": "/amz/worldservice/live/assets/images/2012/09/17/120917145913_rushdie_640x360_bbc_nocredit.jpg", - "height": 360, - "width": 640, - "altText": "", - "copyrightHolder": "", - "type": "image" - }, - "aspectRatio": "16:9", - "live": false, - "href": "http://www.bbc.co.uk/persian/meta/dps/2012/09/emp/120917_l93_rushdi.emp.xml", - "playlist": [ - { - "format": "mp4", - "bitrate": "168000", - "url": "https://wsodprogrf.akamaized.net/persian/dps/2012/09/rushdie~fbook~f1600~f17~f9_16x9_lo.mp4" - }, - { - "format": "mp4", - "bitrate": "320000", - "url": "https://wsodprogrf.akamaized.net/persian/dps/2012/09/rushdie~fbook~f1600~f17~f9_16x9_med.mp4" - }, - { - "format": "mp4", - "bitrate": "904000", - "url": "https://wsodprogrf.akamaized.net/persian/dps/2012/09/rushdie~fbook~f1600~f17~f9_16x9_hi.mp4" - } - ], - "type": "legacyMedia" - }, - "indexImage": { - "id": "d7e223", - "subType": "index", - "href": "http://a.files.bbci.co.uk/worldservice/live/assets/images/2012/09/17/120917145914_rushdie_112x63_bbc_nocredit.jpg", - "path": "/amz/worldservice/live/assets/images/2012/09/17/120917145914_rushdie_112x63_bbc_nocredit.jpg", - "height": 63, - "width": 112, - "altText": "", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:persian/arts/2012/09/120917_l93_rushdi", - "type": "cps" - } - }, - { - "id": "4e5a8db2-7239-11e7-a786-53853db9bd6e", - "rank": 19, - "count": 2, - "urn": "urn:bbc:curie:asset:4e5a8db2-7239-11e7-a786-53853db9bd6e", - "promo": { - "headlines": { - "shortHeadline": "مسابقه رمان نویسی برای همه", - "headline": "مسابقه رمان نویسی برای همه" - }, - "locators": { - "assetUri": "/persian/world/2011/10/111007_l72_novel_mehrdad", - "cpsUrn": "urn:bbc:content:assetUri:persian/world/2011/10/111007_l72_novel_mehrdad", - "curie": "http://www.bbc.co.uk/asset/4e5a8db2-7239-11e7-a786-53853db9bd6e", - "assetId": "13244385" - }, - "summary": "می گویند ما همه داستانی در ذهن داریم که فقط باید بنشینیم و آن را بنویسیم. حالا در بریتانیا این فرصت به نویسندگان بالقوه داده شده است.", - "timestamp": 1318001233000, - "language": "fa", - "media": { - "id": "13244385", - "subType": "primary", - "format": "video", - "image": { - "id": "13244385", - "subType": "thumbnail", - "href": "http://a.files.bbci.co.uk/worldservice/live/assets/images/2011/10/07/111007152529_novel_640x360_bbc_nocredit.jpg", - "path": "/amz/worldservice/live/assets/images/2011/10/07/111007152529_novel_640x360_bbc_nocredit.jpg", - "height": 360, - "width": 640, - "altText": "", - "copyrightHolder": "", - "type": "image" - }, - "aspectRatio": "16:9", - "live": false, - "href": "http://www.bbc.co.uk/persian/meta/dps/2011/10/emp/111007_l72_novel_mehrdad.emp.xml", - "playlist": [ - { - "format": "x-flv", - "bitrate": "0", - "url": "rtmpt://cp48502.edgefcs.net/ondemand/48502/persian/flash/2011/10/novel_mehrdad_16x9_bb.flv" - }, - { - "format": "mp4", - "bitrate": "168000", - "url": "https://wsodprogrf.akamaized.net/persian/dps/2011/10/novel_mehrdad_16x9_lo.mp4" - }, - { - "format": "mp4", - "bitrate": "320000", - "url": "https://wsodprogrf.akamaized.net/persian/dps/2011/10/novel_mehrdad_16x9_med.mp4" - }, - { - "format": "mp4", - "bitrate": "704000", - "url": "https://wsodprogrf.akamaized.net/persian/dps/2011/10/novel_mehrdad_16x9_hi.mp4" - } - ], - "type": "legacyMedia" - }, - "indexImage": { - "id": "d7e232", - "subType": "index", - "href": "http://a.files.bbci.co.uk/worldservice/live/assets/images/2011/10/07/111007152529_novel_144x81_bbc_nocredit.jpg", - "path": "/amz/worldservice/live/assets/images/2011/10/07/111007152529_novel_144x81_bbc_nocredit.jpg", - "height": 81, - "width": 144, - "altText": "مسابقه رمان نویسی ", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:persian/world/2011/10/111007_l72_novel_mehrdad", - "type": "cps" - } - }, - { - "id": "4a8f1f24-389e-11e2-989b-e179a79c3f60", - "rank": 20, - "count": 2, - "urn": "urn:bbc:curie:asset:4a8f1f24-389e-11e2-989b-e179a79c3f60", - "promo": { - "headlines": { - "shortHeadline": "پرگار: پرسش‌هایی برای تمام فصل ها", - "headline": "پرگار: پرسش‌هایی برای تمام فصل ها" - }, - "locators": { - "assetUri": "/persian/tv/2011/04/000001_ptv_pargar", - "cpsUrn": "urn:bbc:content:assetUri:persian/tv/2011/04/000001_ptv_pargar", - "curie": "http://www.bbc.co.uk/asset/4a8f1f24-389e-11e2-989b-e179a79c3f60", - "assetId": "9959623" - }, - "summary": "پرگار: پرسش‌هایی برای تمام فصل‏‌ها", - "timestamp": 1417452971000, - "language": "fa", - "media": { - "id": "9959623", - "subType": "primary", - "format": "video", - "image": { - "id": "9959623", - "subType": "thumbnail", - "href": "http://a.files.bbci.co.uk/worldservice/live/assets/images/2014/03/04/140304104936_pargar_logo_640x360_bbc_nocredit.jpg", - "path": "/amz/worldservice/live/assets/images/2014/03/04/140304104936_pargar_logo_640x360_bbc_nocredit.jpg", - "height": 360, - "width": 640, - "altText": "پرگار", - "copyrightHolder": "", - "type": "image" - }, - "aspectRatio": "16:9", - "live": false, - "href": "http://wsdownload.bbc.co.uk/persian/meta/tx/tv/smp/pargar.xml", - "playlist": [ - { - "format": "x-flv", - "bitrate": "0", - "url": "rtmpt://cp48502.edgefcs.net/ondemand/48502/persian/flash/2011/04/opening_dv_000001_ptv_pargar_16x9_bb.flv" - } - ], - "type": "legacyMedia" - }, - "indexImage": { - "id": "d5e218", - "subType": "index", - "href": "http://a.files.bbci.co.uk/worldservice/live/assets/images/2012/01/28/120128180059_pargar_112x63_pic_nocredit.jpg", - "path": "/amz/worldservice/live/assets/images/2012/01/28/120128180059_pargar_112x63_pic_nocredit.jpg", - "height": 63, - "width": 112, - "altText": "", - "copyrightHolder": "pic", - "type": "image" - }, - "id": "urn:bbc:ares::asset:persian/tv/2011/04/000001_ptv_pargar", - "type": "cps" - } - } - ] - } + "mostRead": null } }, "contentType": "application/json; charset=utf-8" diff --git a/data/pidgin/cpsAssets/23248703-LEGACY.json b/data/pidgin/cpsAssets/23248703-LEGACY.json index fea435aeb22..7af5658d37b 100644 --- a/data/pidgin/cpsAssets/23248703-LEGACY.json +++ b/data/pidgin/cpsAssets/23248703-LEGACY.json @@ -710,87 +710,7 @@ "secondaryData": { "topStories": null, "features": null, - "mostRead": null, - "mostWatched": { - "generated": "2023-06-20T14:35:04.305Z", - "lastRecordTimeStamp": "2021-05-04T11:53:00Z", - "firstRecordTimeStamp": "2021-05-04T07:53:00Z", - "totalRecords": 1, - "records": [ - { - "id": "53dce379-a0bd-554e-a3f3-cc2bc3353043", - "rank": 1, - "count": 9326, - "urn": "urn:bbc:curie:asset:53dce379-a0bd-554e-a3f3-cc2bc3353043", - "promo": { - "headlines": { - "shortHeadline": "Ivory Coast's hair sculptor", - "headline": "Ivory Coast's hair sculptor Laetitia Ky" - }, - "locators": { - "assetUri": "/igbo/23170911", - "curieCpsUrn": "urn:bbc:cps:curie:asset:53dce379-a0bd-554e-a3f3-cc2bc3353043", - "assetId": "23170911", - "cpsUrn": "urn:bbc:content:assetUri:igbo/23170911", - "curie": "http://www.bbc.co.uk/asset/53dce379-a0bd-554e-a3f3-cc2bc3353043" - }, - "summary": "Ivory Coast artist Laetitia Ky has a unique way of styling her hair.", - "timestamp": 1512731788000, - "language": "ig", - "passport": { - "home": "http://www.bbc.co.uk/ontologies/passport/home/Igbo", - "taggings": [] - }, - "media": { - "id": "p01fcrpx", - "subType": "clip", - "format": "video", - "title": "Ivory Coast's hair sculptor", - "synopses": { - "short": "Ivory Coast's hair sculptor Laetitia Ky", - "medium": "Ivory Coast artist Laetitia Ky has a unique way of styling her hair.", - "long": "Ivory Coast artist Laetitia Ky has a unique way of styling her hair. She uses it to create art, piled up high on top of her head. Sometimes it’s political, sometimes it’s beautiful and sometimes it’s simply bizarre." - }, - "imageUrl": "ichef.test.bbci.co.uk/images/ic/$recipe/p01fcsfg.jpg", - "embedding": true, - "advertising": true, - "caption": "Ivory Coast's hair sculptor Laetitia Ky", - "versions": [ - { - "versionId": "p01fcrpz", - "types": ["Original"], - "duration": 105, - "durationISO8601": "PT1M45S", - "warnings": {}, - "availableTerritories": { - "uk": true, - "nonUk": true - }, - "availableFrom": 1512485360000 - } - ], - "smpKind": "programme", - "type": "media" - }, - "indexImage": { - "id": "63661933", - "subType": "index", - "href": "http://b.files.bbci.co.uk/847C/test/_63661933_hi008224031.jpg", - "path": "/cpsdevpb/847C/test/_63661933_hi008224031.jpg", - "height": 1152, - "width": 2048, - "altText": "hh", - "caption": "hh", - "copyrightHolder": "Hh", - "allowSyndication": false, - "type": "image" - }, - "id": "urn:bbc:ares::asset:igbo/23170911", - "type": "cps" - } - } - ] - } + "mostRead": null } }, "contentType": "application/json; charset=utf-8" diff --git a/data/pidgin/cpsAssets/media-23256549.json b/data/pidgin/cpsAssets/media-23256549.json index 396509caaa8..947dc0aefa0 100644 --- a/data/pidgin/cpsAssets/media-23256549.json +++ b/data/pidgin/cpsAssets/media-23256549.json @@ -160,89 +160,7 @@ "secondaryData": { "topStories": null, "features": null, - "mostRead": null, - "mostWatched": { - "generated": "2023-06-21T08:34:59.893Z", - "lastRecordTimeStamp": "2021-05-04T11:53:00Z", - "firstRecordTimeStamp": "2021-05-04T07:53:00Z", - "totalRecords": 1, - "records": [ - { - "id": "53dce379-a0bd-554e-a3f3-cc2bc3353043", - "rank": 1, - "count": 9326, - "urn": "urn:bbc:curie:asset:53dce379-a0bd-554e-a3f3-cc2bc3353043", - "promo": { - "headlines": { - "shortHeadline": "Ivory Coast's hair sculptor", - "headline": "Ivory Coast's hair sculptor Laetitia Ky" - }, - "locators": { - "assetUri": "/igbo/23170911", - "curieCpsUrn": "urn:bbc:cps:curie:asset:53dce379-a0bd-554e-a3f3-cc2bc3353043", - "assetId": "23170911", - "cpsUrn": "urn:bbc:content:assetUri:igbo/23170911", - "curie": "http://www.bbc.co.uk/asset/53dce379-a0bd-554e-a3f3-cc2bc3353043" - }, - "summary": "Ivory Coast artist Laetitia Ky has a unique way of styling her hair.", - "timestamp": 1512731788000, - "language": "ig", - "passport": { - "home": "http://www.bbc.co.uk/ontologies/passport/home/Igbo", - "taggings": [] - }, - "media": { - "id": "p01fcrpx", - "subType": "clip", - "format": "video", - "title": "Ivory Coast's hair sculptor", - "synopses": { - "short": "Ivory Coast's hair sculptor Laetitia Ky", - "medium": "Ivory Coast artist Laetitia Ky has a unique way of styling her hair.", - "long": "Ivory Coast artist Laetitia Ky has a unique way of styling her hair. She uses it to create art, piled up high on top of her head. Sometimes it’s political, sometimes it’s beautiful and sometimes it’s simply bizarre." - }, - "imageUrl": "ichef.test.bbci.co.uk/images/ic/$recipe/p01fcsfg.jpg", - "embedding": true, - "advertising": true, - "caption": "Ivory Coast's hair sculptor Laetitia Ky", - "versions": [ - { - "versionId": "p01fcrpz", - "types": [ - "Original" - ], - "duration": 105, - "durationISO8601": "PT1M45S", - "warnings": {}, - "availableTerritories": { - "uk": true, - "nonUk": true - }, - "availableFrom": 1512485360000 - } - ], - "smpKind": "programme", - "type": "media" - }, - "indexImage": { - "id": "63661933", - "subType": "index", - "href": "http://b.files.bbci.co.uk/847C/test/_63661933_hi008224031.jpg", - "path": "/cpsdevpb/847C/test/_63661933_hi008224031.jpg", - "height": 1152, - "width": 2048, - "altText": "hh", - "caption": "hh", - "copyrightHolder": "Hh", - "allowSyndication": false, - "type": "image" - }, - "id": "urn:bbc:ares::asset:igbo/23170911", - "type": "cps" - } - } - ] - } + "mostRead": null } }, "contentType": "application/json; charset=utf-8" diff --git a/data/pidgin/cpsAssets/tori-49450859.json b/data/pidgin/cpsAssets/tori-49450859.json index 87814cae0aa..19beeb1190b 100644 --- a/data/pidgin/cpsAssets/tori-49450859.json +++ b/data/pidgin/cpsAssets/tori-49450859.json @@ -450,89 +450,7 @@ "secondaryData": { "topStories": null, "features": null, - "mostRead": null, - "mostWatched": { - "generated": "2023-06-20T14:35:04.305Z", - "lastRecordTimeStamp": "2021-05-04T11:53:00Z", - "firstRecordTimeStamp": "2021-05-04T07:53:00Z", - "totalRecords": 1, - "records": [ - { - "id": "53dce379-a0bd-554e-a3f3-cc2bc3353043", - "rank": 1, - "count": 9326, - "urn": "urn:bbc:curie:asset:53dce379-a0bd-554e-a3f3-cc2bc3353043", - "promo": { - "headlines": { - "shortHeadline": "Ivory Coast's hair sculptor", - "headline": "Ivory Coast's hair sculptor Laetitia Ky" - }, - "locators": { - "assetUri": "/igbo/23170911", - "curieCpsUrn": "urn:bbc:cps:curie:asset:53dce379-a0bd-554e-a3f3-cc2bc3353043", - "assetId": "23170911", - "cpsUrn": "urn:bbc:content:assetUri:igbo/23170911", - "curie": "http://www.bbc.co.uk/asset/53dce379-a0bd-554e-a3f3-cc2bc3353043" - }, - "summary": "Ivory Coast artist Laetitia Ky has a unique way of styling her hair.", - "timestamp": 1512731788000, - "language": "ig", - "passport": { - "home": "http://www.bbc.co.uk/ontologies/passport/home/Igbo", - "taggings": [] - }, - "media": { - "id": "p01fcrpx", - "subType": "clip", - "format": "video", - "title": "Ivory Coast's hair sculptor", - "synopses": { - "short": "Ivory Coast's hair sculptor Laetitia Ky", - "medium": "Ivory Coast artist Laetitia Ky has a unique way of styling her hair.", - "long": "Ivory Coast artist Laetitia Ky has a unique way of styling her hair. She uses it to create art, piled up high on top of her head. Sometimes it’s political, sometimes it’s beautiful and sometimes it’s simply bizarre." - }, - "imageUrl": "ichef.test.bbci.co.uk/images/ic/$recipe/p01fcsfg.jpg", - "embedding": true, - "advertising": true, - "caption": "Ivory Coast's hair sculptor Laetitia Ky", - "versions": [ - { - "versionId": "p01fcrpz", - "types": [ - "Original" - ], - "duration": 105, - "durationISO8601": "PT1M45S", - "warnings": {}, - "availableTerritories": { - "uk": true, - "nonUk": true - }, - "availableFrom": 1512485360000 - } - ], - "smpKind": "programme", - "type": "media" - }, - "indexImage": { - "id": "63661933", - "subType": "index", - "href": "http://b.files.bbci.co.uk/847C/test/_63661933_hi008224031.jpg", - "path": "/cpsdevpb/847C/test/_63661933_hi008224031.jpg", - "height": 1152, - "width": 2048, - "altText": "hh", - "caption": "hh", - "copyrightHolder": "Hh", - "allowSyndication": false, - "type": "image" - }, - "id": "urn:bbc:ares::asset:igbo/23170911", - "type": "cps" - } - } - ] - } + "mostRead": null } } } diff --git a/data/pidgin/cpsAssets/world-23252817.json b/data/pidgin/cpsAssets/world-23252817.json index 46b20952ffa..8ebe56ec78f 100644 --- a/data/pidgin/cpsAssets/world-23252817.json +++ b/data/pidgin/cpsAssets/world-23252817.json @@ -996,8 +996,7 @@ "timestamp": 1498052838000 } ] - }, - "mostWatched": null + } } }, "contentType": "application/json; charset=utf-8" diff --git a/data/russian/cpsAssets/features-45782775.json b/data/russian/cpsAssets/features-45782775.json index 805871af12b..9ce3087cc85 100644 --- a/data/russian/cpsAssets/features-45782775.json +++ b/data/russian/cpsAssets/features-45782775.json @@ -306,8 +306,7 @@ "secondaryData": { "topStories": null, "features": null, - "mostRead": null, - "mostWatched": null + "mostRead": null } }, "contentType": "application/json; charset=utf-8" diff --git a/data/russian/cpsAssets/features-54391793.json b/data/russian/cpsAssets/features-54391793.json index ed41ad2f9c6..8431fb12c46 100644 --- a/data/russian/cpsAssets/features-54391793.json +++ b/data/russian/cpsAssets/features-54391793.json @@ -1025,8 +1025,7 @@ "timestamp": 1686995788000 } ] - }, - "mostWatched": null + } } }, "contentType": "application/json; charset=utf-8" diff --git a/data/russian/cpsAssets/media-49281069.json b/data/russian/cpsAssets/media-49281069.json index 5010ff27438..3d00268d6b9 100644 --- a/data/russian/cpsAssets/media-49281069.json +++ b/data/russian/cpsAssets/media-49281069.json @@ -299,3756 +299,7 @@ "secondaryData": { "topStories": null, "features": null, - "mostRead": null, - "mostWatched": { - "generated": "2023-07-03T12:18:09.576Z", - "lastRecordTimeStamp": "2023-07-03T12:15:00Z", - "firstRecordTimeStamp": "2023-07-03T10:15:00Z", - "totalRecords": 20, - "records": [ - { - "id": "19721b6a-3612-4420-934d-436b26c76e1e", - "rank": 1, - "count": 1152, - "urn": "urn:bbc:curie:asset:19721b6a-3612-4420-934d-436b26c76e1e", - "promo": { - "headlines": { - "shortHeadline": "Пробка у Крымского моста. Видео", - "headline": "Пробка у Крымского моста. Видео" - }, - "locators": { - "assetUri": "/russian/media-66087660", - "curieCpsUrn": "urn:bbc:cps:curie:asset:19721b6a-3612-4420-934d-436b26c76e1e", - "assetId": "66087660", - "cpsUrn": "urn:bbc:content:assetUri:russian/media-66087660", - "curie": "http://www.bbc.co.uk/asset/19721b6a-3612-4420-934d-436b26c76e1e" - }, - "summary": "К утру 3 июля пробка на подъезде к Крымскому мосту растянулась на 13 км. После взрыва осенью 2022 года на мосту был ужесточен досмотр машин.", - "timestamp": 1688380853000, - "language": "ru", - "passport": { - "campaigns": [ - { - "campaignId": "5a988e4739461b000e9dabfc", - "campaignName": "WS - Update me" - } - ], - "language": "ru", - "home": "http://www.bbc.co.uk/ontologies/passport/home/Russian", - "locator": "urn:bbc:cps:curie:asset:19721b6a-3612-4420-934d-436b26c76e1e", - "availability": "AVAILABLE", - "taggings": [ - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/ee8750ed-a7fb-453f-bfca-2aa8b3fb064c#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/contributor", - "value": "http://www.bbc.co.uk/things/0143a201-5690-4cb1-95a8-03ab60e66bfd#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/39267b85-1784-4f4b-80ed-f8cb4a35f337#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/23d96e97-b777-413a-a8c5-85a2eda98613#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/audience/motivation", - "value": "http://www.bbc.co.uk/things/bf928ac3-b3bd-4d47-924e-cca1bdc29174#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/primaryMediaType", - "value": "http://www.bbc.co.uk/things/ffc98bca-8cff-4ee6-9beb-a6ff6ef3ef9f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/assetType", - "value": "http://www.bbc.co.uk/things/22ea958e-2004-4f34-80a7-bf5acad52f6f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/editorialSensitivity", - "value": "http://www.bbc.co.uk/things/c6979033-cb72-4d07-9897-adc348a4332e#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/format", - "value": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id" - } - ], - "schemaVersion": "1.4.0", - "publishedState": "PUBLISHED", - "predicates": { - "contributor": [ - { - "value": "http://www.bbc.co.uk/things/0143a201-5690-4cb1-95a8-03ab60e66bfd#id", - "type": "contributor" - } - ], - "assetType": [ - { - "value": "http://www.bbc.co.uk/things/22ea958e-2004-4f34-80a7-bf5acad52f6f#id", - "type": "assetType" - } - ], - "primaryMediaType": [ - { - "value": "http://www.bbc.co.uk/things/ffc98bca-8cff-4ee6-9beb-a6ff6ef3ef9f#id", - "type": "primaryMediaType" - } - ], - "motivation": [], - "formats": [ - { - "value": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id", - "thingLabel": "News report", - "thingUri": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id", - "thingId": "46c0517d-9927-4d1a-9954-8c63a3f7a888", - "thingType": ["tagging:TagConcept", "tagging:Format"], - "thingSameAs": [], - "thingEnglishLabel": "Report", - "thingPreferredLabel": "Report", - "thingLabelLanguage": "ru", - "type": "formats" - } - ], - "editorialSensitivity": [ - { - "value": "http://www.bbc.co.uk/things/c6979033-cb72-4d07-9897-adc348a4332e#id", - "type": "editorialSensitivity" - } - ], - "about": [ - { - "value": "http://www.bbc.co.uk/things/23d96e97-b777-413a-a8c5-85a2eda98613#id", - "thingLabel": "Война России с Украиной", - "thingUri": "http://www.bbc.co.uk/things/23d96e97-b777-413a-a8c5-85a2eda98613#id", - "thingId": "23d96e97-b777-413a-a8c5-85a2eda98613", - "thingType": [ - "tagging:TagConcept", - "core:Event", - "core:Thing" - ], - "thingSameAs": [ - "http://www.wikidata.org/entity/Q110254389" - ], - "thingEnglishLabel": "Russia-Ukraine war", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/39267b85-1784-4f4b-80ed-f8cb4a35f337#id", - "thingLabel": "Россия", - "thingUri": "http://www.bbc.co.uk/things/39267b85-1784-4f4b-80ed-f8cb4a35f337#id", - "thingId": "39267b85-1784-4f4b-80ed-f8cb4a35f337", - "thingType": [ - "core:Place", - "tagging:TagConcept", - "core:Thing" - ], - "thingSameAs": ["http://sws.geonames.org/2017370/"], - "thingEnglishLabel": "Russia", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/ee8750ed-a7fb-453f-bfca-2aa8b3fb064c#id", - "thingLabel": "Украина", - "thingUri": "http://www.bbc.co.uk/things/ee8750ed-a7fb-453f-bfca-2aa8b3fb064c#id", - "thingId": "ee8750ed-a7fb-453f-bfca-2aa8b3fb064c", - "thingType": [ - "tagging:TagConcept", - "core:Thing", - "core:Place" - ], - "thingSameAs": [ - "http://dbpedia.org/resource/Ukraine", - "http://www.wikidata.org/entity/Q212", - "http://sws.geonames.org/690791/" - ], - "thingEnglishLabel": "Ukraine", - "type": "about" - } - ] - } - }, - "media": { - "id": "p0fyn6kw", - "subType": "clip", - "format": "video", - "title": "Пробка у Крымского моста. Видео", - "synopses": { - "short": "Пробка у Крымского моста. Видео", - "long": "К утру 3 июля пробка на подъезде к Крымскому мосту растянулась на 13 км. После взрыва осенью 2022 года на мосту был ужесточен досмотр машин.", - "medium": "К утру 3 июля пробка на подъезде к Крымскому мосту растянулась на 13 км. После взрыва осенью 2022 года на мосту был ужесточен досмотр машин." - }, - "imageUrl": "ichef.bbci.co.uk/images/ic/$recipe/p0fynfv5.jpg", - "embedding": true, - "advertising": true, - "caption": "Пробка у Крымского моста. Видео", - "versions": [ - { - "versionId": "p0fynfsw", - "types": ["Editorial"], - "duration": 40, - "durationISO8601": "PT40S", - "warnings": {}, - "availableTerritories": { "uk": true, "nonUk": true }, - "availableFrom": 1688380667000 - } - ], - "imageCopyright": "ASTRA", - "smpKind": "programme", - "type": "media" - }, - "indexImage": { - "id": "130272402", - "subType": "index", - "href": "http://c.files.bbci.co.uk/4FCB/production/_130272402_p0fyn7dw.jpg", - "path": "/cpsprodpb/4FCB/production/_130272402_p0fyn7dw.jpg", - "height": 549, - "width": 976, - "altText": "Пробка на подъезде к Крымскому мосту.", - "copyrightHolder": "ASTRA", - "allowSyndication": false, - "type": "image" - }, - "id": "urn:bbc:ares::asset:russian/media-66087660", - "type": "cps" - } - }, - { - "id": "d32da5a7-0c35-e84c-986b-97a05374dddd", - "rank": 2, - "count": 58, - "urn": "urn:bbc:curie:asset:d32da5a7-0c35-e84c-986b-97a05374dddd", - "promo": { - "headlines": { - "shortHeadline": "\"Впервые отец изнасиловал меня, когда мне было восемь лет\"", - "headline": "\"Впервые отец изнасиловал меня, когда мне было восемь лет\". История Кейти из США" - }, - "locators": { - "assetUri": "/russian/media-47672548", - "curieCpsUrn": "urn:bbc:cps:curie:asset:d32da5a7-0c35-e84c-986b-97a05374dddd", - "assetId": "47672548", - "cpsUrn": "urn:bbc:content:assetUri:russian/media-47672548", - "curie": "http://www.bbc.co.uk/asset/d32da5a7-0c35-e84c-986b-97a05374dddd" - }, - "summary": "В восемь лет отец впервые изнасиловал Кейти, в 11 лет - заставил заниматься сексом за деньги. Много лет он вовлекал ее в проституцию, пока однажды она не обратилась за помощью.", - "timestamp": 1553754549000, - "language": "ru", - "passport": { - "category": { - "categoryId": "http://www.bbc.co.uk/ontologies/applicationlogic-news/News", - "categoryName": "News" - }, - "home": "http://www.bbc.co.uk/ontologies/passport/home/Russian", - "taggings": [] - }, - "media": { - "id": "p074m6s5", - "subType": "clip", - "format": "video", - "title": "\"Впервые отец изнасиловал меня, когда мне было восемь лет\". История Кейти из США", - "synopses": { - "short": "\"Впервые отец изнасиловал меня, когда мне было восемь лет\". История Кейти из США", - "long": "Кейти росла в очень неблагополучной американской семье. Уже в восемь лет ее впервые изнасиловал ее отец. Через три года он уже заставлял оказывать свою дочь сексуальные услуги за деньги. \n\nОтец угрожал Кейти, что если она кому-то о чем-то расскажет, то он причинит вред ее младшей сестре, которая, в отличие от сестры, жила обычной жизнью. Отец помимо прочего выставлял все таким образом, что Кейти считала, что все, что с ней происходить, - это почти нормально. \n\nПо словам Кейти, она смогла решиться попросить помощи, только когда ей исполнилось 28 лет. Организация, в которую она обратилась, помогла ее выехать за пределы штаты и обрести новый дом.", - "medium": "В восемь лет отец впервые изнасиловал Кейти, в одиннадцать заставил заниматься сексом за деньги. Много лет он вовлекал ее в проституцию, пока однажды она не обратилась за помощью." - }, - "imageUrl": "ichef.bbci.co.uk/images/ic/$recipe/p074mj57.jpg", - "embedding": true, - "advertising": true, - "caption": "\"Впервые отец изнасиловал меня, когда мне было восемь лет\". История Кейти из США", - "versions": [ - { - "versionId": "p074m6s7", - "types": ["Original"], - "duration": 157, - "durationISO8601": "PT2M37S", - "warnings": {}, - "availableTerritories": { "uk": true, "nonUk": true }, - "availableFrom": 1553609278000 - } - ], - "smpKind": "programme", - "type": "media" - }, - "indexImage": { - "id": "106142048", - "subType": "index", - "href": "http://c.files.bbci.co.uk/14838/production/_106142048_p074mj57.jpg", - "path": "/cpsprodpb/14838/production/_106142048_p074mj57.jpg", - "height": 549, - "width": 976, - "altText": "Нарисованные девочка с отцом", - "copyrightHolder": "BBC", - "allowSyndication": true, - "type": "image" - }, - "id": "urn:bbc:ares::asset:russian/media-47672548", - "type": "cps" - } - }, - { - "id": "50e1de63-0580-4698-aa51-93701e22c032", - "rank": 3, - "count": 34, - "urn": "urn:bbc:curie:asset:50e1de63-0580-4698-aa51-93701e22c032", - "promo": { - "headlines": { - "shortHeadline": "«Получили в ответ». Что о мятеже Пригожина думают люди в России и Украине", - "headline": "«Получили в ответ». Что о мятеже Пригожина думают люди в России и Украине" - }, - "locators": { - "assetUri": "/russian/media-66023357", - "curieCpsUrn": "urn:bbc:cps:curie:asset:50e1de63-0580-4698-aa51-93701e22c032", - "assetId": "66023357", - "cpsUrn": "urn:bbc:content:assetUri:russian/media-66023357", - "curie": "http://www.bbc.co.uk/asset/50e1de63-0580-4698-aa51-93701e22c032" - }, - "summary": "Агентство Рейтер поговорило с людьми на улицах Москвы, Киева и Ростова-на-Дону.", - "timestamp": 1687788865000, - "language": "ru", - "passport": { - "category": { - "categoryId": "http://www.bbc.co.uk/ontologies/applicationlogic-news/News", - "categoryName": "News" - }, - "language": "ru", - "home": "http://www.bbc.co.uk/ontologies/passport/home/Russian", - "locator": "urn:bbc:cps:curie:asset:50e1de63-0580-4698-aa51-93701e22c032", - "availability": "AVAILABLE", - "taggings": [ - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/ee8750ed-a7fb-453f-bfca-2aa8b3fb064c#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/primaryMediaType", - "value": "http://www.bbc.co.uk/things/ffc98bca-8cff-4ee6-9beb-a6ff6ef3ef9f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/contributor", - "value": "http://www.bbc.co.uk/things/0143a201-5690-4cb1-95a8-03ab60e66bfd#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/39267b85-1784-4f4b-80ed-f8cb4a35f337#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/1dd10a32-b042-47ad-9e32-20aeea4b5323#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/23d96e97-b777-413a-a8c5-85a2eda98613#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/57707fcd-1711-431b-b810-6809a1041c1e#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/assetType", - "value": "http://www.bbc.co.uk/things/22ea958e-2004-4f34-80a7-bf5acad52f6f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/format", - "value": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id" - } - ], - "schemaVersion": "1.4.0", - "publishedState": "PUBLISHED", - "predicates": { - "contributor": [ - { - "value": "http://www.bbc.co.uk/things/0143a201-5690-4cb1-95a8-03ab60e66bfd#id", - "type": "contributor" - } - ], - "assetType": [ - { - "value": "http://www.bbc.co.uk/things/22ea958e-2004-4f34-80a7-bf5acad52f6f#id", - "type": "assetType" - } - ], - "primaryMediaType": [ - { - "value": "http://www.bbc.co.uk/things/ffc98bca-8cff-4ee6-9beb-a6ff6ef3ef9f#id", - "type": "primaryMediaType" - } - ], - "formats": [ - { - "value": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id", - "thingLabel": "News report", - "thingUri": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id", - "thingId": "46c0517d-9927-4d1a-9954-8c63a3f7a888", - "thingType": ["tagging:TagConcept", "tagging:Format"], - "thingSameAs": [], - "thingEnglishLabel": "Report", - "thingPreferredLabel": "Report", - "thingLabelLanguage": "ru", - "type": "formats" - } - ], - "about": [ - { - "value": "http://www.bbc.co.uk/things/1dd10a32-b042-47ad-9e32-20aeea4b5323#id", - "thingLabel": "Евгений Пригожин", - "thingUri": "http://www.bbc.co.uk/things/1dd10a32-b042-47ad-9e32-20aeea4b5323#id", - "thingId": "1dd10a32-b042-47ad-9e32-20aeea4b5323", - "thingType": [ - "core:Thing", - "tagging:TagConcept", - "tagging:Agent", - "core:Person", - "tagging:AmbiguousTerm" - ], - "thingSameAs": [ - "http://www.wikidata.org/entity/Q20850503", - "http://dbpedia.org/resource/Yevgeny_Prigozhin" - ], - "thingEnglishLabel": "Yevgeny Prigozhin", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/23d96e97-b777-413a-a8c5-85a2eda98613#id", - "thingLabel": "Война России с Украиной", - "thingUri": "http://www.bbc.co.uk/things/23d96e97-b777-413a-a8c5-85a2eda98613#id", - "thingId": "23d96e97-b777-413a-a8c5-85a2eda98613", - "thingType": [ - "tagging:TagConcept", - "core:Event", - "core:Thing" - ], - "thingSameAs": [ - "http://www.wikidata.org/entity/Q110254389" - ], - "thingEnglishLabel": "Russia-Ukraine war", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/39267b85-1784-4f4b-80ed-f8cb4a35f337#id", - "thingLabel": "Россия", - "thingUri": "http://www.bbc.co.uk/things/39267b85-1784-4f4b-80ed-f8cb4a35f337#id", - "thingId": "39267b85-1784-4f4b-80ed-f8cb4a35f337", - "thingType": [ - "core:Place", - "tagging:TagConcept", - "core:Thing" - ], - "thingSameAs": ["http://sws.geonames.org/2017370/"], - "thingEnglishLabel": "Russia", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/57707fcd-1711-431b-b810-6809a1041c1e#id", - "thingLabel": "ЧВК “Вагнер”", - "thingUri": "http://www.bbc.co.uk/things/57707fcd-1711-431b-b810-6809a1041c1e#id", - "thingId": "57707fcd-1711-431b-b810-6809a1041c1e", - "thingType": [ - "tagging:Agent", - "core:Thing", - "tagging:AmbiguousTerm", - "tagging:TagConcept", - "core:Organisation" - ], - "thingSameAs": [ - "http://www.wikidata.org/entity/Q36597284", - "http://dbpedia.org/resource/Wagner_Group" - ], - "thingEnglishLabel": "Wagner Group", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/ee8750ed-a7fb-453f-bfca-2aa8b3fb064c#id", - "thingLabel": "Украина", - "thingUri": "http://www.bbc.co.uk/things/ee8750ed-a7fb-453f-bfca-2aa8b3fb064c#id", - "thingId": "ee8750ed-a7fb-453f-bfca-2aa8b3fb064c", - "thingType": [ - "tagging:TagConcept", - "core:Thing", - "core:Place" - ], - "thingSameAs": [ - "http://dbpedia.org/resource/Ukraine", - "http://www.wikidata.org/entity/Q212", - "http://sws.geonames.org/690791/" - ], - "thingEnglishLabel": "Ukraine", - "type": "about" - } - ] - } - }, - "media": { - "id": "p0fxddyl", - "subType": "clip", - "format": "video", - "title": "«Получили в ответ». Что о мятеже Пригожина думают люди в России и Украине", - "synopses": { - "short": "«Получили в ответ». Что о мятеже Пригожина думают люди в России и Украине", - "long": "Основатель ЧВК «Вагнер» Евгений Пригожин объявил о походе на Москву вечером 23 июня. Он занял центр Ростова, но покинул город, когда Александр Лукашенко, по официальной версии, договорился с ним о прекращении мятежа.\n\nЧто об этом думают жители России и Украины? Агентство Рейтер поговорило с людьми на улицах Москвы, Киева и Ростова-на-Дону.", - "medium": "Агентство Рейтер поговорило с людьми на улицах Москвы, Киева и Ростова-на-Дону." - }, - "imageUrl": "ichef.bbci.co.uk/images/ic/$recipe/p0fxdlmv.jpg", - "embedding": true, - "advertising": true, - "caption": "«Получили в ответ». Что о мятеже Пригожина думают люди в России и Украине", - "versions": [ - { - "versionId": "p0fxddyq", - "types": ["Original"], - "duration": 109, - "durationISO8601": "PT1M49S", - "warnings": {}, - "availableTerritories": { "uk": true, "nonUk": true }, - "availableFrom": 1687788492000 - } - ], - "imageCopyright": "Getty Images", - "smpKind": "programme", - "type": "media" - }, - "indexImage": { - "id": "130210297", - "subType": "index", - "href": "http://c.files.bbci.co.uk/13561/production/_130210297_p0fxdlmv.jpg", - "path": "/cpsprodpb/13561/production/_130210297_p0fxdlmv.jpg", - "height": 549, - "width": 976, - "altText": "Танк в Ростове-на-Дону", - "caption": "«Получили в ответ». Что о мятеже Пригожина думают люди в России и Украине", - "copyrightHolder": "Getty Images", - "allowSyndication": true, - "type": "image" - }, - "id": "urn:bbc:ares::asset:russian/media-66023357", - "type": "cps" - } - }, - { - "id": "7fda9a4a-24f5-4dce-86bf-0143d8a5bad3", - "rank": 4, - "count": 28, - "urn": "urn:bbc:curie:asset:7fda9a4a-24f5-4dce-86bf-0143d8a5bad3", - "promo": { - "headlines": { - "shortHeadline": "На Крымском мосту произошел взрыв. Последствия и видео с камер наблюдения", - "headline": "На Крымском мосту произошел взрыв. Последствия и видео с камер наблюдения" - }, - "locators": { - "assetUri": "/russian/media-63186916", - "curieCpsUrn": "urn:bbc:cps:curie:asset:7fda9a4a-24f5-4dce-86bf-0143d8a5bad3", - "assetId": "63186916", - "cpsUrn": "urn:bbc:content:assetUri:russian/media-63186916", - "curie": "http://www.bbc.co.uk/asset/7fda9a4a-24f5-4dce-86bf-0143d8a5bad3" - }, - "summary": "Утром 8 октября на Крымском мосту произошел взрыв. По предварительным данным, взорвалась фура, которая заехала на мост после проверки на КПП.", - "timestamp": 1665236744000, - "language": "ru", - "passport": { - "campaigns": [ - { - "campaignId": "5a988e4739461b000e9dabfc", - "campaignName": "WS - Update me" - } - ], - "language": "ru", - "home": "http://www.bbc.co.uk/ontologies/passport/home/Russian", - "locator": "urn:bbc:cps:curie:asset:7fda9a4a-24f5-4dce-86bf-0143d8a5bad3", - "availability": "AVAILABLE", - "taggings": [ - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/aeec42c4-d361-47a1-9951-67b29e054222#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/editorialSensitivity", - "value": "http://www.bbc.co.uk/things/c6979033-cb72-4d07-9897-adc348a4332e#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/5737116b-5122-49f1-9cf1-0a04b6ca53e7#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/assetType", - "value": "http://www.bbc.co.uk/things/22ea958e-2004-4f34-80a7-bf5acad52f6f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/contributor", - "value": "http://www.bbc.co.uk/things/0143a201-5690-4cb1-95a8-03ab60e66bfd#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/f81420ea-7e12-4e89-8343-a88d2a7fb3c4#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/audience/motivation", - "value": "http://www.bbc.co.uk/things/bf928ac3-b3bd-4d47-924e-cca1bdc29174#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/feb426fd-5ce3-4a10-bc54-2e2f0f83b79e#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/c1400025-cfb7-43cd-8489-91786486f5e3#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/mentions", - "value": "http://www.bbc.co.uk/things/39267b85-1784-4f4b-80ed-f8cb4a35f337#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/primaryMediaType", - "value": "http://www.bbc.co.uk/things/ffc98bca-8cff-4ee6-9beb-a6ff6ef3ef9f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/39267b85-1784-4f4b-80ed-f8cb4a35f337#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/23d96e97-b777-413a-a8c5-85a2eda98613#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/format", - "value": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id" - } - ], - "schemaVersion": "1.4.0", - "publishedState": "PUBLISHED", - "predicates": { - "contributor": [ - { - "value": "http://www.bbc.co.uk/things/0143a201-5690-4cb1-95a8-03ab60e66bfd#id", - "type": "contributor" - } - ], - "assetType": [ - { - "value": "http://www.bbc.co.uk/things/22ea958e-2004-4f34-80a7-bf5acad52f6f#id", - "type": "assetType" - } - ], - "primaryMediaType": [ - { - "value": "http://www.bbc.co.uk/things/ffc98bca-8cff-4ee6-9beb-a6ff6ef3ef9f#id", - "type": "primaryMediaType" - } - ], - "motivation": [], - "formats": [ - { - "value": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id", - "thingLabel": "News report", - "thingUri": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id", - "thingId": "46c0517d-9927-4d1a-9954-8c63a3f7a888", - "thingType": ["tagging:TagConcept", "tagging:Format"], - "thingSameAs": [], - "thingEnglishLabel": "Report", - "thingPreferredLabel": "Report", - "thingLabelLanguage": "ru", - "type": "formats" - } - ], - "editorialSensitivity": [ - { - "value": "http://www.bbc.co.uk/things/c6979033-cb72-4d07-9897-adc348a4332e#id", - "type": "editorialSensitivity" - } - ], - "about": [ - { - "value": "http://www.bbc.co.uk/things/23d96e97-b777-413a-a8c5-85a2eda98613#id", - "thingLabel": "Война России с Украиной", - "thingUri": "http://www.bbc.co.uk/things/23d96e97-b777-413a-a8c5-85a2eda98613#id", - "thingId": "23d96e97-b777-413a-a8c5-85a2eda98613", - "thingType": [ - "tagging:TagConcept", - "core:Event", - "core:Thing" - ], - "thingSameAs": [ - "http://www.wikidata.org/entity/Q110254389" - ], - "thingEnglishLabel": "Russia-Ukraine war", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/39267b85-1784-4f4b-80ed-f8cb4a35f337#id", - "thingLabel": "Россия", - "thingUri": "http://www.bbc.co.uk/things/39267b85-1784-4f4b-80ed-f8cb4a35f337#id", - "thingId": "39267b85-1784-4f4b-80ed-f8cb4a35f337", - "thingType": [ - "core:Place", - "tagging:TagConcept", - "core:Thing" - ], - "thingSameAs": ["http://sws.geonames.org/2017370/"], - "thingEnglishLabel": "Russia", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/5737116b-5122-49f1-9cf1-0a04b6ca53e7#id", - "thingLabel": "Санкции против России", - "thingUri": "http://www.bbc.co.uk/things/5737116b-5122-49f1-9cf1-0a04b6ca53e7#id", - "thingId": "5737116b-5122-49f1-9cf1-0a04b6ca53e7", - "thingType": [ - "core:Theme", - "core:Thing", - "tagging:TagConcept" - ], - "thingSameAs": [], - "thingEnglishLabel": "Russia sanctions", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/aeec42c4-d361-47a1-9951-67b29e054222#id", - "thingLabel": "Крым", - "thingUri": "http://www.bbc.co.uk/things/aeec42c4-d361-47a1-9951-67b29e054222#id", - "thingId": "aeec42c4-d361-47a1-9951-67b29e054222", - "thingType": [ - "tagging:TagConcept", - "core:Thing", - "core:Place" - ], - "thingSameAs": [ - "http://dbpedia.org/resource/Crimea", - "http://sws.geonames.org/703862/", - "http://www.wikidata.org/entity/Q7835" - ], - "thingEnglishLabel": "Crimea", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/c1400025-cfb7-43cd-8489-91786486f5e3#id", - "thingLabel": "2014: кризис в Украине", - "thingUri": "http://www.bbc.co.uk/things/c1400025-cfb7-43cd-8489-91786486f5e3#id", - "thingId": "c1400025-cfb7-43cd-8489-91786486f5e3", - "thingType": [ - "tagging:TagConcept", - "core:Event", - "core:Thing" - ], - "thingSameAs": [ - "http://dbpedia.org/resource/2014_Crimean_crisis" - ], - "thingEnglishLabel": "2014 Ukraine conflict", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/f81420ea-7e12-4e89-8343-a88d2a7fb3c4#id", - "thingLabel": "Коррупция в России", - "thingUri": "http://www.bbc.co.uk/things/f81420ea-7e12-4e89-8343-a88d2a7fb3c4#id", - "thingId": "f81420ea-7e12-4e89-8343-a88d2a7fb3c4", - "thingType": [ - "core:Thing", - "core:Theme", - "tagging:TagConcept" - ], - "thingSameAs": [ - "http://dbpedia.org/resource/Corruption_in_Russia" - ], - "thingEnglishLabel": "Corruption in Russia", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/feb426fd-5ce3-4a10-bc54-2e2f0f83b79e#id", - "thingLabel": "Власть в России", - "thingUri": "http://www.bbc.co.uk/things/feb426fd-5ce3-4a10-bc54-2e2f0f83b79e#id", - "thingId": "feb426fd-5ce3-4a10-bc54-2e2f0f83b79e", - "thingType": [ - "tagging:AmbiguousTerm", - "core:Organisation", - "tagging:Agent", - "tagging:TagConcept", - "core:Thing" - ], - "thingSameAs": [ - "http://dbpedia.org/resource/Government_of_Russia" - ], - "thingEnglishLabel": "Government of Russia", - "type": "about" - } - ] - } - }, - "media": { - "id": "p0d5m2f7", - "subType": "clip", - "format": "video", - "title": "На Крымском мосту произошел взрыв", - "synopses": { - "short": "На Крымском мосту произошел взрыв", - "long": "На Крымском мосту утром 8 октября произошел взрыв. По предварительным данным взорвалась фура, которая заехала на мост после проверки на КПП. \nУкраинские СМИ пишут, что подрыв части моста - операция СБУ. Официально СБУ об ответственности за взрыв пока не объявляла. \n\nВ результате взрыва обрушились три пролета автомобильной дороги, а также загорелись цистерны состава на железной дороге. Минтранс РФ обещал восстановить железную дорогу уже к вечеру. \n\nПо заявлению СК РФ, из-за взрыва на мосту погибло три человека.", - "medium": "Утром 8 октября на Крымском мосту произошел взрыв. По предварительным данным, взорвалась фура, которая заехала на мост после проверки на КПП." - }, - "imageUrl": "ichef.bbci.co.uk/images/ic/$recipe/p0d5m3c6.jpg", - "embedding": true, - "advertising": true, - "caption": "На Крымском мосту произошел взрыв", - "versions": [ - { - "versionId": "p0d5m2fh", - "types": ["Original"], - "duration": 146, - "durationISO8601": "PT2M26S", - "warnings": {}, - "availableTerritories": { "uk": true, "nonUk": true }, - "availableFrom": 1665235869000 - } - ], - "imageCopyright": "BBC", - "smpKind": "programme", - "type": "media" - }, - "indexImage": { - "id": "127018338", - "subType": "index", - "href": "http://c.files.bbci.co.uk/145B5/production/_127018338_p0d5m3c6.jpg", - "path": "/cpsprodpb/145B5/production/_127018338_p0d5m3c6.jpg", - "height": 549, - "width": 976, - "altText": "Крымский мост в дыму", - "copyrightHolder": "BBC", - "allowSyndication": true, - "type": "image" - }, - "id": "urn:bbc:ares::asset:russian/media-63186916", - "type": "cps" - } - }, - { - "id": "0eaa67b3-f53a-437d-9bb4-140894cc93f6", - "rank": 5, - "count": 26, - "urn": "urn:bbc:curie:asset:0eaa67b3-f53a-437d-9bb4-140894cc93f6", - "promo": { - "headlines": { - "shortHeadline": "«Давайте начнем с „Вагнера“». Что Путин говорил о ЧВК за последние годы", - "headline": "«Давайте начнем с „Вагнера“». Что Путин говорил о ЧВК за последние годы" - }, - "locators": { - "assetUri": "/russian/media-66045333", - "curieCpsUrn": "urn:bbc:cps:curie:asset:0eaa67b3-f53a-437d-9bb4-140894cc93f6", - "assetId": "66045333", - "cpsUrn": "urn:bbc:content:assetUri:russian/media-66045333", - "curie": "http://www.bbc.co.uk/asset/0eaa67b3-f53a-437d-9bb4-140894cc93f6" - }, - "summary": "Ранее президент признал, что ЧВК «Вагнер» получала от государства деньги.", - "timestamp": 1687960298000, - "language": "ru", - "passport": { - "category": { - "categoryId": "http://www.bbc.co.uk/ontologies/applicationlogic-news/News", - "categoryName": "News" - }, - "language": "ru", - "home": "http://www.bbc.co.uk/ontologies/passport/home/Russian", - "locator": "urn:bbc:cps:curie:asset:0eaa67b3-f53a-437d-9bb4-140894cc93f6", - "availability": "AVAILABLE", - "taggings": [ - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/primaryMediaType", - "value": "http://www.bbc.co.uk/things/ffc98bca-8cff-4ee6-9beb-a6ff6ef3ef9f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/contributor", - "value": "http://www.bbc.co.uk/things/0143a201-5690-4cb1-95a8-03ab60e66bfd#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/39267b85-1784-4f4b-80ed-f8cb4a35f337#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/23d96e97-b777-413a-a8c5-85a2eda98613#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/57707fcd-1711-431b-b810-6809a1041c1e#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/assetType", - "value": "http://www.bbc.co.uk/things/22ea958e-2004-4f34-80a7-bf5acad52f6f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/format", - "value": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id" - } - ], - "schemaVersion": "1.4.0", - "publishedState": "PUBLISHED", - "predicates": { - "contributor": [ - { - "value": "http://www.bbc.co.uk/things/0143a201-5690-4cb1-95a8-03ab60e66bfd#id", - "type": "contributor" - } - ], - "assetType": [ - { - "value": "http://www.bbc.co.uk/things/22ea958e-2004-4f34-80a7-bf5acad52f6f#id", - "type": "assetType" - } - ], - "primaryMediaType": [ - { - "value": "http://www.bbc.co.uk/things/ffc98bca-8cff-4ee6-9beb-a6ff6ef3ef9f#id", - "type": "primaryMediaType" - } - ], - "formats": [ - { - "value": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id", - "thingLabel": "News report", - "thingUri": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id", - "thingId": "46c0517d-9927-4d1a-9954-8c63a3f7a888", - "thingType": ["tagging:TagConcept", "tagging:Format"], - "thingSameAs": [], - "thingEnglishLabel": "Report", - "thingPreferredLabel": "Report", - "thingLabelLanguage": "ru", - "type": "formats" - } - ], - "about": [ - { - "value": "http://www.bbc.co.uk/things/23d96e97-b777-413a-a8c5-85a2eda98613#id", - "thingLabel": "Война России с Украиной", - "thingUri": "http://www.bbc.co.uk/things/23d96e97-b777-413a-a8c5-85a2eda98613#id", - "thingId": "23d96e97-b777-413a-a8c5-85a2eda98613", - "thingType": [ - "tagging:TagConcept", - "core:Event", - "core:Thing" - ], - "thingSameAs": [ - "http://www.wikidata.org/entity/Q110254389" - ], - "thingEnglishLabel": "Russia-Ukraine war", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/39267b85-1784-4f4b-80ed-f8cb4a35f337#id", - "thingLabel": "Россия", - "thingUri": "http://www.bbc.co.uk/things/39267b85-1784-4f4b-80ed-f8cb4a35f337#id", - "thingId": "39267b85-1784-4f4b-80ed-f8cb4a35f337", - "thingType": [ - "core:Place", - "tagging:TagConcept", - "core:Thing" - ], - "thingSameAs": ["http://sws.geonames.org/2017370/"], - "thingEnglishLabel": "Russia", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/57707fcd-1711-431b-b810-6809a1041c1e#id", - "thingLabel": "ЧВК “Вагнер”", - "thingUri": "http://www.bbc.co.uk/things/57707fcd-1711-431b-b810-6809a1041c1e#id", - "thingId": "57707fcd-1711-431b-b810-6809a1041c1e", - "thingType": [ - "tagging:Agent", - "core:Thing", - "tagging:AmbiguousTerm", - "tagging:TagConcept", - "core:Organisation" - ], - "thingSameAs": [ - "http://www.wikidata.org/entity/Q36597284", - "http://dbpedia.org/resource/Wagner_Group" - ], - "thingEnglishLabel": "Wagner Group", - "type": "about" - } - ] - } - }, - "media": { - "id": "p0fxs1qx", - "subType": "clip", - "format": "video", - "title": "«Давайте начнем с „Вагнера“». Что Путин говорил о ЧВК за последние годы", - "synopses": { - "short": "«Давайте начнем с „Вагнера“». Что Путин говорил о ЧВК за последние годы", - "long": "Российские власти и сам Владимир Путин в течение нескольких лет настаивали, что ЧВК «Вагнер» никак не связана с государством и «вправе работать, продавливать свои бизнес-интересы в любой точке планеты».\n\nПо словам Путина, только с мая 2022 года по май 2023 на денежное содержание бойцов и стимулирующие выплаты ЧВК получила из бюджета более 86 млрд рублей.", - "medium": "Ранее президент признал, что ЧВК «Вагнер» получала от государства деньги." - }, - "imageUrl": "ichef.bbci.co.uk/images/ic/$recipe/p0fxs29q.jpg", - "embedding": true, - "advertising": true, - "caption": "«Давайте начнем с „Вагнера“». Что Путин говорил о ЧВК за последние годы", - "versions": [ - { - "versionId": "p0fxs1r1", - "types": ["Original"], - "duration": 126, - "durationISO8601": "PT2M6S", - "warnings": {}, - "availableTerritories": { "uk": true, "nonUk": true }, - "availableFrom": 1687959993000 - } - ], - "imageCopyright": "TASS", - "smpKind": "programme", - "type": "media" - }, - "indexImage": { - "id": "130230764", - "subType": "index", - "href": "http://c.files.bbci.co.uk/B66F/production/_130230764_p0fxs29q.jpg", - "path": "/cpsprodpb/B66F/production/_130230764_p0fxs29q.jpg", - "height": 549, - "width": 976, - "altText": "Владимир Путин и логотип ЧВК «Вагнер»", - "caption": "«Давайте начнем с „Вагнера“». Что Путин говорил о ЧВК за последние годы", - "copyrightHolder": "TASS", - "allowSyndication": false, - "type": "image" - }, - "id": "urn:bbc:ares::asset:russian/media-66045333", - "type": "cps" - } - }, - { - "id": "ddf1f1df-5058-4781-b505-271c192371c5", - "rank": 6, - "count": 20, - "urn": "urn:bbc:curie:asset:ddf1f1df-5058-4781-b505-271c192371c5", - "promo": { - "headlines": { - "shortHeadline": "Украинское контрнаступление. Би-би-си побывала в освобожденном ВСУ селе Нескучное", - "headline": "Украинское контрнаступление. Би-би-си побывала в освобожденном ВСУ селе Нескучное" - }, - "locators": { - "assetUri": "/russian/media-65922880", - "curieCpsUrn": "urn:bbc:cps:curie:asset:ddf1f1df-5058-4781-b505-271c192371c5", - "assetId": "65922880", - "cpsUrn": "urn:bbc:content:assetUri:russian/media-65922880", - "curie": "http://www.bbc.co.uk/asset/ddf1f1df-5058-4781-b505-271c192371c5" - }, - "summary": "Корреспондент Би-би-си Джеймс Уотерхаус в числе первых журналистов побывал в селах, возвращенных Украиной в ходе контрнаступления.", - "timestamp": 1686849592000, - "language": "ru", - "passport": { - "category": { - "categoryId": "http://www.bbc.co.uk/ontologies/applicationlogic-news/News", - "categoryName": "News" - }, - "campaigns": [ - { - "campaignId": "5a988e4739461b000e9dabfc", - "campaignName": "WS - Update me" - } - ], - "language": "ru", - "home": "http://www.bbc.co.uk/ontologies/passport/home/Russian", - "locator": "urn:bbc:cps:curie:asset:ddf1f1df-5058-4781-b505-271c192371c5", - "availability": "AVAILABLE", - "taggings": [ - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/ee8750ed-a7fb-453f-bfca-2aa8b3fb064c#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/contributor", - "value": "http://www.bbc.co.uk/things/0143a201-5690-4cb1-95a8-03ab60e66bfd#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/39267b85-1784-4f4b-80ed-f8cb4a35f337#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/23d96e97-b777-413a-a8c5-85a2eda98613#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/audience/motivation", - "value": "http://www.bbc.co.uk/things/bf928ac3-b3bd-4d47-924e-cca1bdc29174#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/primaryMediaType", - "value": "http://www.bbc.co.uk/things/ffc98bca-8cff-4ee6-9beb-a6ff6ef3ef9f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/assetType", - "value": "http://www.bbc.co.uk/things/22ea958e-2004-4f34-80a7-bf5acad52f6f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/format", - "value": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id" - } - ], - "schemaVersion": "1.4.0", - "publishedState": "PUBLISHED", - "predicates": { - "contributor": [ - { - "value": "http://www.bbc.co.uk/things/0143a201-5690-4cb1-95a8-03ab60e66bfd#id", - "type": "contributor" - } - ], - "assetType": [ - { - "value": "http://www.bbc.co.uk/things/22ea958e-2004-4f34-80a7-bf5acad52f6f#id", - "type": "assetType" - } - ], - "primaryMediaType": [ - { - "value": "http://www.bbc.co.uk/things/ffc98bca-8cff-4ee6-9beb-a6ff6ef3ef9f#id", - "type": "primaryMediaType" - } - ], - "motivation": [], - "formats": [ - { - "value": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id", - "thingLabel": "News report", - "thingUri": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id", - "thingId": "46c0517d-9927-4d1a-9954-8c63a3f7a888", - "thingType": ["tagging:TagConcept", "tagging:Format"], - "thingSameAs": [], - "thingEnglishLabel": "Report", - "thingPreferredLabel": "Report", - "thingLabelLanguage": "ru", - "type": "formats" - } - ], - "about": [ - { - "value": "http://www.bbc.co.uk/things/23d96e97-b777-413a-a8c5-85a2eda98613#id", - "thingLabel": "Война России с Украиной", - "thingUri": "http://www.bbc.co.uk/things/23d96e97-b777-413a-a8c5-85a2eda98613#id", - "thingId": "23d96e97-b777-413a-a8c5-85a2eda98613", - "thingType": [ - "tagging:TagConcept", - "core:Event", - "core:Thing" - ], - "thingSameAs": [ - "http://www.wikidata.org/entity/Q110254389" - ], - "thingEnglishLabel": "Russia-Ukraine war", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/39267b85-1784-4f4b-80ed-f8cb4a35f337#id", - "thingLabel": "Россия", - "thingUri": "http://www.bbc.co.uk/things/39267b85-1784-4f4b-80ed-f8cb4a35f337#id", - "thingId": "39267b85-1784-4f4b-80ed-f8cb4a35f337", - "thingType": [ - "core:Place", - "tagging:TagConcept", - "core:Thing" - ], - "thingSameAs": ["http://sws.geonames.org/2017370/"], - "thingEnglishLabel": "Russia", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/ee8750ed-a7fb-453f-bfca-2aa8b3fb064c#id", - "thingLabel": "Украина", - "thingUri": "http://www.bbc.co.uk/things/ee8750ed-a7fb-453f-bfca-2aa8b3fb064c#id", - "thingId": "ee8750ed-a7fb-453f-bfca-2aa8b3fb064c", - "thingType": [ - "tagging:TagConcept", - "core:Thing", - "core:Place" - ], - "thingSameAs": [ - "http://dbpedia.org/resource/Ukraine", - "http://www.wikidata.org/entity/Q212", - "http://sws.geonames.org/690791/" - ], - "thingEnglishLabel": "Ukraine", - "type": "about" - } - ] - } - }, - "media": { - "id": "p0fvfyx1", - "subType": "clip", - "format": "video", - "title": "Украинское контрнаступление. Би-би-си побывала в освобожденном ВСУ селе Нескучное", - "synopses": { - "short": "Украинское контрнаступление. Би-би-си побывала в освобожденном ВСУ селе Нескучное", - "long": "В понедельник стало известно, что ВСУ освободили несколько сел в районе населенного пункта Великая Новоселка: Нескучное, Сторожевое, Благодатное и Макаровка. Россия официально не признает успехи противника и заявляет о больших потерях ВСУ. Ни одна из сторон не сообщает точные данные о своих потерях.Репортаж Би-би-си из освобожденного села Нескучное в Донецкой области.", - "medium": "Корреспондент Би-би-си Джеймс Уотерхаус в числе первых журналистов побывал в селах, возвращенных Украиной в ходе контрнаступления." - }, - "imageUrl": "ichef.bbci.co.uk/images/ic/$recipe/p0fvg2bf.jpg", - "embedding": true, - "advertising": true, - "caption": "Украинское контрнаступление. Би-би-си побывала в освобожденном ВСУ селе Нескучное", - "versions": [ - { - "versionId": "p0fvfyx5", - "types": ["Original"], - "duration": 138, - "durationISO8601": "PT2M18S", - "warnings": {}, - "availableTerritories": { "uk": true, "nonUk": true }, - "availableFrom": 1686847698000 - } - ], - "imageCopyright": "BBC", - "smpKind": "programme", - "type": "media" - }, - "indexImage": { - "id": "130104491", - "subType": "index", - "href": "http://c.files.bbci.co.uk/4BF0/production/_130104491_p0fvg2bf.jpg", - "path": "/cpsprodpb/4BF0/production/_130104491_p0fvg2bf.jpg", - "height": 576, - "width": 1024, - "altText": "Джеймс Уотерхаус", - "caption": "Джеймс Уотерхаус", - "copyrightHolder": "BBC", - "allowSyndication": false, - "type": "image" - }, - "id": "urn:bbc:ares::asset:russian/media-65922880", - "type": "cps" - } - }, - { - "id": "6a1d51c2-54c4-4f13-8dcc-4dd3f9f3c3ac", - "rank": 7, - "count": 14, - "urn": "urn:bbc:curie:asset:6a1d51c2-54c4-4f13-8dcc-4dd3f9f3c3ac", - "promo": { - "headlines": { - "shortHeadline": "\"В спальне жуткие следы насилия\". Свидетельства женщин из поселков под Киевом", - "headline": "Изнасилования военного времени. Свидетельства женщин из поселков под Киевом" - }, - "locators": { - "assetUri": "/russian/media-61099941", - "curieCpsUrn": "urn:bbc:cps:curie:asset:6a1d51c2-54c4-4f13-8dcc-4dd3f9f3c3ac", - "assetId": "61099941", - "cpsUrn": "urn:bbc:content:assetUri:russian/media-61099941", - "curie": "http://www.bbc.co.uk/asset/6a1d51c2-54c4-4f13-8dcc-4dd3f9f3c3ac" - }, - "summary": "Из населенных пунктов Украины, оставленных российскими вооруженными силами, все чаще приходят свидетельства об изнасилованиях, которым мирные жители подверглись во время оккупации.", - "timestamp": 1649869484000, - "language": "ru", - "passport": { - "campaigns": [ - { - "campaignId": "5a988e3739461b000e9dabfa", - "campaignName": "WS - Give me perspective" - } - ], - "language": "ru", - "home": "http://www.bbc.co.uk/ontologies/passport/home/Russian", - "locator": "urn:bbc:cps:curie:asset:6a1d51c2-54c4-4f13-8dcc-4dd3f9f3c3ac", - "availability": "AVAILABLE", - "taggings": [ - { - "predicate": "http://www.bbc.co.uk/ontologies/audience/motivation", - "value": "http://www.bbc.co.uk/things/7047e74c-b9ae-4c02-a4a8-748df451ac58#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/editorialSensitivity", - "value": "http://www.bbc.co.uk/things/c6979033-cb72-4d07-9897-adc348a4332e#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/assetType", - "value": "http://www.bbc.co.uk/things/22ea958e-2004-4f34-80a7-bf5acad52f6f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/contributor", - "value": "http://www.bbc.co.uk/things/0143a201-5690-4cb1-95a8-03ab60e66bfd#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/8abd564a-2b8e-401c-9916-34982cb67b55#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/ee8750ed-a7fb-453f-bfca-2aa8b3fb064c#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/e45cb5f8-3c87-4ebd-ac1c-058e9be22862#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/primaryMediaType", - "value": "http://www.bbc.co.uk/things/ffc98bca-8cff-4ee6-9beb-a6ff6ef3ef9f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/faa8885f-9e69-4c29-a8a5-516d508075dc#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/23d96e97-b777-413a-a8c5-85a2eda98613#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/format", - "value": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id" - } - ], - "schemaVersion": "1.4.0", - "publishedState": "PUBLISHED", - "predicates": { - "contributor": [ - { - "value": "http://www.bbc.co.uk/things/0143a201-5690-4cb1-95a8-03ab60e66bfd#id", - "type": "contributor" - } - ], - "assetType": [ - { - "value": "http://www.bbc.co.uk/things/22ea958e-2004-4f34-80a7-bf5acad52f6f#id", - "type": "assetType" - } - ], - "primaryMediaType": [ - { - "value": "http://www.bbc.co.uk/things/ffc98bca-8cff-4ee6-9beb-a6ff6ef3ef9f#id", - "type": "primaryMediaType" - } - ], - "motivation": [], - "formats": [ - { - "value": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id", - "thingLabel": "News report", - "thingUri": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id", - "thingId": "46c0517d-9927-4d1a-9954-8c63a3f7a888", - "thingType": ["tagging:TagConcept", "tagging:Format"], - "thingSameAs": [], - "thingEnglishLabel": "Report", - "thingPreferredLabel": "Report", - "thingLabelLanguage": "ru", - "type": "formats" - } - ], - "editorialSensitivity": [ - { - "value": "http://www.bbc.co.uk/things/c6979033-cb72-4d07-9897-adc348a4332e#id", - "type": "editorialSensitivity" - } - ], - "about": [ - { - "value": "http://www.bbc.co.uk/things/23d96e97-b777-413a-a8c5-85a2eda98613#id", - "thingLabel": "Война России с Украиной", - "thingUri": "http://www.bbc.co.uk/things/23d96e97-b777-413a-a8c5-85a2eda98613#id", - "thingId": "23d96e97-b777-413a-a8c5-85a2eda98613", - "thingType": [ - "tagging:TagConcept", - "core:Event", - "core:Thing" - ], - "thingSameAs": [ - "http://www.wikidata.org/entity/Q110254389" - ], - "thingEnglishLabel": "Russia-Ukraine war", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/8abd564a-2b8e-401c-9916-34982cb67b55#id", - "thingLabel": "Права женщин", - "thingUri": "http://www.bbc.co.uk/things/8abd564a-2b8e-401c-9916-34982cb67b55#id", - "thingId": "8abd564a-2b8e-401c-9916-34982cb67b55", - "thingType": [ - "tagging:TagConcept", - "core:Thing", - "core:Theme" - ], - "thingSameAs": [ - "http://dbpedia.org/resource/Women%27s_rights", - "http://www.wikidata.org/entity/Q223569" - ], - "thingEnglishLabel": "Women's rights", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/e45cb5f8-3c87-4ebd-ac1c-058e9be22862#id", - "thingLabel": "Женщины", - "thingUri": "http://www.bbc.co.uk/things/e45cb5f8-3c87-4ebd-ac1c-058e9be22862#id", - "thingId": "e45cb5f8-3c87-4ebd-ac1c-058e9be22862", - "thingType": [ - "core:Thing", - "tagging:TagConcept", - "core:Theme" - ], - "thingSameAs": [ - "http://www.wikidata.org/entity/Q467", - "http://dbpedia.org/resource/Woman" - ], - "thingEnglishLabel": "Women", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/ee8750ed-a7fb-453f-bfca-2aa8b3fb064c#id", - "thingLabel": "Украина", - "thingUri": "http://www.bbc.co.uk/things/ee8750ed-a7fb-453f-bfca-2aa8b3fb064c#id", - "thingId": "ee8750ed-a7fb-453f-bfca-2aa8b3fb064c", - "thingType": [ - "tagging:TagConcept", - "core:Thing", - "core:Place" - ], - "thingSameAs": [ - "http://dbpedia.org/resource/Ukraine", - "http://www.wikidata.org/entity/Q212", - "http://sws.geonames.org/690791/" - ], - "thingEnglishLabel": "Ukraine", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/faa8885f-9e69-4c29-a8a5-516d508075dc#id", - "thingLabel": "Женское здоровье", - "thingUri": "http://www.bbc.co.uk/things/faa8885f-9e69-4c29-a8a5-516d508075dc#id", - "thingId": "faa8885f-9e69-4c29-a8a5-516d508075dc", - "thingType": [ - "tagging:TagConcept", - "core:Theme", - "core:Thing" - ], - "thingSameAs": [ - "http://www.wikidata.org/entity/Q8031191" - ], - "thingEnglishLabel": "Women's health", - "type": "about" - } - ] - } - }, - "media": { - "id": "p0c143c0", - "subType": "clip", - "format": "video", - "title": "\"В спальне жуткие следы насилия\". Свидетельства женщин из поселков под Киевом", - "synopses": { - "short": "Изнасилования военного времени. Свидетельства женщин из поселков под Киевом", - "long": "Во многих местах на подступах к Киеву, из которых ретировались российские вооруженные силы, мирные жители переживают шок от произошедшего с ними. \nЗначительное число женщин обратились в органы власти с жалобами об изнасилованиях. На местах известны и такие случаи, когда, надругавшись над своими жертвами, насильники убивали их. \n\nКорреспондент Би-би-си на Украине Йогита Лимаи побеседовала с некоторыми из жертв этой войны. Внимание, видео содержит шокирующие кадры.", - "medium": "Из населенных пунктов Украины, оставленных российскими вооруженными силами, все чаще приходят свидетельства об изнасилованиях, которым мирные жители подверглись во время оккупации." - }, - "imageUrl": "ichef.bbci.co.uk/images/ic/$recipe/p0c15hf5.jpg", - "embedding": true, - "advertising": true, - "caption": "\"Мы будем насиловать вас до тех пор, пока вам не будет страшно от мысли о мужчине\"", - "versions": [ - { - "versionId": "p0c143c4", - "types": ["Original"], - "duration": 229, - "durationISO8601": "PT3M49S", - "warnings": {}, - "availableTerritories": { "uk": true, "nonUk": true }, - "availableFrom": 1649865020000 - } - ], - "imageCopyright": "BBC", - "smpKind": "programme", - "type": "media" - }, - "indexImage": { - "id": "124160358", - "subType": "index", - "href": "http://c.files.bbci.co.uk/14D3A/production/_124160358_p0c146kh.jpg", - "path": "/cpsprodpb/14D3A/production/_124160358_p0c146kh.jpg", - "height": 549, - "width": 976, - "altText": "Изнасилования на войне", - "caption": "Изнасилования на войне", - "copyrightHolder": "BBC", - "allowSyndication": true, - "type": "image" - }, - "id": "urn:bbc:ares::asset:russian/media-61099941", - "type": "cps" - } - }, - { - "id": "db1cfd7d-0324-42ce-a0c4-eb173b1678f5", - "rank": 8, - "count": 11, - "urn": "urn:bbc:curie:asset:db1cfd7d-0324-42ce-a0c4-eb173b1678f5", - "promo": { - "headlines": { - "shortHeadline": "Ле-Бурже: пять самых интересных новинок", - "headline": "Ле-Бурже: пять самых интересных новинок" - }, - "locators": { - "assetUri": "/russian/media-66041585", - "curieCpsUrn": "urn:bbc:cps:curie:asset:db1cfd7d-0324-42ce-a0c4-eb173b1678f5", - "assetId": "66041585", - "cpsUrn": "urn:bbc:content:assetUri:russian/media-66041585", - "curie": "http://www.bbc.co.uk/asset/db1cfd7d-0324-42ce-a0c4-eb173b1678f5" - }, - "summary": "Снижение выбросов и военные дроны - главные тренды мировой авиации.", - "timestamp": 1687944550000, - "language": "ru", - "passport": { - "category": { - "categoryId": "http://www.bbc.co.uk/ontologies/applicationlogic-news/News", - "categoryName": "News" - }, - "language": "ru", - "home": "http://www.bbc.co.uk/ontologies/passport/home/Russian", - "locator": "urn:bbc:cps:curie:asset:db1cfd7d-0324-42ce-a0c4-eb173b1678f5", - "availability": "AVAILABLE", - "taggings": [ - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/primaryMediaType", - "value": "http://www.bbc.co.uk/things/ffc98bca-8cff-4ee6-9beb-a6ff6ef3ef9f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/contributor", - "value": "http://www.bbc.co.uk/things/0143a201-5690-4cb1-95a8-03ab60e66bfd#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/8ce9d18a-8023-49bb-b29a-263376b81198#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/assetType", - "value": "http://www.bbc.co.uk/things/22ea958e-2004-4f34-80a7-bf5acad52f6f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/format", - "value": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id" - } - ], - "schemaVersion": "1.4.0", - "publishedState": "PUBLISHED", - "predicates": { - "contributor": [ - { - "value": "http://www.bbc.co.uk/things/0143a201-5690-4cb1-95a8-03ab60e66bfd#id", - "type": "contributor" - } - ], - "assetType": [ - { - "value": "http://www.bbc.co.uk/things/22ea958e-2004-4f34-80a7-bf5acad52f6f#id", - "type": "assetType" - } - ], - "primaryMediaType": [ - { - "value": "http://www.bbc.co.uk/things/ffc98bca-8cff-4ee6-9beb-a6ff6ef3ef9f#id", - "type": "primaryMediaType" - } - ], - "formats": [ - { - "value": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id", - "thingLabel": "News report", - "thingUri": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id", - "thingId": "46c0517d-9927-4d1a-9954-8c63a3f7a888", - "thingType": ["tagging:TagConcept", "tagging:Format"], - "thingSameAs": [], - "thingEnglishLabel": "Report", - "thingPreferredLabel": "Report", - "thingLabelLanguage": "ru", - "type": "formats" - } - ], - "about": [ - { - "value": "http://www.bbc.co.uk/things/8ce9d18a-8023-49bb-b29a-263376b81198#id", - "thingLabel": "Авиация", - "thingUri": "http://www.bbc.co.uk/things/8ce9d18a-8023-49bb-b29a-263376b81198#id", - "thingId": "8ce9d18a-8023-49bb-b29a-263376b81198", - "thingType": [ - "tagging:TagConcept", - "core:Thing", - "core:Theme" - ], - "thingSameAs": [ - "http://dbpedia.org/resource/Aviation", - "http://www.wikidata.org/entity/Q765633" - ], - "thingEnglishLabel": "Air travel", - "type": "about" - } - ] - } - }, - "media": { - "id": "p0fxptpz", - "subType": "clip", - "format": "video", - "title": "Ле-Бурже: пять самых интересных новинок", - "synopses": { - "short": "Ле-Бурже: пять самых интересных новинок", - "long": "Во французском аэропорте Ле-Бурже прошел международный авиакосмический салон. Российских представителей на нем не было. Зато показали летающие аппараты, уже сегодня задающие тренд в развитии авиации.\n\nКорреспондент Би-би-си Павел Аксенов рассказывает о пяти самых интересных новинках Ле-Бурже.", - "medium": "Снижение выбросов и военные дроны - главные тренды мировой авиации." - }, - "imageUrl": "ichef.bbci.co.uk/images/ic/$recipe/p0fxqpf1.jpg", - "embedding": true, - "advertising": true, - "caption": "Ле-Бурже: пять самых интересных новинок", - "versions": [ - { - "versionId": "p0fxptq3", - "types": ["Original"], - "duration": 677, - "durationISO8601": "PT11M17S", - "warnings": {}, - "availableTerritories": { "uk": true, "nonUk": true }, - "availableFrom": 1687942107000 - } - ], - "smpKind": "programme", - "type": "media" - }, - "indexImage": { - "id": "130227039", - "subType": "index", - "href": "http://c.files.bbci.co.uk/16B90/production/_130227039_p0fxpv1y.jpg", - "path": "/cpsprodpb/16B90/production/_130227039_p0fxpv1y.jpg", - "height": 549, - "width": 976, - "altText": "Павел Аксенов", - "copyrightHolder": "BBC", - "allowSyndication": true, - "type": "image" - }, - "id": "urn:bbc:ares::asset:russian/media-66041585", - "type": "cps" - } - }, - { - "id": "190dae3b-7290-4c94-a01b-6311f2aa3ade", - "rank": 9, - "count": 8, - "urn": "urn:bbc:curie:asset:190dae3b-7290-4c94-a01b-6311f2aa3ade", - "promo": { - "headlines": { - "shortHeadline": "Путь Пригожина: как он не дошел от Ростова до Москвы", - "headline": "Путь Пригожина: как он не дошел от Ростова до Москвы" - }, - "locators": { - "assetUri": "/russian/media-66014019", - "curieCpsUrn": "urn:bbc:cps:curie:asset:190dae3b-7290-4c94-a01b-6311f2aa3ade", - "assetId": "66014019", - "cpsUrn": "urn:bbc:content:assetUri:russian/media-66014019", - "curie": "http://www.bbc.co.uk/asset/190dae3b-7290-4c94-a01b-6311f2aa3ade" - }, - "summary": "Хронология событий.", - "timestamp": 1687697775000, - "language": "ru", - "passport": { - "category": { - "categoryId": "http://www.bbc.co.uk/ontologies/applicationlogic-news/News", - "categoryName": "News" - }, - "language": "ru", - "home": "http://www.bbc.co.uk/ontologies/passport/home/Russian", - "locator": "urn:bbc:cps:curie:asset:190dae3b-7290-4c94-a01b-6311f2aa3ade", - "availability": "AVAILABLE", - "taggings": [ - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/primaryMediaType", - "value": "http://www.bbc.co.uk/things/ffc98bca-8cff-4ee6-9beb-a6ff6ef3ef9f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/contributor", - "value": "http://www.bbc.co.uk/things/0143a201-5690-4cb1-95a8-03ab60e66bfd#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/39267b85-1784-4f4b-80ed-f8cb4a35f337#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/1dd10a32-b042-47ad-9e32-20aeea4b5323#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/23d96e97-b777-413a-a8c5-85a2eda98613#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/57707fcd-1711-431b-b810-6809a1041c1e#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/assetType", - "value": "http://www.bbc.co.uk/things/22ea958e-2004-4f34-80a7-bf5acad52f6f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/format", - "value": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id" - } - ], - "schemaVersion": "1.4.0", - "publishedState": "PUBLISHED", - "predicates": { - "contributor": [ - { - "value": "http://www.bbc.co.uk/things/0143a201-5690-4cb1-95a8-03ab60e66bfd#id", - "type": "contributor" - } - ], - "assetType": [ - { - "value": "http://www.bbc.co.uk/things/22ea958e-2004-4f34-80a7-bf5acad52f6f#id", - "type": "assetType" - } - ], - "primaryMediaType": [ - { - "value": "http://www.bbc.co.uk/things/ffc98bca-8cff-4ee6-9beb-a6ff6ef3ef9f#id", - "type": "primaryMediaType" - } - ], - "formats": [ - { - "value": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id", - "thingLabel": "News report", - "thingUri": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id", - "thingId": "46c0517d-9927-4d1a-9954-8c63a3f7a888", - "thingType": ["tagging:TagConcept", "tagging:Format"], - "thingSameAs": [], - "thingEnglishLabel": "Report", - "thingPreferredLabel": "Report", - "thingLabelLanguage": "ru", - "type": "formats" - } - ], - "about": [ - { - "value": "http://www.bbc.co.uk/things/1dd10a32-b042-47ad-9e32-20aeea4b5323#id", - "thingLabel": "Евгений Пригожин", - "thingUri": "http://www.bbc.co.uk/things/1dd10a32-b042-47ad-9e32-20aeea4b5323#id", - "thingId": "1dd10a32-b042-47ad-9e32-20aeea4b5323", - "thingType": [ - "core:Thing", - "tagging:TagConcept", - "tagging:Agent", - "core:Person", - "tagging:AmbiguousTerm" - ], - "thingSameAs": [ - "http://www.wikidata.org/entity/Q20850503", - "http://dbpedia.org/resource/Yevgeny_Prigozhin" - ], - "thingEnglishLabel": "Yevgeny Prigozhin", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/23d96e97-b777-413a-a8c5-85a2eda98613#id", - "thingLabel": "Война России с Украиной", - "thingUri": "http://www.bbc.co.uk/things/23d96e97-b777-413a-a8c5-85a2eda98613#id", - "thingId": "23d96e97-b777-413a-a8c5-85a2eda98613", - "thingType": [ - "tagging:TagConcept", - "core:Event", - "core:Thing" - ], - "thingSameAs": [ - "http://www.wikidata.org/entity/Q110254389" - ], - "thingEnglishLabel": "Russia-Ukraine war", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/39267b85-1784-4f4b-80ed-f8cb4a35f337#id", - "thingLabel": "Россия", - "thingUri": "http://www.bbc.co.uk/things/39267b85-1784-4f4b-80ed-f8cb4a35f337#id", - "thingId": "39267b85-1784-4f4b-80ed-f8cb4a35f337", - "thingType": [ - "core:Place", - "tagging:TagConcept", - "core:Thing" - ], - "thingSameAs": ["http://sws.geonames.org/2017370/"], - "thingEnglishLabel": "Russia", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/57707fcd-1711-431b-b810-6809a1041c1e#id", - "thingLabel": "ЧВК “Вагнер”", - "thingUri": "http://www.bbc.co.uk/things/57707fcd-1711-431b-b810-6809a1041c1e#id", - "thingId": "57707fcd-1711-431b-b810-6809a1041c1e", - "thingType": [ - "tagging:Agent", - "core:Thing", - "tagging:AmbiguousTerm", - "tagging:TagConcept", - "core:Organisation" - ], - "thingSameAs": [ - "http://www.wikidata.org/entity/Q36597284", - "http://dbpedia.org/resource/Wagner_Group" - ], - "thingEnglishLabel": "Wagner Group", - "type": "about" - } - ] - } - }, - "media": { - "id": "p0fx7cr8", - "subType": "clip", - "format": "video", - "title": "Путь Пригожина: как он не дошел от Ростова до Москвы", - "synopses": { - "short": "Путь Пригожина: как он не дошел от Ростова до Москвы", - "long": "Глава ЧВК «Вагнер» Евгений Пригожин больше суток держал в напряжении всю страну. Но закончилось все так же внезапно, как и началось. Но что именно произошло и в чем была суть конфликта? Русская служба Би-би-си восстановила последовательность событий.", - "medium": "Хронология событий." - }, - "imageUrl": "ichef.bbci.co.uk/images/ic/$recipe/p0fx7d68.jpg", - "embedding": true, - "advertising": true, - "caption": "Путь Пригожина: как он не дошел от Ростова до Москвы", - "versions": [ - { - "versionId": "p0fx7crd", - "types": ["Original"], - "duration": 668, - "durationISO8601": "PT11M8S", - "warnings": {}, - "availableTerritories": { "uk": true, "nonUk": true }, - "availableFrom": 1687697342000 - } - ], - "imageCopyright": "TASS", - "smpKind": "programme", - "type": "media" - }, - "indexImage": { - "id": "130201158", - "subType": "index", - "href": "http://c.files.bbci.co.uk/14C76/production/_130201158_p0fx7d68.jpg", - "path": "/cpsprodpb/14C76/production/_130201158_p0fx7d68.jpg", - "height": 549, - "width": 976, - "altText": "Евгений Пригожин в машине фотографируется с жителем Ростова-На-Дону", - "caption": "Путь Пригожина: как он не дошел от Ростова до Москвы", - "copyrightHolder": "TASS", - "allowSyndication": false, - "type": "image" - }, - "id": "urn:bbc:ares::asset:russian/media-66014019", - "type": "cps" - } - }, - { - "id": "6ee076c6-927a-464c-bd79-183dfa75e6b8", - "rank": 10, - "count": 7, - "urn": "urn:bbc:curie:asset:6ee076c6-927a-464c-bd79-183dfa75e6b8", - "promo": { - "headlines": { - "shortHeadline": "Как девушки из Северной Кореи бежали из секс-рабства в Китае", - "headline": "Как девушки из Северной Кореи бежали из секс-рабства в Китае" - }, - "locators": { - "assetUri": "/russian/media-46925850", - "curieCpsUrn": "urn:bbc:cps:curie:asset:6ee076c6-927a-464c-bd79-183dfa75e6b8", - "assetId": "46925850", - "cpsUrn": "urn:bbc:content:assetUri:russian/media-46925850", - "curie": "http://www.bbc.co.uk/asset/6ee076c6-927a-464c-bd79-183dfa75e6b8" - }, - "summary": "Миру и Цзиюнь удерживали годами в квартире в Китае и заставляли предоставлять секс-услуги онлайн.", - "timestamp": 1548144089000, - "language": "ru", - "passport": { - "category": { - "categoryId": "http://www.bbc.co.uk/ontologies/applicationlogic-news/Feature", - "categoryName": "Feature" - }, - "campaigns": [ - { - "campaignId": "5a988e1739461b000e9dabf6", - "campaignName": "CS" - } - ], - "home": "http://www.bbc.co.uk/ontologies/passport/home/Russian", - "taggings": [] - }, - "media": { - "id": "p06yq0y2", - "subType": "clip", - "format": "video", - "title": "Как девушки из Северной Кореи бежали из онлайн-секс рабства в Китае", - "synopses": { - "short": "Как девушки из Северной Кореи бежали из онлайн-секс рабства в Китае", - "long": "Миру и Цзиюнь удерживали годами в квартире в Китае и заставляли предоставляя секс-услуги онлайн. Девушкам помог бежать пастор Чхун Кивон. \nОн отвез их в посольство Южной Кореи в другой стране. Какое-то время девушки будут жить в центре для переселенцев и готовиться к новой жизни. \nЦзиюнь насильно удерживали восемь лет, а Миру – пять. Цзиюнь даже пыталась покончить с собой." - }, - "imageUrl": "ichef.bbci.co.uk/images/ic/$recipe/p06yrcxg.jpg", - "embedding": true, - "advertising": true, - "caption": "2 девушки из Северной Кореи бежали из онлайн-секс рабства в Китае", - "versions": [ - { - "versionId": "p06yq0y4", - "types": ["Original"], - "duration": 170, - "durationISO8601": "PT2M50S", - "warnings": {}, - "availableTerritories": { "uk": true, "nonUk": true }, - "availableFrom": 1548088502000 - } - ], - "smpKind": "programme", - "type": "media" - }, - "indexImage": { - "id": "105198131", - "subType": "index", - "href": "http://c.files.bbci.co.uk/3385/production/_105198131_p06yq24k.jpg", - "path": "/cpsprodpb/3385/production/_105198131_p06yq24k.jpg", - "height": 549, - "width": 976, - "altText": "Кадры побега.", - "copyrightHolder": "Durihana ", - "allowSyndication": false, - "type": "image" - }, - "id": "urn:bbc:ares::asset:russian/media-46925850", - "type": "cps" - } - }, - { - "id": "f11ba4ea-4536-8e43-993c-df1be2ca575c", - "rank": 11, - "count": 6, - "urn": "urn:bbc:curie:asset:f11ba4ea-4536-8e43-993c-df1be2ca575c", - "promo": { - "headlines": { - "shortHeadline": "Как снимок гей-пары из Петербурга стал фотографией года World Press Photo", - "headline": "Как снимок гей-пары из Петербурга стал фотографией года World Press Photo" - }, - "locators": { - "assetUri": "/russian/media-50894096", - "curieCpsUrn": "urn:bbc:cps:curie:asset:f11ba4ea-4536-8e43-993c-df1be2ca575c", - "assetId": "50894096", - "cpsUrn": "urn:bbc:content:assetUri:russian/media-50894096", - "curie": "http://www.bbc.co.uk/asset/f11ba4ea-4536-8e43-993c-df1be2ca575c" - }, - "summary": "В 2015 году фотография гей пары из Петербурга стала снимком года World Press Photo. Русская служба Би-би-си поговорила с героем снимка об уличном активизме и гомофобии в России.", - "timestamp": 1577100607000, - "language": "ru", - "passport": { - "category": { - "categoryId": "http://www.bbc.co.uk/ontologies/applicationlogic-news/Feature", - "categoryName": "Feature" - }, - "campaigns": [ - { - "campaignId": "5a988e3739461b000e9dabfa", - "campaignName": "WS - Give me perspective" - } - ], - "home": "http://www.bbc.co.uk/ontologies/passport/home/Russian", - "taggings": [] - }, - "media": { - "id": "p07yrp6l", - "subType": "clip", - "format": "video", - "title": "Как снимок гей-пары из Петербурга стал фотографией года World Press Photo", - "synopses": { - "short": "Как снимок гей-пары из Петербурга стал фотографией года World Press Photo", - "long": "\"Если раньше для меня эта фотография была глубокой любовью, страстью, то сейчас это больше оплакивание\", - рассказывает Джон. \nВ 2015 году фотография гей пары из Петербурга стала снимком года World Press Photo. \nРусская служба Би-би-си поговорила с одним из героев снимка о судьбе Алекса и Джона, уличном активизме и гомофобии в России.", - "medium": "В 2015 году фотография гей пары из Петербурга стала снимком года World Press Photo. Русская служба Би-би-си поговорила с героем снимка об уличном активизме и гомофобии в России." - }, - "imageUrl": "ichef.bbci.co.uk/images/ic/$recipe/p07yrs38.jpg", - "embedding": true, - "advertising": true, - "caption": "Как снимок гей-пары из Петербурга стал фотографией года World Press Photo", - "versions": [ - { - "versionId": "p07yrp6n", - "types": ["Original"], - "duration": 637, - "durationISO8601": "PT10M37S", - "warnings": {}, - "availableTerritories": { "uk": true, "nonUk": true }, - "availableFrom": 1577099684000 - } - ], - "imageCopyright": "BBC", - "smpKind": "programme", - "type": "media" - }, - "indexImage": { - "id": "110282177", - "subType": "index", - "href": "http://c.files.bbci.co.uk/12D48/production/_110282177_p07yrs38.jpg", - "path": "/cpsprodpb/12D48/production/_110282177_p07yrs38.jpg", - "height": 549, - "width": 976, - "altText": "Фото Mads Nissen", - "caption": "Алекс и Джон", - "copyrightHolder": "Mads Nissen", - "allowSyndication": false, - "type": "image" - }, - "id": "urn:bbc:ares::asset:russian/media-50894096", - "type": "cps" - } - }, - { - "id": "c54e53b5-30d8-445b-a962-052913417297", - "rank": 12, - "count": 6, - "urn": "urn:bbc:curie:asset:c54e53b5-30d8-445b-a962-052913417297", - "promo": { - "headlines": { - "shortHeadline": "Мятеж ЧВК «Вагнер»: что происходит в Ростове-на-Дону?", - "headline": "Мятеж ЧВК «Вагнер»: что происходит в Ростове-на-Дону?" - }, - "locators": { - "assetUri": "/russian/media-66008523", - "curieCpsUrn": "urn:bbc:cps:curie:asset:c54e53b5-30d8-445b-a962-052913417297", - "assetId": "66008523", - "cpsUrn": "urn:bbc:content:assetUri:russian/media-66008523", - "curie": "http://www.bbc.co.uk/asset/c54e53b5-30d8-445b-a962-052913417297" - }, - "summary": "Власти признали, что в Ростове-на-Дону «фактически заблокирована работа органов гражданского и военного управления». Штаб заняли наемники ЧВК «Вагнер».", - "timestamp": 1687603380000, - "language": "ru", - "passport": { - "campaigns": [ - { - "campaignId": "5a988e4739461b000e9dabfc", - "campaignName": "WS - Update me" - } - ], - "language": "ru", - "home": "http://www.bbc.co.uk/ontologies/passport/home/Russian", - "locator": "urn:bbc:cps:curie:asset:c54e53b5-30d8-445b-a962-052913417297", - "availability": "AVAILABLE", - "taggings": [ - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/contributor", - "value": "http://www.bbc.co.uk/things/0143a201-5690-4cb1-95a8-03ab60e66bfd#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/39267b85-1784-4f4b-80ed-f8cb4a35f337#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/c3507589-c693-4487-8ecb-6db004e38b6f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/1dd10a32-b042-47ad-9e32-20aeea4b5323#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/7fd6ee44-38a3-4fe3-a40f-7b4f8f72c67f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/23d96e97-b777-413a-a8c5-85a2eda98613#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/feb426fd-5ce3-4a10-bc54-2e2f0f83b79e#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/57707fcd-1711-431b-b810-6809a1041c1e#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/audience/motivation", - "value": "http://www.bbc.co.uk/things/bf928ac3-b3bd-4d47-924e-cca1bdc29174#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/primaryMediaType", - "value": "http://www.bbc.co.uk/things/ffc98bca-8cff-4ee6-9beb-a6ff6ef3ef9f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/assetType", - "value": "http://www.bbc.co.uk/things/22ea958e-2004-4f34-80a7-bf5acad52f6f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/editorialSensitivity", - "value": "http://www.bbc.co.uk/things/c6979033-cb72-4d07-9897-adc348a4332e#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/format", - "value": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id" - } - ], - "schemaVersion": "1.4.0", - "publishedState": "PUBLISHED", - "predicates": { - "contributor": [ - { - "value": "http://www.bbc.co.uk/things/0143a201-5690-4cb1-95a8-03ab60e66bfd#id", - "type": "contributor" - } - ], - "assetType": [ - { - "value": "http://www.bbc.co.uk/things/22ea958e-2004-4f34-80a7-bf5acad52f6f#id", - "type": "assetType" - } - ], - "primaryMediaType": [ - { - "value": "http://www.bbc.co.uk/things/ffc98bca-8cff-4ee6-9beb-a6ff6ef3ef9f#id", - "type": "primaryMediaType" - } - ], - "motivation": [], - "formats": [ - { - "value": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id", - "thingLabel": "News report", - "thingUri": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id", - "thingId": "46c0517d-9927-4d1a-9954-8c63a3f7a888", - "thingType": ["tagging:TagConcept", "tagging:Format"], - "thingSameAs": [], - "thingEnglishLabel": "Report", - "thingPreferredLabel": "Report", - "thingLabelLanguage": "ru", - "type": "formats" - } - ], - "editorialSensitivity": [ - { - "value": "http://www.bbc.co.uk/things/c6979033-cb72-4d07-9897-adc348a4332e#id", - "type": "editorialSensitivity" - } - ], - "about": [ - { - "value": "http://www.bbc.co.uk/things/1dd10a32-b042-47ad-9e32-20aeea4b5323#id", - "thingLabel": "Евгений Пригожин", - "thingUri": "http://www.bbc.co.uk/things/1dd10a32-b042-47ad-9e32-20aeea4b5323#id", - "thingId": "1dd10a32-b042-47ad-9e32-20aeea4b5323", - "thingType": [ - "core:Thing", - "tagging:TagConcept", - "tagging:Agent", - "core:Person", - "tagging:AmbiguousTerm" - ], - "thingSameAs": [ - "http://www.wikidata.org/entity/Q20850503", - "http://dbpedia.org/resource/Yevgeny_Prigozhin" - ], - "thingEnglishLabel": "Yevgeny Prigozhin", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/23d96e97-b777-413a-a8c5-85a2eda98613#id", - "thingLabel": "Война России с Украиной", - "thingUri": "http://www.bbc.co.uk/things/23d96e97-b777-413a-a8c5-85a2eda98613#id", - "thingId": "23d96e97-b777-413a-a8c5-85a2eda98613", - "thingType": [ - "tagging:TagConcept", - "core:Event", - "core:Thing" - ], - "thingSameAs": [ - "http://www.wikidata.org/entity/Q110254389" - ], - "thingEnglishLabel": "Russia-Ukraine war", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/39267b85-1784-4f4b-80ed-f8cb4a35f337#id", - "thingLabel": "Россия", - "thingUri": "http://www.bbc.co.uk/things/39267b85-1784-4f4b-80ed-f8cb4a35f337#id", - "thingId": "39267b85-1784-4f4b-80ed-f8cb4a35f337", - "thingType": [ - "core:Place", - "tagging:TagConcept", - "core:Thing" - ], - "thingSameAs": ["http://sws.geonames.org/2017370/"], - "thingEnglishLabel": "Russia", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/57707fcd-1711-431b-b810-6809a1041c1e#id", - "thingLabel": "ЧВК “Вагнер”", - "thingUri": "http://www.bbc.co.uk/things/57707fcd-1711-431b-b810-6809a1041c1e#id", - "thingId": "57707fcd-1711-431b-b810-6809a1041c1e", - "thingType": [ - "tagging:Agent", - "core:Thing", - "tagging:AmbiguousTerm", - "tagging:TagConcept", - "core:Organisation" - ], - "thingSameAs": [ - "http://www.wikidata.org/entity/Q36597284", - "http://dbpedia.org/resource/Wagner_Group" - ], - "thingEnglishLabel": "Wagner Group", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/7fd6ee44-38a3-4fe3-a40f-7b4f8f72c67f#id", - "thingLabel": "Владимир Путин", - "thingUri": "http://www.bbc.co.uk/things/7fd6ee44-38a3-4fe3-a40f-7b4f8f72c67f#id", - "thingId": "7fd6ee44-38a3-4fe3-a40f-7b4f8f72c67f", - "thingType": [ - "core:Thing", - "tagging:Agent", - "tagging:TagConcept", - "core:Person", - "tagging:AmbiguousTerm" - ], - "thingSameAs": [ - "http://www.imdb.com/name/nm1269884/", - "http://dbpedia.org/resource/Vladimir_Putin", - "http://musicbrainz.org/artist/833f5372-a2a5-4932-8a5c-399184f29541#_", - "http://www.wikidata.org/entity/Q7747" - ], - "thingEnglishLabel": "Vladimir Putin", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/c3507589-c693-4487-8ecb-6db004e38b6f#id", - "thingLabel": "Регионы России", - "thingUri": "http://www.bbc.co.uk/things/c3507589-c693-4487-8ecb-6db004e38b6f#id", - "thingId": "c3507589-c693-4487-8ecb-6db004e38b6f", - "thingType": [ - "core:Theme", - "tagging:TagConcept", - "core:Thing" - ], - "thingSameAs": [], - "thingEnglishLabel": "Russian regions", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/feb426fd-5ce3-4a10-bc54-2e2f0f83b79e#id", - "thingLabel": "Власть в России", - "thingUri": "http://www.bbc.co.uk/things/feb426fd-5ce3-4a10-bc54-2e2f0f83b79e#id", - "thingId": "feb426fd-5ce3-4a10-bc54-2e2f0f83b79e", - "thingType": [ - "tagging:AmbiguousTerm", - "core:Organisation", - "tagging:Agent", - "tagging:TagConcept", - "core:Thing" - ], - "thingSameAs": [ - "http://dbpedia.org/resource/Government_of_Russia" - ], - "thingEnglishLabel": "Government of Russia", - "type": "about" - } - ] - } - }, - "media": { - "id": "p0fx327t", - "subType": "clip", - "format": "video", - "title": "Мятеж ЧВК \"Вагнер\": что происходит в Ростове-на-Дону?", - "synopses": { - "short": "Мятеж ЧВК \"Вагнер\": что происходит в Ростове-на-Дону?", - "long": "Наемники из ЧВК «Вагнер» во главе с Евгением Пригожиным заблокировали военные объекты в Ростове-на-Дону. Владимир Путин в своем обращении признал, что в городе \"фактически заблокирована работа органов гражданского и военного управления\". \n\nФСБ завела уголовное дело о призывах к вооруженному мятежу. Режим контртеррористической операции введен в ряде областей и городов, в том числе и в Москве.\n\nБи-би-си собрала кадры с улиц Ростова-на-Дону, где сейчас разворачиваются основные события.", - "medium": "Власти признали, что в Ростове-на-Дону \"фактически заблокирована работа органов гражданского и военного управления\". Штаб заняли наемники ЧВК \"Вагнер\"." - }, - "imageUrl": "ichef.bbci.co.uk/images/ic/$recipe/p0fx34g0.jpg", - "embedding": true, - "advertising": true, - "caption": "Мятеж ЧВК «Вагнер»: что происходит в Ростове-на-Дону?", - "versions": [ - { - "versionId": "p0fx3280", - "types": ["Original"], - "duration": 161, - "durationISO8601": "PT2M41S", - "warnings": {}, - "availableTerritories": { "uk": true, "nonUk": true }, - "availableFrom": 1687603172000 - } - ], - "imageCopyright": "Дмитрий Бедросян", - "smpKind": "programme", - "type": "media" - }, - "indexImage": { - "id": "130195512", - "subType": "index", - "href": "http://c.files.bbci.co.uk/5437/production/_130195512_p0fx34g0.jpg", - "path": "/cpsprodpb/5437/production/_130195512_p0fx34g0.jpg", - "height": 549, - "width": 976, - "altText": "Ситуация в Ростове-на-дону после мятежа ЧВК \"Вагнер\".", - "copyrightHolder": "Дмитрий Бедросян", - "allowSyndication": false, - "type": "image" - }, - "id": "urn:bbc:ares::asset:russian/media-66008523", - "type": "cps" - } - }, - { - "id": "09c82a8d-1190-437d-ab26-608ea4ab8a1b", - "rank": 13, - "count": 6, - "urn": "urn:bbc:curie:asset:09c82a8d-1190-437d-ab26-608ea4ab8a1b", - "promo": { - "headlines": { - "shortHeadline": "Митинг против США в Северной Корее. Видео", - "headline": "Митинг против США в Северной Корее. Видео" - }, - "locators": { - "assetUri": "/russian/media-66034469", - "curieCpsUrn": "urn:bbc:cps:curie:asset:09c82a8d-1190-437d-ab26-608ea4ab8a1b", - "assetId": "66034469", - "cpsUrn": "urn:bbc:content:assetUri:russian/media-66034469", - "curie": "http://www.bbc.co.uk/asset/09c82a8d-1190-437d-ab26-608ea4ab8a1b" - }, - "summary": "В Пхеньяне прошел антиамериканский митинг. На стадионе и в других районах города собрались около 120 000 человек.", - "timestamp": 1687874494000, - "language": "ru", - "passport": { - "category": { - "categoryId": "http://www.bbc.co.uk/ontologies/applicationlogic-news/News", - "categoryName": "News" - }, - "language": "ru", - "home": "http://www.bbc.co.uk/ontologies/passport/home/Russian", - "locator": "urn:bbc:cps:curie:asset:09c82a8d-1190-437d-ab26-608ea4ab8a1b", - "availability": "AVAILABLE", - "taggings": [ - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/primaryMediaType", - "value": "http://www.bbc.co.uk/things/ffc98bca-8cff-4ee6-9beb-a6ff6ef3ef9f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/contributor", - "value": "http://www.bbc.co.uk/things/0143a201-5690-4cb1-95a8-03ab60e66bfd#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/82857f8e-8134-462a-bb32-b7b14f4eab75#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/590ec892-07c1-49d5-b7b7-1de0b05d0500#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/assetType", - "value": "http://www.bbc.co.uk/things/22ea958e-2004-4f34-80a7-bf5acad52f6f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/format", - "value": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id" - } - ], - "schemaVersion": "1.4.0", - "publishedState": "PUBLISHED", - "predicates": { - "contributor": [ - { - "value": "http://www.bbc.co.uk/things/0143a201-5690-4cb1-95a8-03ab60e66bfd#id", - "type": "contributor" - } - ], - "assetType": [ - { - "value": "http://www.bbc.co.uk/things/22ea958e-2004-4f34-80a7-bf5acad52f6f#id", - "type": "assetType" - } - ], - "primaryMediaType": [ - { - "value": "http://www.bbc.co.uk/things/ffc98bca-8cff-4ee6-9beb-a6ff6ef3ef9f#id", - "type": "primaryMediaType" - } - ], - "formats": [ - { - "value": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id", - "thingLabel": "News report", - "thingUri": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id", - "thingId": "46c0517d-9927-4d1a-9954-8c63a3f7a888", - "thingType": ["tagging:TagConcept", "tagging:Format"], - "thingSameAs": [], - "thingEnglishLabel": "Report", - "thingPreferredLabel": "Report", - "thingLabelLanguage": "ru", - "type": "formats" - } - ], - "about": [ - { - "value": "http://www.bbc.co.uk/things/590ec892-07c1-49d5-b7b7-1de0b05d0500#id", - "thingLabel": "Северная Корея", - "thingUri": "http://www.bbc.co.uk/things/590ec892-07c1-49d5-b7b7-1de0b05d0500#id", - "thingId": "590ec892-07c1-49d5-b7b7-1de0b05d0500", - "thingType": [ - "core:Place", - "tagging:TagConcept", - "core:Thing" - ], - "thingSameAs": ["http://sws.geonames.org/1873107/"], - "thingEnglishLabel": "North Korea", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/82857f8e-8134-462a-bb32-b7b14f4eab75#id", - "thingLabel": "США", - "thingUri": "http://www.bbc.co.uk/things/82857f8e-8134-462a-bb32-b7b14f4eab75#id", - "thingId": "82857f8e-8134-462a-bb32-b7b14f4eab75", - "thingType": [ - "tagging:TagConcept", - "core:Place", - "core:Thing" - ], - "thingSameAs": ["http://sws.geonames.org/6252001/"], - "thingEnglishLabel": "United States", - "type": "about" - } - ] - } - }, - "media": { - "id": "p0fxkq1p", - "subType": "clip", - "format": "video", - "title": "Митинг против США в Северной Корее. Видео", - "synopses": { - "short": "Митинг против США в Северной Корее. Видео", - "long": "В столице Северной Корее в Пхеньяне прошел митинг против США. На стадионе и в других районах города собрались около 120 000 человек, которые выкрикивали антиамериканские лозунги.\n\nНа огромных плакатах было написано: \"Все территория США находится в зоне досягаемости для нашего оружия!\"\n\nОдин из митингов прошел около корабля ВМС США USS Pueblo, который КНДР захватила в 1968 году.", - "medium": "В Пхеньяне прошел антиамериканский митинг. На стадионе и в других районах города собрались около 120 000 человек." - }, - "imageUrl": "ichef.bbci.co.uk/images/ic/$recipe/p0fxkwjp.jpg", - "embedding": true, - "advertising": true, - "caption": "Митинг против США в Северной Корее. Видео", - "versions": [ - { - "versionId": "p0fxkq20", - "types": ["Original"], - "duration": 71, - "durationISO8601": "PT1M11S", - "warnings": {}, - "availableTerritories": { "uk": true, "nonUk": true }, - "availableFrom": 1687871772000 - } - ], - "imageCopyright": "BBC", - "smpKind": "programme", - "type": "media" - }, - "indexImage": { - "id": "130220200", - "subType": "index", - "href": "http://c.files.bbci.co.uk/00CA/production/_130220200_p0fxkwjp.jpg", - "path": "/cpsprodpb/00CA/production/_130220200_p0fxkwjp.jpg", - "height": 549, - "width": 976, - "altText": "Плакат, где ракеты летят на США", - "caption": "Митинг против США в Северной Корее", - "copyrightHolder": "BBC", - "allowSyndication": true, - "type": "image" - }, - "id": "urn:bbc:ares::asset:russian/media-66034469", - "type": "cps" - } - }, - { - "id": "f77409d1-b76c-4806-99ee-dce68a9fa6fa", - "rank": 14, - "count": 5, - "urn": "urn:bbc:curie:asset:f77409d1-b76c-4806-99ee-dce68a9fa6fa", - "promo": { - "headlines": { - "shortHeadline": "Мятеж, измена, удар в спину. Главное из обращения Путина о мятеже ЧВК «Вагнер»", - "headline": "Мятеж, измена, удар в спину. Главное из обращения Путина о мятеже ЧВК «Вагнер»" - }, - "locators": { - "assetUri": "/russian/media-66007597", - "curieCpsUrn": "urn:bbc:cps:curie:asset:f77409d1-b76c-4806-99ee-dce68a9fa6fa", - "assetId": "66007597", - "cpsUrn": "urn:bbc:content:assetUri:russian/media-66007597", - "curie": "http://www.bbc.co.uk/asset/f77409d1-b76c-4806-99ee-dce68a9fa6fa" - }, - "summary": "Владимир Путин выступил с обращением к россиянам. Он назвал мятеж Евгения Пригожина изменой и ударом в спину и пообещал «жесткие действия по защите» страны.", - "timestamp": 1687594898000, - "language": "ru", - "passport": { - "campaigns": [ - { - "campaignId": "5a988e4739461b000e9dabfc", - "campaignName": "WS - Update me" - } - ], - "language": "ru", - "home": "http://www.bbc.co.uk/ontologies/passport/home/Russian", - "locator": "urn:bbc:cps:curie:asset:f77409d1-b76c-4806-99ee-dce68a9fa6fa", - "availability": "AVAILABLE", - "taggings": [ - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/contributor", - "value": "http://www.bbc.co.uk/things/0143a201-5690-4cb1-95a8-03ab60e66bfd#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/contributor", - "value": "http://www.bbc.co.uk/things/feb426fd-5ce3-4a10-bc54-2e2f0f83b79e#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/39267b85-1784-4f4b-80ed-f8cb4a35f337#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/1dd10a32-b042-47ad-9e32-20aeea4b5323#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/7fd6ee44-38a3-4fe3-a40f-7b4f8f72c67f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/23d96e97-b777-413a-a8c5-85a2eda98613#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/57707fcd-1711-431b-b810-6809a1041c1e#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/audience/motivation", - "value": "http://www.bbc.co.uk/things/bf928ac3-b3bd-4d47-924e-cca1bdc29174#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/primaryMediaType", - "value": "http://www.bbc.co.uk/things/ffc98bca-8cff-4ee6-9beb-a6ff6ef3ef9f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/assetType", - "value": "http://www.bbc.co.uk/things/22ea958e-2004-4f34-80a7-bf5acad52f6f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/editorialSensitivity", - "value": "http://www.bbc.co.uk/things/c6979033-cb72-4d07-9897-adc348a4332e#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/format", - "value": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id" - } - ], - "schemaVersion": "1.4.0", - "publishedState": "PUBLISHED", - "predicates": { - "contributor": [ - { - "value": "http://www.bbc.co.uk/things/0143a201-5690-4cb1-95a8-03ab60e66bfd#id", - "type": "contributor" - }, - { - "value": "http://www.bbc.co.uk/things/feb426fd-5ce3-4a10-bc54-2e2f0f83b79e#id", - "type": "contributor" - } - ], - "assetType": [ - { - "value": "http://www.bbc.co.uk/things/22ea958e-2004-4f34-80a7-bf5acad52f6f#id", - "type": "assetType" - } - ], - "primaryMediaType": [ - { - "value": "http://www.bbc.co.uk/things/ffc98bca-8cff-4ee6-9beb-a6ff6ef3ef9f#id", - "type": "primaryMediaType" - } - ], - "motivation": [], - "formats": [ - { - "value": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id", - "thingLabel": "News report", - "thingUri": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id", - "thingId": "46c0517d-9927-4d1a-9954-8c63a3f7a888", - "thingType": ["tagging:TagConcept", "tagging:Format"], - "thingSameAs": [], - "thingEnglishLabel": "Report", - "thingPreferredLabel": "Report", - "thingLabelLanguage": "ru", - "type": "formats" - } - ], - "editorialSensitivity": [ - { - "value": "http://www.bbc.co.uk/things/c6979033-cb72-4d07-9897-adc348a4332e#id", - "type": "editorialSensitivity" - } - ], - "about": [ - { - "value": "http://www.bbc.co.uk/things/1dd10a32-b042-47ad-9e32-20aeea4b5323#id", - "thingLabel": "Евгений Пригожин", - "thingUri": "http://www.bbc.co.uk/things/1dd10a32-b042-47ad-9e32-20aeea4b5323#id", - "thingId": "1dd10a32-b042-47ad-9e32-20aeea4b5323", - "thingType": [ - "core:Thing", - "tagging:TagConcept", - "tagging:Agent", - "core:Person", - "tagging:AmbiguousTerm" - ], - "thingSameAs": [ - "http://www.wikidata.org/entity/Q20850503", - "http://dbpedia.org/resource/Yevgeny_Prigozhin" - ], - "thingEnglishLabel": "Yevgeny Prigozhin", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/23d96e97-b777-413a-a8c5-85a2eda98613#id", - "thingLabel": "Война России с Украиной", - "thingUri": "http://www.bbc.co.uk/things/23d96e97-b777-413a-a8c5-85a2eda98613#id", - "thingId": "23d96e97-b777-413a-a8c5-85a2eda98613", - "thingType": [ - "tagging:TagConcept", - "core:Event", - "core:Thing" - ], - "thingSameAs": [ - "http://www.wikidata.org/entity/Q110254389" - ], - "thingEnglishLabel": "Russia-Ukraine war", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/39267b85-1784-4f4b-80ed-f8cb4a35f337#id", - "thingLabel": "Россия", - "thingUri": "http://www.bbc.co.uk/things/39267b85-1784-4f4b-80ed-f8cb4a35f337#id", - "thingId": "39267b85-1784-4f4b-80ed-f8cb4a35f337", - "thingType": [ - "core:Place", - "tagging:TagConcept", - "core:Thing" - ], - "thingSameAs": ["http://sws.geonames.org/2017370/"], - "thingEnglishLabel": "Russia", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/57707fcd-1711-431b-b810-6809a1041c1e#id", - "thingLabel": "ЧВК “Вагнер”", - "thingUri": "http://www.bbc.co.uk/things/57707fcd-1711-431b-b810-6809a1041c1e#id", - "thingId": "57707fcd-1711-431b-b810-6809a1041c1e", - "thingType": [ - "tagging:Agent", - "core:Thing", - "tagging:AmbiguousTerm", - "tagging:TagConcept", - "core:Organisation" - ], - "thingSameAs": [ - "http://www.wikidata.org/entity/Q36597284", - "http://dbpedia.org/resource/Wagner_Group" - ], - "thingEnglishLabel": "Wagner Group", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/7fd6ee44-38a3-4fe3-a40f-7b4f8f72c67f#id", - "thingLabel": "Владимир Путин", - "thingUri": "http://www.bbc.co.uk/things/7fd6ee44-38a3-4fe3-a40f-7b4f8f72c67f#id", - "thingId": "7fd6ee44-38a3-4fe3-a40f-7b4f8f72c67f", - "thingType": [ - "core:Thing", - "tagging:Agent", - "tagging:TagConcept", - "core:Person", - "tagging:AmbiguousTerm" - ], - "thingSameAs": [ - "http://www.imdb.com/name/nm1269884/", - "http://dbpedia.org/resource/Vladimir_Putin", - "http://musicbrainz.org/artist/833f5372-a2a5-4932-8a5c-399184f29541#_", - "http://www.wikidata.org/entity/Q7747" - ], - "thingEnglishLabel": "Vladimir Putin", - "type": "about" - } - ] - } - }, - "media": { - "id": "p0fx2mrh", - "subType": "clip", - "format": "video", - "title": "Мятеж, измена, удар в спину. Главное из обращения Путина о мятеже ЧВК \"Вагнер\"", - "synopses": { - "short": "Мятеж, измена, удар в спину. Главное из обращения Путина о мятеже ЧВК \"Вагнер\"", - "long": "Президент России Владимир Путин утром 24 июня выступил с обращением к россиянам. Он назвал мятеж Евгения Пригожина, начавшийся накануне ночью, изменой и ударом в спину.\n\nПутин пообещал \"жесткие действия по защите\" страны.\n\nГлавное из его обращения - в видео Би-би-си.", - "medium": "Владимир Путин выступил с обращением к россиянам. Он назвал мятеж Евгения Пригожина изменой и ударом в спину и пообещал \"жесткие действия по защите\" страны." - }, - "imageUrl": "ichef.bbci.co.uk/images/ic/$recipe/p0fx2n3d.jpg", - "embedding": true, - "advertising": true, - "caption": "Мятеж, измена, удар в спину. Главное из обращения Путина о мятеже ЧВК \"Вагнер\"", - "versions": [ - { - "versionId": "p0fx2mrm", - "types": ["Original"], - "duration": 177, - "durationISO8601": "PT2M57S", - "warnings": {}, - "availableTerritories": { "uk": true, "nonUk": true }, - "availableFrom": 1687594705000 - } - ], - "imageCopyright": "kremlin.ru", - "smpKind": "programme", - "type": "media" - }, - "indexImage": { - "id": "130194756", - "subType": "index", - "href": "http://c.files.bbci.co.uk/100D5/production/_130194756_p0fx2n3d.jpg", - "path": "/cpsprodpb/100D5/production/_130194756_p0fx2n3d.jpg", - "height": 549, - "width": 976, - "altText": "Владимир Путин", - "copyrightHolder": "kremlin.ru", - "allowSyndication": false, - "type": "image" - }, - "id": "urn:bbc:ares::asset:russian/media-66007597", - "type": "cps" - } - }, - { - "id": "a1cb0aec-0606-494f-87b6-813373a819a6", - "rank": 15, - "count": 5, - "urn": "urn:bbc:curie:asset:a1cb0aec-0606-494f-87b6-813373a819a6", - "promo": { - "headlines": { - "shortHeadline": "До и после разрушения Каховской ГЭС. Спутниковые снимки Херсонской области", - "headline": "До и после разрушения Каховской ГЭС. Спутниковые снимки Херсонской области" - }, - "locators": { - "assetUri": "/russian/media-65838906", - "curieCpsUrn": "urn:bbc:cps:curie:asset:a1cb0aec-0606-494f-87b6-813373a819a6", - "assetId": "65838906", - "cpsUrn": "urn:bbc:content:assetUri:russian/media-65838906", - "curie": "http://www.bbc.co.uk/asset/a1cb0aec-0606-494f-87b6-813373a819a6" - }, - "summary": "Спутниковые снимки Херсонской области, сделанные до и после разрушения Каховской ГЭС, дают хорошее понимание масштаба затопления территорий.", - "timestamp": 1686156593000, - "language": "ru", - "passport": { - "campaigns": [ - { - "campaignId": "5a988e4739461b000e9dabfc", - "campaignName": "WS - Update me" - } - ], - "language": "ru", - "home": "http://www.bbc.co.uk/ontologies/passport/home/Russian", - "locator": "urn:bbc:cps:curie:asset:a1cb0aec-0606-494f-87b6-813373a819a6", - "availability": "AVAILABLE", - "taggings": [ - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/ee8750ed-a7fb-453f-bfca-2aa8b3fb064c#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/contributor", - "value": "http://www.bbc.co.uk/things/0143a201-5690-4cb1-95a8-03ab60e66bfd#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/39267b85-1784-4f4b-80ed-f8cb4a35f337#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/23d96e97-b777-413a-a8c5-85a2eda98613#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/audience/motivation", - "value": "http://www.bbc.co.uk/things/bf928ac3-b3bd-4d47-924e-cca1bdc29174#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/primaryMediaType", - "value": "http://www.bbc.co.uk/things/ffc98bca-8cff-4ee6-9beb-a6ff6ef3ef9f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/assetType", - "value": "http://www.bbc.co.uk/things/22ea958e-2004-4f34-80a7-bf5acad52f6f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/editorialSensitivity", - "value": "http://www.bbc.co.uk/things/c6979033-cb72-4d07-9897-adc348a4332e#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/format", - "value": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id" - } - ], - "schemaVersion": "1.4.0", - "publishedState": "PUBLISHED", - "predicates": { - "contributor": [ - { - "value": "http://www.bbc.co.uk/things/0143a201-5690-4cb1-95a8-03ab60e66bfd#id", - "type": "contributor" - } - ], - "assetType": [ - { - "value": "http://www.bbc.co.uk/things/22ea958e-2004-4f34-80a7-bf5acad52f6f#id", - "type": "assetType" - } - ], - "primaryMediaType": [ - { - "value": "http://www.bbc.co.uk/things/ffc98bca-8cff-4ee6-9beb-a6ff6ef3ef9f#id", - "type": "primaryMediaType" - } - ], - "motivation": [], - "formats": [ - { - "value": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id", - "thingLabel": "News report", - "thingUri": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id", - "thingId": "46c0517d-9927-4d1a-9954-8c63a3f7a888", - "thingType": ["tagging:TagConcept", "tagging:Format"], - "thingSameAs": [], - "thingEnglishLabel": "Report", - "thingPreferredLabel": "Report", - "thingLabelLanguage": "ru", - "type": "formats" - } - ], - "editorialSensitivity": [ - { - "value": "http://www.bbc.co.uk/things/c6979033-cb72-4d07-9897-adc348a4332e#id", - "type": "editorialSensitivity" - } - ], - "about": [ - { - "value": "http://www.bbc.co.uk/things/23d96e97-b777-413a-a8c5-85a2eda98613#id", - "thingLabel": "Война России с Украиной", - "thingUri": "http://www.bbc.co.uk/things/23d96e97-b777-413a-a8c5-85a2eda98613#id", - "thingId": "23d96e97-b777-413a-a8c5-85a2eda98613", - "thingType": [ - "tagging:TagConcept", - "core:Event", - "core:Thing" - ], - "thingSameAs": [ - "http://www.wikidata.org/entity/Q110254389" - ], - "thingEnglishLabel": "Russia-Ukraine war", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/39267b85-1784-4f4b-80ed-f8cb4a35f337#id", - "thingLabel": "Россия", - "thingUri": "http://www.bbc.co.uk/things/39267b85-1784-4f4b-80ed-f8cb4a35f337#id", - "thingId": "39267b85-1784-4f4b-80ed-f8cb4a35f337", - "thingType": [ - "core:Place", - "tagging:TagConcept", - "core:Thing" - ], - "thingSameAs": ["http://sws.geonames.org/2017370/"], - "thingEnglishLabel": "Russia", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/ee8750ed-a7fb-453f-bfca-2aa8b3fb064c#id", - "thingLabel": "Украина", - "thingUri": "http://www.bbc.co.uk/things/ee8750ed-a7fb-453f-bfca-2aa8b3fb064c#id", - "thingId": "ee8750ed-a7fb-453f-bfca-2aa8b3fb064c", - "thingType": [ - "tagging:TagConcept", - "core:Thing", - "core:Place" - ], - "thingSameAs": [ - "http://dbpedia.org/resource/Ukraine", - "http://www.wikidata.org/entity/Q212", - "http://sws.geonames.org/690791/" - ], - "thingEnglishLabel": "Ukraine", - "type": "about" - } - ] - } - }, - "media": { - "id": "p0fstsvz", - "subType": "clip", - "format": "video", - "title": "До и после разрушения Каховской ГЭС. Спутниковые снимки Херсонской области", - "synopses": { - "short": "До и после разрушения Каховской ГЭС. Спутниковые снимки Херсонской области", - "long": "Масштаб бедствия в Херсонской области хорошо виден со спутников. Мы сопоставили спутниковые фотографии MAXAR Technolоgies, на которых сняты города и поселки вдоль Днепра до и после разрушения Каховской ГЭС. В разрушении ГЭС Россия и Украина обвиняют друг друга.", - "medium": "Спутниковые снимки Херсонской области, сделанные до и после разрушения Каховской ГЭС, дают хорошее понимание масштаба затопления территорий." - }, - "imageUrl": "ichef.bbci.co.uk/images/ic/$recipe/p0fstyc8.jpg", - "embedding": true, - "advertising": true, - "caption": "До и после разрушения Каховской ГЭС. Спутниковые снимки Херсонской области", - "versions": [ - { - "versionId": "p0fstswc", - "types": ["Original"], - "duration": 83, - "durationISO8601": "PT1M23S", - "warnings": {}, - "availableTerritories": { "uk": true, "nonUk": true }, - "availableFrom": 1686155388000 - } - ], - "imageCopyright": "MAXAR", - "smpKind": "programme", - "type": "media" - }, - "indexImage": { - "id": "130024662", - "subType": "index", - "href": "http://c.files.bbci.co.uk/6812/production/_130024662_p0fstyc8.jpg", - "path": "/cpsprodpb/6812/production/_130024662_p0fstyc8.jpg", - "height": 549, - "width": 976, - "altText": "Спутниковые снимки Херсонской области", - "caption": "Спутниковые снимки Херсонской области", - "copyrightHolder": "Maxar", - "allowSyndication": false, - "type": "image" - }, - "id": "urn:bbc:ares::asset:russian/media-65838906", - "type": "cps" - } - }, - { - "id": "7ba1bff3-b29c-f659-8d28-b964f56c51d3", - "rank": 16, - "count": 5, - "urn": "urn:bbc:curie:asset:7ba1bff3-b29c-f659-8d28-b964f56c51d3", - "promo": { - "headlines": { - "shortHeadline": "ТВ-новости Би-би-си на русском языке", - "headline": "ТВ-новости Би-би-си на русском языке" - }, - "locators": { - "assetUri": "/russian/media-30000001", - "curieCpsUrn": "urn:bbc:cps:curie:asset:7ba1bff3-b29c-f659-8d28-b964f56c51d3", - "assetId": "30000001", - "cpsUrn": "urn:bbc:content:assetUri:russian/media-30000001", - "curie": "http://www.bbc.co.uk/asset/7ba1bff3-b29c-f659-8d28-b964f56c51d3" - }, - "summary": "Здесь вы можете еще раз посмотреть новости Русской службы Би-би-си в записи.", - "timestamp": 1506848400000, - "language": "ru", - "passport": { - "home": "http://www.bbc.co.uk/ontologies/passport/home/Russian", - "taggings": [] - }, - "media": { - "id": "30000001", - "subType": "primary", - "format": "video", - "image": { - "id": "30000001", - "subType": "thumbnail", - "href": "http://c.files.bbci.co.uk/82A2/production/_98124433_p05hy51l.jpg", - "path": "/cpsprodpb/82A2/production/_98124433_p05hy51l.jpg", - "height": 576, - "width": 1024, - "altText": "Русской службы Би-би-си.", - "copyrightHolder": "BBC", - "type": "image" - }, - "live": false, - "href": "http://wsdownload.bbc.co.uk/russian/meta/tx/tv/smp/tvbulletin.xml", - "playlist": [], - "type": "legacyMedia" - }, - "indexImage": { - "id": "98124433", - "subType": "index", - "href": "http://c.files.bbci.co.uk/82A2/production/_98124433_p05hy51l.jpg", - "path": "/cpsprodpb/82A2/production/_98124433_p05hy51l.jpg", - "height": 576, - "width": 1024, - "altText": "Русской службы Би-би-си.", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:russian/media-30000001", - "type": "cps" - } - }, - { - "id": "20aca3e7-4226-4da3-b41a-b83183bd8d3a", - "rank": 17, - "count": 5, - "urn": "urn:bbc:curie:asset:20aca3e7-4226-4da3-b41a-b83183bd8d3a", - "promo": { - "headlines": { - "shortHeadline": "\"Для них неожиданностью было, что они воюют с армией\". Бывший наемник \"ЧВК Вагнер\" о действиях военных РФ в Украине", - "headline": "Бывший наемник \"ЧВК Вагнер\" о готовности российской армии к войне" - }, - "locators": { - "assetUri": "/russian/media-61425159", - "curieCpsUrn": "urn:bbc:cps:curie:asset:20aca3e7-4226-4da3-b41a-b83183bd8d3a", - "assetId": "61425159", - "cpsUrn": "urn:bbc:content:assetUri:russian/media-61425159", - "curie": "http://www.bbc.co.uk/asset/20aca3e7-4226-4da3-b41a-b83183bd8d3a" - }, - "summary": "Марат Габидуллин ушел из ЧВК в 2019 году, свою причастность к военным преступлениям в Сирии и на востоке Украины, в которых обвиняют вагнеровцев, он отрицает.", - "timestamp": 1652358692000, - "language": "ru", - "passport": { - "campaigns": [ - { - "campaignId": "5a988e3139461b000e9dabf9", - "campaignName": "WS - Divert me" - }, - { - "campaignId": "5a988e4739461b000e9dabfc", - "campaignName": "WS - Update me" - } - ], - "language": "ru", - "home": "http://www.bbc.co.uk/ontologies/passport/home/Russian", - "locator": "urn:bbc:cps:curie:asset:20aca3e7-4226-4da3-b41a-b83183bd8d3a", - "availability": "AVAILABLE", - "taggings": [ - { - "predicate": "http://www.bbc.co.uk/ontologies/audience/motivation", - "value": "http://www.bbc.co.uk/things/e1deed1e-0cab-4965-8e92-897b195f7a47#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/editorialSensitivity", - "value": "http://www.bbc.co.uk/things/c6979033-cb72-4d07-9897-adc348a4332e#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/assetType", - "value": "http://www.bbc.co.uk/things/22ea958e-2004-4f34-80a7-bf5acad52f6f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/contributor", - "value": "http://www.bbc.co.uk/things/0143a201-5690-4cb1-95a8-03ab60e66bfd#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/audience/motivation", - "value": "http://www.bbc.co.uk/things/bf928ac3-b3bd-4d47-924e-cca1bdc29174#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/57707fcd-1711-431b-b810-6809a1041c1e#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/ee8750ed-a7fb-453f-bfca-2aa8b3fb064c#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/primaryMediaType", - "value": "http://www.bbc.co.uk/things/ffc98bca-8cff-4ee6-9beb-a6ff6ef3ef9f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/39267b85-1784-4f4b-80ed-f8cb4a35f337#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/23d96e97-b777-413a-a8c5-85a2eda98613#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/format", - "value": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id" - } - ], - "schemaVersion": "1.4.0", - "publishedState": "PUBLISHED", - "predicates": { - "contributor": [ - { - "value": "http://www.bbc.co.uk/things/0143a201-5690-4cb1-95a8-03ab60e66bfd#id", - "type": "contributor" - } - ], - "assetType": [ - { - "value": "http://www.bbc.co.uk/things/22ea958e-2004-4f34-80a7-bf5acad52f6f#id", - "type": "assetType" - } - ], - "primaryMediaType": [ - { - "value": "http://www.bbc.co.uk/things/ffc98bca-8cff-4ee6-9beb-a6ff6ef3ef9f#id", - "type": "primaryMediaType" - } - ], - "motivation": [], - "formats": [ - { - "value": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id", - "thingLabel": "News report", - "thingUri": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id", - "thingId": "46c0517d-9927-4d1a-9954-8c63a3f7a888", - "thingType": ["tagging:TagConcept", "tagging:Format"], - "thingSameAs": [], - "thingEnglishLabel": "Report", - "thingPreferredLabel": "Report", - "thingLabelLanguage": "ru", - "type": "formats" - } - ], - "editorialSensitivity": [ - { - "value": "http://www.bbc.co.uk/things/c6979033-cb72-4d07-9897-adc348a4332e#id", - "type": "editorialSensitivity" - } - ], - "about": [ - { - "value": "http://www.bbc.co.uk/things/23d96e97-b777-413a-a8c5-85a2eda98613#id", - "thingLabel": "Война России с Украиной", - "thingUri": "http://www.bbc.co.uk/things/23d96e97-b777-413a-a8c5-85a2eda98613#id", - "thingId": "23d96e97-b777-413a-a8c5-85a2eda98613", - "thingType": [ - "tagging:TagConcept", - "core:Event", - "core:Thing" - ], - "thingSameAs": [ - "http://www.wikidata.org/entity/Q110254389" - ], - "thingEnglishLabel": "Russia-Ukraine war", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/39267b85-1784-4f4b-80ed-f8cb4a35f337#id", - "thingLabel": "Россия", - "thingUri": "http://www.bbc.co.uk/things/39267b85-1784-4f4b-80ed-f8cb4a35f337#id", - "thingId": "39267b85-1784-4f4b-80ed-f8cb4a35f337", - "thingType": [ - "core:Place", - "tagging:TagConcept", - "core:Thing" - ], - "thingSameAs": ["http://sws.geonames.org/2017370/"], - "thingEnglishLabel": "Russia", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/57707fcd-1711-431b-b810-6809a1041c1e#id", - "thingLabel": "ЧВК “Вагнер”", - "thingUri": "http://www.bbc.co.uk/things/57707fcd-1711-431b-b810-6809a1041c1e#id", - "thingId": "57707fcd-1711-431b-b810-6809a1041c1e", - "thingType": [ - "tagging:Agent", - "core:Thing", - "tagging:AmbiguousTerm", - "tagging:TagConcept", - "core:Organisation" - ], - "thingSameAs": [ - "http://www.wikidata.org/entity/Q36597284", - "http://dbpedia.org/resource/Wagner_Group" - ], - "thingEnglishLabel": "Wagner Group", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/ee8750ed-a7fb-453f-bfca-2aa8b3fb064c#id", - "thingLabel": "Украина", - "thingUri": "http://www.bbc.co.uk/things/ee8750ed-a7fb-453f-bfca-2aa8b3fb064c#id", - "thingId": "ee8750ed-a7fb-453f-bfca-2aa8b3fb064c", - "thingType": [ - "tagging:TagConcept", - "core:Thing", - "core:Place" - ], - "thingSameAs": [ - "http://dbpedia.org/resource/Ukraine", - "http://www.wikidata.org/entity/Q212", - "http://sws.geonames.org/690791/" - ], - "thingEnglishLabel": "Ukraine", - "type": "about" - } - ] - } - }, - "media": { - "id": "p0c6cxfm", - "subType": "clip", - "format": "video", - "title": "\"Для них неожиданностью было, что они воюют с армией\". Бывший наемник \"ЧВК Вагнер\" о российской армии", - "synopses": { - "short": "Бывший наемник \"ЧВК Вагнер\" о российской армии", - "long": "Марат Габидуллин ушел из ЧВК в 2019 году, свою причастность к военным преступлениям в Сирии и на востоке Украины, в которых обвиняют вагнеровцев, он отрицает.\n\nВ интервью Reuters он рассказал о том, как его вербовали на войну в Украине и что он думает о причинах неуспеха военной кампании России в Украине.", - "medium": "Марат Габидуллин ушел из ЧВК в 2019 году, свою причастность к военным преступлениям в Сирии и на востоке Украины, в которых обвиняют вагнеровцев, он отрицает." - }, - "imageUrl": "ichef.bbci.co.uk/images/ic/$recipe/p0c6cxvb.jpg", - "embedding": true, - "advertising": true, - "caption": "Бывший наемник \"ЧВК Вагнер\" о российской армии", - "versions": [ - { - "versionId": "p0c6cxfr", - "types": ["Original"], - "duration": 171, - "durationISO8601": "PT2M51S", - "warnings": {}, - "availableTerritories": { "uk": true, "nonUk": true }, - "availableFrom": 1652354569000 - } - ], - "imageCopyright": "Reuters", - "smpKind": "programme", - "type": "media" - }, - "indexImage": { - "id": "124706959", - "subType": "index", - "href": "http://c.files.bbci.co.uk/176D8/production/_124706959_p0c6cxvb.jpg", - "path": "/cpsprodpb/176D8/production/_124706959_p0c6cxvb.jpg", - "height": 549, - "width": 976, - "altText": "Бывший наемник \"ЧВК Вагнер\" о российской армии", - "copyrightHolder": "Reuters", - "allowSyndication": true, - "type": "image" - }, - "id": "urn:bbc:ares::asset:russian/media-61425159", - "type": "cps" - } - }, - { - "id": "8743fe29-a256-49aa-9ea1-64e153755908", - "rank": 18, - "count": 4, - "urn": "urn:bbc:curie:asset:8743fe29-a256-49aa-9ea1-64e153755908", - "promo": { - "headlines": { - "shortHeadline": "Год назад войска РФ отступили из Бучи. Как живет город сейчас", - "headline": "Буча: год после оккупации. Как живет украинский город, ставший известным во всем мире" - }, - "locators": { - "assetUri": "/russian/media-65142209", - "curieCpsUrn": "urn:bbc:cps:curie:asset:8743fe29-a256-49aa-9ea1-64e153755908", - "assetId": "65142209", - "cpsUrn": "urn:bbc:content:assetUri:russian/media-65142209", - "curie": "http://www.bbc.co.uk/asset/8743fe29-a256-49aa-9ea1-64e153755908" - }, - "summary": "Год назад российские войска отступили из Бучи. Фотографии и видео улиц города с трупами и следами пыток поразили весь мир.", - "timestamp": 1680274169000, - "language": "ru", - "passport": { - "language": "ru", - "home": "http://www.bbc.co.uk/ontologies/passport/home/Russian", - "locator": "urn:bbc:cps:curie:asset:8743fe29-a256-49aa-9ea1-64e153755908", - "availability": "AVAILABLE", - "taggings": [ - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/editorialSensitivity", - "value": "http://www.bbc.co.uk/things/c6979033-cb72-4d07-9897-adc348a4332e#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/assetType", - "value": "http://www.bbc.co.uk/things/22ea958e-2004-4f34-80a7-bf5acad52f6f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/contributor", - "value": "http://www.bbc.co.uk/things/0143a201-5690-4cb1-95a8-03ab60e66bfd#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/7fd6ee44-38a3-4fe3-a40f-7b4f8f72c67f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/1808a59a-896b-4112-89c1-b713b991a1d1#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/ee8750ed-a7fb-453f-bfca-2aa8b3fb064c#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/primaryMediaType", - "value": "http://www.bbc.co.uk/things/ffc98bca-8cff-4ee6-9beb-a6ff6ef3ef9f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/39267b85-1784-4f4b-80ed-f8cb4a35f337#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/23d96e97-b777-413a-a8c5-85a2eda98613#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/format", - "value": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id" - } - ], - "schemaVersion": "1.4.0", - "publishedState": "PUBLISHED", - "predicates": { - "contributor": [ - { - "value": "http://www.bbc.co.uk/things/0143a201-5690-4cb1-95a8-03ab60e66bfd#id", - "type": "contributor" - } - ], - "assetType": [ - { - "value": "http://www.bbc.co.uk/things/22ea958e-2004-4f34-80a7-bf5acad52f6f#id", - "type": "assetType" - } - ], - "primaryMediaType": [ - { - "value": "http://www.bbc.co.uk/things/ffc98bca-8cff-4ee6-9beb-a6ff6ef3ef9f#id", - "type": "primaryMediaType" - } - ], - "formats": [ - { - "value": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id", - "thingLabel": "News report", - "thingUri": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id", - "thingId": "46c0517d-9927-4d1a-9954-8c63a3f7a888", - "thingType": ["tagging:TagConcept", "tagging:Format"], - "thingSameAs": [], - "thingEnglishLabel": "Report", - "thingPreferredLabel": "Report", - "thingLabelLanguage": "ru", - "type": "formats" - } - ], - "editorialSensitivity": [ - { - "value": "http://www.bbc.co.uk/things/c6979033-cb72-4d07-9897-adc348a4332e#id", - "type": "editorialSensitivity" - } - ], - "about": [ - { - "value": "http://www.bbc.co.uk/things/1808a59a-896b-4112-89c1-b713b991a1d1#id", - "thingLabel": "Владимир Зеленский", - "thingUri": "http://www.bbc.co.uk/things/1808a59a-896b-4112-89c1-b713b991a1d1#id", - "thingId": "1808a59a-896b-4112-89c1-b713b991a1d1", - "thingType": [ - "tagging:TagConcept", - "tagging:Agent", - "core:Person", - "core:Thing", - "tagging:AmbiguousTerm" - ], - "thingSameAs": [ - "http://www.wikidata.org/entity/Q3874799" - ], - "thingEnglishLabel": "Volodymyr Zelensky", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/23d96e97-b777-413a-a8c5-85a2eda98613#id", - "thingLabel": "Война России с Украиной", - "thingUri": "http://www.bbc.co.uk/things/23d96e97-b777-413a-a8c5-85a2eda98613#id", - "thingId": "23d96e97-b777-413a-a8c5-85a2eda98613", - "thingType": [ - "tagging:TagConcept", - "core:Event", - "core:Thing" - ], - "thingSameAs": [ - "http://www.wikidata.org/entity/Q110254389" - ], - "thingEnglishLabel": "Russia-Ukraine war", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/39267b85-1784-4f4b-80ed-f8cb4a35f337#id", - "thingLabel": "Россия", - "thingUri": "http://www.bbc.co.uk/things/39267b85-1784-4f4b-80ed-f8cb4a35f337#id", - "thingId": "39267b85-1784-4f4b-80ed-f8cb4a35f337", - "thingType": [ - "core:Place", - "tagging:TagConcept", - "core:Thing" - ], - "thingSameAs": ["http://sws.geonames.org/2017370/"], - "thingEnglishLabel": "Russia", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/7fd6ee44-38a3-4fe3-a40f-7b4f8f72c67f#id", - "thingLabel": "Владимир Путин", - "thingUri": "http://www.bbc.co.uk/things/7fd6ee44-38a3-4fe3-a40f-7b4f8f72c67f#id", - "thingId": "7fd6ee44-38a3-4fe3-a40f-7b4f8f72c67f", - "thingType": [ - "core:Thing", - "tagging:Agent", - "tagging:TagConcept", - "core:Person", - "tagging:AmbiguousTerm" - ], - "thingSameAs": [ - "http://www.imdb.com/name/nm1269884/", - "http://dbpedia.org/resource/Vladimir_Putin", - "http://musicbrainz.org/artist/833f5372-a2a5-4932-8a5c-399184f29541#_", - "http://www.wikidata.org/entity/Q7747" - ], - "thingEnglishLabel": "Vladimir Putin", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/ee8750ed-a7fb-453f-bfca-2aa8b3fb064c#id", - "thingLabel": "Украина", - "thingUri": "http://www.bbc.co.uk/things/ee8750ed-a7fb-453f-bfca-2aa8b3fb064c#id", - "thingId": "ee8750ed-a7fb-453f-bfca-2aa8b3fb064c", - "thingType": [ - "tagging:TagConcept", - "core:Thing", - "core:Place" - ], - "thingSameAs": [ - "http://dbpedia.org/resource/Ukraine", - "http://www.wikidata.org/entity/Q212", - "http://sws.geonames.org/690791/" - ], - "thingEnglishLabel": "Ukraine", - "type": "about" - } - ] - } - }, - "media": { - "id": "p0fd4q16", - "subType": "clip", - "format": "video", - "title": "Год назад войска РФ отступили из Бучи. Как живет город сейчас", - "synopses": { - "short": "Буча: год после оккупации. Как живет украинский город, ставший известным во всем мире", - "long": "Год назад российские войска отступили из Бучи. Фотографии и видео улиц города с трупами и следами пыток поразили весь мир. В оккупации город пробыл 33 дня.\n\nБуча стала символом зверств армии РФ в Украине. По оценкам украинских властей, в городе погибли более 400 человек, а вместе с Бучанским районом число жертв превышает 1400 человек.\n\nМосква до сих пор отрицает свою причастность к убийствам мирных жителей, но за год никаких доказательств своей позиции так и не представила.\n\nКак живет Буча сейчас и как город выглядел до вторжения России и оккупации - в видео Русской службы Би-би-си.", - "medium": "Год назад российские войска отступили из Бучи. Фотографии и видео улиц города с трупами и следами пыток поразили весь мир." - }, - "imageUrl": "ichef.bbci.co.uk/images/ic/$recipe/p0fd4qst.jpg", - "embedding": true, - "advertising": true, - "caption": "Буча: год после оккупации. Как живет украинский город, ставший известным во всем мире", - "versions": [ - { - "versionId": "p0fd4q1b", - "types": ["Original"], - "duration": 196, - "durationISO8601": "PT3M16S", - "warnings": {}, - "availableTerritories": { "uk": true, "nonUk": true }, - "availableFrom": 1680273875000 - } - ], - "smpKind": "programme", - "type": "media" - }, - "indexImage": { - "id": "129237653", - "subType": "index", - "href": "http://c.files.bbci.co.uk/8B59/production/_129237653_p0fd4qst.jpg", - "path": "/cpsprodpb/8B59/production/_129237653_p0fd4qst.jpg", - "height": 549, - "width": 976, - "altText": "Год назад российские войска отступили из Бучи.", - "copyrightHolder": "BBC", - "allowSyndication": true, - "type": "image" - }, - "id": "urn:bbc:ares::asset:russian/media-65142209", - "type": "cps" - } - }, - { - "id": "79bcb545-b8c2-4005-8104-2b37af568306", - "rank": 19, - "count": 4, - "urn": "urn:bbc:curie:asset:79bcb545-b8c2-4005-8104-2b37af568306", - "promo": { - "headlines": { - "shortHeadline": "Стабпункт под Бахмутом. Предсмертный репортаж", - "headline": "Стабпункт под Бахмутом. Предсмертный репортаж" - }, - "locators": { - "assetUri": "/russian/media-65624014", - "curieCpsUrn": "urn:bbc:cps:curie:asset:79bcb545-b8c2-4005-8104-2b37af568306", - "assetId": "65624014", - "cpsUrn": "urn:bbc:content:assetUri:russian/media-65624014", - "curie": "http://www.bbc.co.uk/asset/79bcb545-b8c2-4005-8104-2b37af568306" - }, - "summary": "Этот репортаж для французского журналиста Армана Сольдена стал последним.", - "timestamp": 1684335130000, - "language": "ru", - "passport": { - "category": { - "categoryId": "http://www.bbc.co.uk/ontologies/applicationlogic-news/News", - "categoryName": "News" - }, - "language": "ru", - "home": "http://www.bbc.co.uk/ontologies/passport/home/Russian", - "locator": "urn:bbc:cps:curie:asset:79bcb545-b8c2-4005-8104-2b37af568306", - "availability": "AVAILABLE", - "taggings": [ - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/assetType", - "value": "http://www.bbc.co.uk/things/22ea958e-2004-4f34-80a7-bf5acad52f6f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/contributor", - "value": "http://www.bbc.co.uk/things/0143a201-5690-4cb1-95a8-03ab60e66bfd#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/db766560-6b05-4eb5-b690-4c6118e0faf1#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/61ef4416-de68-49ff-9c97-e0779dafd9d2#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/bbc/primaryMediaType", - "value": "http://www.bbc.co.uk/things/ffc98bca-8cff-4ee6-9beb-a6ff6ef3ef9f#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/918e9487-dc88-44e2-8168-057149670ec3#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/about", - "value": "http://www.bbc.co.uk/things/23d96e97-b777-413a-a8c5-85a2eda98613#id" - }, - { - "predicate": "http://www.bbc.co.uk/ontologies/creativework/format", - "value": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id" - } - ], - "schemaVersion": "1.4.0", - "publishedState": "PUBLISHED", - "predicates": { - "contributor": [ - { - "value": "http://www.bbc.co.uk/things/0143a201-5690-4cb1-95a8-03ab60e66bfd#id", - "type": "contributor" - } - ], - "assetType": [ - { - "value": "http://www.bbc.co.uk/things/22ea958e-2004-4f34-80a7-bf5acad52f6f#id", - "type": "assetType" - } - ], - "primaryMediaType": [ - { - "value": "http://www.bbc.co.uk/things/ffc98bca-8cff-4ee6-9beb-a6ff6ef3ef9f#id", - "type": "primaryMediaType" - } - ], - "formats": [ - { - "value": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id", - "thingLabel": "News report", - "thingUri": "http://www.bbc.co.uk/things/46c0517d-9927-4d1a-9954-8c63a3f7a888#id", - "thingId": "46c0517d-9927-4d1a-9954-8c63a3f7a888", - "thingType": ["tagging:TagConcept", "tagging:Format"], - "thingSameAs": [], - "thingEnglishLabel": "Report", - "thingPreferredLabel": "Report", - "thingLabelLanguage": "ru", - "type": "formats" - } - ], - "about": [ - { - "value": "http://www.bbc.co.uk/things/23d96e97-b777-413a-a8c5-85a2eda98613#id", - "thingLabel": "Война России с Украиной", - "thingUri": "http://www.bbc.co.uk/things/23d96e97-b777-413a-a8c5-85a2eda98613#id", - "thingId": "23d96e97-b777-413a-a8c5-85a2eda98613", - "thingType": [ - "tagging:TagConcept", - "core:Event", - "core:Thing" - ], - "thingSameAs": [ - "http://www.wikidata.org/entity/Q110254389" - ], - "thingEnglishLabel": "Russia-Ukraine war", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/61ef4416-de68-49ff-9c97-e0779dafd9d2#id", - "thingLabel": "Франция", - "thingUri": "http://www.bbc.co.uk/things/61ef4416-de68-49ff-9c97-e0779dafd9d2#id", - "thingId": "61ef4416-de68-49ff-9c97-e0779dafd9d2", - "thingType": [ - "tagging:TagConcept", - "core:Thing", - "core:Place" - ], - "thingSameAs": ["http://sws.geonames.org/3017382/"], - "thingEnglishLabel": "France", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/918e9487-dc88-44e2-8168-057149670ec3#id", - "thingLabel": "Медицина", - "thingUri": "http://www.bbc.co.uk/things/918e9487-dc88-44e2-8168-057149670ec3#id", - "thingId": "918e9487-dc88-44e2-8168-057149670ec3", - "thingType": [ - "tagging:TagConcept", - "core:Thing", - "core:Theme" - ], - "thingSameAs": [ - "http://dbpedia.org/resource/Medicine", - "http://www.wikidata.org/entity/Q11190" - ], - "thingEnglishLabel": "Medicine", - "type": "about" - }, - { - "value": "http://www.bbc.co.uk/things/db766560-6b05-4eb5-b690-4c6118e0faf1#id", - "thingLabel": "Журналистика", - "thingUri": "http://www.bbc.co.uk/things/db766560-6b05-4eb5-b690-4c6118e0faf1#id", - "thingId": "db766560-6b05-4eb5-b690-4c6118e0faf1", - "thingType": [ - "tagging:TagConcept", - "core:Theme", - "core:Thing" - ], - "thingSameAs": ["http://dbpedia.org/resource/Journalism"], - "thingEnglishLabel": "Journalism", - "type": "about" - } - ] - } - }, - "media": { - "id": "p0fnss9x", - "subType": "clip", - "format": "video", - "title": "Стабпункт под Бахмутом. Предсмертный репортаж", - "synopses": { - "short": "Стабпункт под Бахмутом. Предсмертный репортаж", - "long": "9 мая, в результате обстрела, под городом Часов Яр, недалеко от Бахмута, погиб, работавший на новостное агентство AFP французский журналист Арман Сольден. Ему было 32 года. Предлагаем вашему вниманию его последний репортаж о медицинском стабилизационном пункте, где украинские медики оказывают первую и неотложную помощь бойцам ВСУ.", - "medium": "Этот репортаж для французского журналиста Армана Сольдена стал последним." - }, - "imageUrl": "ichef.bbci.co.uk/images/ic/$recipe/p0fnv6g1.jpg", - "embedding": true, - "advertising": true, - "caption": "Стабпункт под Бахмутом. Предсмертный репортаж", - "versions": [ - { - "versionId": "p0fntzb8", - "types": ["Editorial"], - "duration": 170, - "durationISO8601": "PT2M50S", - "warnings": {}, - "availableTerritories": { "uk": true, "nonUk": true }, - "availableFrom": 1684324715000 - } - ], - "smpKind": "programme", - "type": "media" - }, - "indexImage": { - "id": "129758500", - "subType": "index", - "href": "http://c.files.bbci.co.uk/0249/production/_129758500_p0fnsvd5.jpg", - "path": "/cpsprodpb/0249/production/_129758500_p0fnsvd5.jpg", - "height": 576, - "width": 1024, - "altText": "Арман Сольден", - "caption": "Арман Сольден", - "copyrightHolder": "AFP", - "allowSyndication": true, - "type": "image" - }, - "id": "urn:bbc:ares::asset:russian/media-65624014", - "type": "cps" - } - }, - { - "id": "cbce7aa7-7f68-044f-94d4-cdae8e7912f4", - "rank": 20, - "count": 3, - "urn": "urn:bbc:curie:asset:cbce7aa7-7f68-044f-94d4-cdae8e7912f4", - "promo": { - "headlines": { - "shortHeadline": "\"Поезд Цюрих - Революция\": первая серия", - "headline": "\"Поезд Цюрих - Революция\": первая серия" - }, - "locators": { - "assetUri": "/russian/media-39556369", - "curieCpsUrn": "urn:bbc:cps:curie:asset:cbce7aa7-7f68-044f-94d4-cdae8e7912f4", - "assetId": "39556369", - "cpsUrn": "urn:bbc:content:assetUri:russian/media-39556369", - "curie": "http://www.bbc.co.uk/asset/cbce7aa7-7f68-044f-94d4-cdae8e7912f4" - }, - "summary": "К столетию революции в России Русская служба Би-би-си отправилась по маршруту знаменитого \"пломбированного вагона\", в котором, как все помнят по учебникам истории, Ленин вернулся в Россию.", - "timestamp": 1491834906000, - "language": "ru", - "passport": { - "category": { - "categoryId": "http://www.bbc.co.uk/ontologies/applicationlogic-news/News", - "categoryName": "News" - }, - "home": "http://www.bbc.co.uk/ontologies/passport/home/Russian", - "taggings": [] - }, - "media": { - "id": "p04znht2", - "subType": "clip", - "format": "video", - "title": "\"Поезд Цюрих - Революция\": первая серия", - "synopses": { - "short": "\"Поезд Цюрих - Революция\": первая серия", - "long": "Сто лет назад в России произошли события, вошедшие в учебники истории как Февральская революция: Николай II отрекся от престола, затем это сделал и его брат - в стране сменился политический строй. Лидер большевиков Владимир Ленин узнал об этом, находясь в Швейцарии.\n\nК столетию революции в России Русская служба Би-би-си отправилась по маршруту знаменитого \"пломбированного вагона\", в котором, как все помнят по учебникам истории, Ленин вернулся в Россию. \n\nМы проследили весь путь революционного лидера - Швейцария, Германия, Швеция, Финляндия, Россия, - и в публикации каждой серии (а их всего четыре) будем следовать исторической хронологии.\n\nВопрос, который интересовал и современников Ленина, и специалистов по сей день - как вообще могла состояться такая поездка: через пол-Европы, в том числе воющую с Россией Германию? И откуда у Владимира Ленина, снимавшего в Цюрихе более чем скромное жилье, взялись деньги на такое турне? \n\nПутешествие в Санкт-Петербург (а тогда Петроград) начинается в Цюрихе, где на Шпигельгассе Ленин и Надежда Крупская снимали небольшую комнату. Именно там Ленин узнает, что монархия в России пала, и решает, что нужно срочно возвращаться домой.\n\nДневники соратников вождя в фильме читает актер Михаил Ефремов." - }, - "imageUrl": "ichef.bbci.co.uk/images/ic/$recipe/p04znmxl.jpg", - "embedding": false, - "advertising": true, - "caption": "\"Поезд Цюрих - Революция\": первая серия", - "versions": [ - { - "versionId": "p04znht8", - "types": ["Original"], - "duration": 530, - "durationISO8601": "PT8M50S", - "warnings": {}, - "availableTerritories": { "uk": true, "nonUk": true }, - "availableFrom": 1491834504000 - } - ], - "smpKind": "programme", - "type": "media" - }, - "indexImage": { - "id": "95572918", - "subType": "index", - "href": "http://c.files.bbci.co.uk/14007/production/_95572918_p04znk0m.jpg", - "path": "/cpsprodpb/14007/production/_95572918_p04znk0m.jpg", - "height": 576, - "width": 1024, - "altText": "Ленин и Крупская", - "copyrightHolder": "ИТАР-ТАСС", - "type": "image" - }, - "id": "urn:bbc:ares::asset:russian/media-39556369", - "type": "cps" - } - } - ] - } + "mostRead": null } }, "contentType": "application/json; charset=utf-8" diff --git a/data/serbian/frontpage/cyr.json b/data/serbian/frontpage/cyr.json index 21ee707c18a..5bf2c067fa7 100644 --- a/data/serbian/frontpage/cyr.json +++ b/data/serbian/frontpage/cyr.json @@ -2158,8 +2158,7 @@ "timestamp": 1512405074000 } ] - }, - "mostWatched": null + } } }, "contentType": "application/json; charset=utf-8" diff --git a/data/serbian/frontpage/lat.json b/data/serbian/frontpage/lat.json index 76b1b5b92cb..0c23d9f429f 100644 --- a/data/serbian/frontpage/lat.json +++ b/data/serbian/frontpage/lat.json @@ -2158,8 +2158,7 @@ "timestamp": 1512405163000 } ] - }, - "mostWatched": null + } } }, "contentType": "application/json; charset=utf-8" diff --git a/data/ukchina/cpsAssets/trad/23307454.json b/data/ukchina/cpsAssets/trad/23307454.json index c26eb9525cd..fdbd0aa94da 100644 --- a/data/ukchina/cpsAssets/trad/23307454.json +++ b/data/ukchina/cpsAssets/trad/23307454.json @@ -1071,8 +1071,7 @@ "timestamp": 1479382678000 } ] - }, - "mostWatched": null + } } }, "contentType": "application/json; charset=utf-8" diff --git a/data/ukchina/frontpage/simp.json b/data/ukchina/frontpage/simp.json index 6e0e0fe168f..e4e8131f8a7 100644 --- a/data/ukchina/frontpage/simp.json +++ b/data/ukchina/frontpage/simp.json @@ -7655,8 +7655,7 @@ "timestamp": 1475486828000 } ] - }, - "mostWatched": null + } } }, "contentType": "application/json; charset=utf-8" diff --git a/data/ukchina/frontpage/trad.json b/data/ukchina/frontpage/trad.json index e76f9327268..6cad22609c6 100644 --- a/data/ukchina/frontpage/trad.json +++ b/data/ukchina/frontpage/trad.json @@ -7657,8 +7657,7 @@ "timestamp": 1435152923000 } ] - }, - "mostWatched": null + } } }, "contentType": "application/json; charset=utf-8" diff --git a/data/ukrainian/cpsAssets/news-russian-23333960.json b/data/ukrainian/cpsAssets/news-russian-23333960.json index 2de15fc3d1d..8b1e608ec8b 100644 --- a/data/ukrainian/cpsAssets/news-russian-23333960.json +++ b/data/ukrainian/cpsAssets/news-russian-23333960.json @@ -699,8 +699,7 @@ "timestamp": 1477314080000 } ] - }, - "mostWatched": null + } } }, "contentType": "application/json; charset=utf-8" diff --git a/data/urdu/cpsAssets/science-51314202.json b/data/urdu/cpsAssets/science-51314202.json index c5dcf770cc7..070635fbde0 100644 --- a/data/urdu/cpsAssets/science-51314202.json +++ b/data/urdu/cpsAssets/science-51314202.json @@ -8033,8 +8033,7 @@ "secondaryData": { "topStories": null, "features": null, - "mostRead": null, - "mostWatched": null + "mostRead": null } }, "contentType": "application/json; charset=utf-8" diff --git a/data/urdu/frontpage/index.json b/data/urdu/frontpage/index.json index ae03c6fc7e2..a19b1a7adb1 100644 --- a/data/urdu/frontpage/index.json +++ b/data/urdu/frontpage/index.json @@ -2450,8 +2450,7 @@ "timestamp": 1489404398000 } ] - }, - "mostWatched": null + } } }, "contentType": "application/json; charset=utf-8" diff --git a/data/uzbek/cpsAssets/sport-23248721.json b/data/uzbek/cpsAssets/sport-23248721.json index 4c2bd2c220b..d5006b64de1 100644 --- a/data/uzbek/cpsAssets/sport-23248721.json +++ b/data/uzbek/cpsAssets/sport-23248721.json @@ -297,242 +297,7 @@ "secondaryData": { "topStories": null, "features": null, - "mostRead": null, - "mostWatched": { - "generated": "2023-06-21T12:42:57.939Z", - "lastRecordTimeStamp": "2021-05-04T11:53:00Z", - "firstRecordTimeStamp": "2021-05-04T03:53:00Z", - "totalRecords": 4, - "records": [ - { - "id": "7ddd3054-31c8-0b46-af41-661f5dda0709", - "rank": 1, - "count": 6010, - "urn": "urn:bbc:curie:asset:7ddd3054-31c8-0b46-af41-661f5dda0709", - "promo": { - "headlines": { - "shortHeadline": "test Uzbek Latin video", - "headline": "test Uzbek Latin video" - }, - "locators": { - "assetUri": "/uzbek/lotin-23051989", - "curieCpsUrn": "urn:bbc:cps:curie:asset:7ddd3054-31c8-0b46-af41-661f5dda0709", - "assetId": "23051989", - "cpsUrn": "urn:bbc:content:assetUri:uzbek/lotin-23051989", - "curie": "http://www.bbc.co.uk/asset/7ddd3054-31c8-0b46-af41-661f5dda0709" - }, - "summary": "test Uzbek Latin video", - "timestamp": 1465910821000, - "language": "uz-Latn", - "passport": { - "home": "http://www.bbc.co.uk/ontologies/passport/home/Uzbek", - "taggings": [] - }, - "media": { - "id": "23034846", - "subType": "primary", - "format": "video", - "externalId": "p012vc7h", - "entityType": "Clip", - "caption": "brasil short Bebê é resgatado de escombros após terremoto no Jãpao", - "statusCode": 404, - "statusMessage": "Asset could not be found. Perhaps it was withdrawn.", - "type": "external_vpid" - }, - "indexImage": { - "id": "63481008", - "subType": "index", - "href": "http://b.files.bbci.co.uk/13892/test/_63481008_p012vchb.jpg", - "path": "/cpsdevpb/13892/test/_63481008_p012vchb.jpg", - "height": 576, - "width": 1024, - "altText": "test brasil video áéíóú âêîôû àèìòù", - "copyrightHolder": "BBC Brasília", - "type": "image" - }, - "id": "urn:bbc:ares::asset:uzbek/lotin-23051989", - "type": "cps" - } - }, - { - "id": "031ecf7c-ced8-7e4f-9e75-ad22c8e6b54b", - "rank": 2, - "count": 5865, - "urn": "urn:bbc:curie:asset:031ecf7c-ced8-7e4f-9e75-ad22c8e6b54b", - "promo": { - "headlines": { - "shortHeadline": "BBCning 60 lahzalik videoyangiliklari", - "headline": "16 iyun kuni jahonda yuz bergan muhim voqealar sharhi Latin." - }, - "locators": { - "assetUri": "/uzbek/lotin-23053619", - "curieCpsUrn": "urn:bbc:cps:curie:asset:031ecf7c-ced8-7e4f-9e75-ad22c8e6b54b", - "assetId": "23053619", - "cpsUrn": "urn:bbc:content:assetUri:uzbek/lotin-23053619", - "curie": "http://www.bbc.co.uk/asset/031ecf7c-ced8-7e4f-9e75-ad22c8e6b54b" - }, - "summary": "Ha, bugun Angliyaga qarshi maydonga tushajak yulduzi Garet Beyl sharafiga Uelsning shimoliy Bala shahri ma‘muriyati xuddi shunga qaror qilibdi.", - "timestamp": 1466177546000, - "language": "uz-Latn", - "passport": { - "home": "http://www.bbc.co.uk/ontologies/passport/home/Uzbek", - "taggings": [] - }, - "media": { - "id": "23053620", - "subType": "primary", - "format": "video", - "externalId": "p0140vnz", - "entityType": "Clip", - "caption": "16 iyun kuni jahonda yuz bergan muhim voqealar sharhi Latin.", - "statusCode": 404, - "statusMessage": "Asset could not be found. Perhaps it was withdrawn.", - "type": "external_vpid" - }, - "indexImage": { - "id": "63490936", - "subType": "index", - "href": "http://b.files.bbci.co.uk/F9A5/test/_63490936_p0140w5x.jpg", - "path": "/cpsdevpb/F9A5/test/_63490936_p0140w5x.jpg", - "height": 576, - "width": 1024, - "altText": "BBCning 60 lahzalik videoyangiliklari", - "caption": "BBCning 60 lahzalik videoyangiliklari", - "copyrightHolder": "Alamy", - "type": "image" - }, - "id": "urn:bbc:ares::asset:uzbek/lotin-23053619", - "type": "cps" - } - }, - { - "id": "d1bef766-a8c0-834e-bfbc-b9c0ca2f04e4", - "rank": 3, - "count": 5766, - "urn": "urn:bbc:curie:asset:d1bef766-a8c0-834e-bfbc-b9c0ca2f04e4", - "promo": { - "headlines": { - "shortHeadline": "Ўзбекистон, Коронавирус: Мирзиёев Хитой усулини қўлламоқчи - O`zbekiston", - "headline": "Ўзбекистон, Коронавирус: Мирзиёев Хитой усулини қўлламоқчи - O`zbekiston" - }, - "locators": { - "assetUri": "/uzbek/world-23053613", - "curieCpsUrn": "urn:bbc:cps:curie:asset:d1bef766-a8c0-834e-bfbc-b9c0ca2f04e4", - "assetId": "23053613", - "cpsUrn": "urn:bbc:content:assetUri:uzbek/world-23053613", - "curie": "http://www.bbc.co.uk/asset/d1bef766-a8c0-834e-bfbc-b9c0ca2f04e4" - }, - "summary": "Ўзбекистон, Коронавирус: Мирзиёев Хитой усулини қўлламоқчи - O`zbekiston", - "timestamp": 1466593972000, - "language": "uz-Cyrl", - "passport": { - "category": { - "categoryId": "http://www.bbc.co.uk/ontologies/applicationlogic-news/News", - "categoryName": "News" - }, - "home": "http://www.bbc.co.uk/ontologies/passport/home/Uzbek", - "taggings": [] - }, - "media": { - "id": "p01qjbpq", - "subType": "clip", - "format": "video", - "title": "koala", - "synopses": { - "short": "koajaa", - "long": "koala ijm aus", - "medium": "australia" - }, - "imageUrl": "ichef.test.bbci.co.uk/images/ic/$recipe/p01qjbvt.jpg", - "embedding": true, - "advertising": false, - "caption": "nnnnn", - "versions": [ - { - "versionId": "p01qjbvb", - "types": [ - "Editorial" - ], - "duration": 15, - "durationISO8601": "PT15S", - "warnings": {}, - "availableTerritories": { - "uk": true, - "nonUk": true - }, - "availableFrom": 1582890367000 - } - ], - "smpKind": "programme", - "type": "media" - }, - "indexImage": { - "id": "63490864", - "subType": "index", - "href": "http://b.files.bbci.co.uk/B6D9/test/_63490864_p0140swc.jpg", - "path": "/cpsdevpb/B6D9/test/_63490864_p0140swc.jpg", - "height": 576, - "width": 1024, - "altText": "Америкада 2 яшар болани тимсоҳ тортиб кетди", - "copyrightHolder": "Alamy", - "type": "image" - }, - "id": "urn:bbc:ares::asset:uzbek/world-23053613", - "type": "cps" - } - }, - { - "id": "6cfd1bfe-3787-8143-a3cf-422f0739b070", - "rank": 4, - "count": 1549, - "urn": "urn:bbc:curie:asset:6cfd1bfe-3787-8143-a3cf-422f0739b070", - "promo": { - "headlines": { - "shortHeadline": "test Uzbek Cyrillic video", - "headline": "test Uzbek Cyrillic video" - }, - "locators": { - "assetUri": "/uzbek/uzbekistan-23051985", - "curieCpsUrn": "urn:bbc:cps:curie:asset:6cfd1bfe-3787-8143-a3cf-422f0739b070", - "assetId": "23051985", - "cpsUrn": "urn:bbc:content:assetUri:uzbek/uzbekistan-23051985", - "curie": "http://www.bbc.co.uk/asset/6cfd1bfe-3787-8143-a3cf-422f0739b070" - }, - "summary": "test Uzbek Cyrillic video", - "timestamp": 1465910632000, - "language": "uz-Cyrl", - "passport": { - "home": "http://www.bbc.co.uk/ontologies/passport/home/Uzbek", - "taggings": [] - }, - "media": { - "id": "23034846", - "subType": "primary", - "format": "video", - "externalId": "p012vc7h", - "entityType": "Clip", - "caption": "brasil short Bebê é resgatado de escombros após terremoto no Jãpao", - "statusCode": 404, - "statusMessage": "Asset could not be found. Perhaps it was withdrawn.", - "type": "external_vpid" - }, - "indexImage": { - "id": "63481008", - "subType": "index", - "href": "http://b.files.bbci.co.uk/13892/test/_63481008_p012vchb.jpg", - "path": "/cpsdevpb/13892/test/_63481008_p012vchb.jpg", - "height": 576, - "width": 1024, - "altText": "test brasil video áéíóú âêîôû àèìòù", - "copyrightHolder": "BBC Brasília", - "type": "image" - }, - "id": "urn:bbc:ares::asset:uzbek/uzbekistan-23051985", - "type": "cps" - } - } - ] - } + "mostRead": null } }, "contentType": "application/json; charset=utf-8" diff --git a/data/uzbek/cpsAssets/uzbekistan-53263099.json b/data/uzbek/cpsAssets/uzbekistan-53263099.json index 26d473ee05b..7c5c69f0558 100644 --- a/data/uzbek/cpsAssets/uzbekistan-53263099.json +++ b/data/uzbek/cpsAssets/uzbekistan-53263099.json @@ -1121,8 +1121,7 @@ "timestamp": "2017-09-13T17:24:15.000Z" } ] - }, - "mostWatched": null + } } }, "contentType": "application/json; charset=utf-8" diff --git a/data/yoruba/cpsAssets/media-23256797.json b/data/yoruba/cpsAssets/media-23256797.json index 77aa2d8d710..83741849d7e 100644 --- a/data/yoruba/cpsAssets/media-23256797.json +++ b/data/yoruba/cpsAssets/media-23256797.json @@ -358,1461 +358,7 @@ "secondaryData": { "topStories": null, "features": null, - "mostRead": null, - "mostWatched": { - "generated": "2023-06-21T10:29:00.715Z", - "lastRecordTimeStamp": "2021-05-04T11:53:00Z", - "firstRecordTimeStamp": "2021-05-04T07:53:00Z", - "totalRecords": 20, - "records": [ - { - "id": "ac52b9c0-7c5e-a144-ac42-cc33aa44d4fb", - "rank": 1, - "count": 9429, - "urn": "urn:bbc:curie:asset:ac52b9c0-7c5e-a144-ac42-cc33aa44d4fb", - "promo": { - "headlines": { - "shortHeadline": "Keresimesi Ọdun de- Ọmọ Bello", - "headline": "Omo Bello kọ orin keresimesi lede Yoruba" - }, - "locators": { - "assetUri": "/yoruba/23174809", - "curieCpsUrn": "urn:bbc:cps:curie:asset:ac52b9c0-7c5e-a144-ac42-cc33aa44d4fb", - "assetId": "23174809", - "cpsUrn": "urn:bbc:content:assetUri:yoruba/23174809", - "curie": "http://www.bbc.co.uk/asset/ac52b9c0-7c5e-a144-ac42-cc33aa44d4fb" - }, - "summary": "Akorin ọmọ ile Faranse ti o tun je ọmọ Naijiria Ọmọ Bello ko orin keresimesi lede Yoruba", - "timestamp": 1514460768000, - "language": "yo", - "passport": { - "home": "http://www.bbc.co.uk/ontologies/passport/home/Yoruba", - "taggings": [] - }, - "media": { - "id": "p01fn5b2", - "subType": "clip", - "format": "video", - "title": "Keresimesi Odun de- Omo Bello", - "synopses": { - "short": "The French Nigerian soprano Omo Bello sings merry Christmas in Yoruba", - "medium": "The French Nigerian soprano Omo Bello sings merry Christmas in Yoruba" - }, - "imageUrl": "ichef.test.bbci.co.uk/images/ic/$recipe/p01fn5dt.jpg", - "embedding": true, - "advertising": true, - "caption": "The French Nigerian soprano Omo Bello sings merry Christmas in Yoruba", - "versions": [ - { - "versionId": "p01fn5b4", - "types": [ - "Original" - ], - "duration": 8, - "durationISO8601": "PT8S", - "warnings": {}, - "availableTerritories": { - "uk": true, - "nonUk": true - }, - "availableFrom": 1514459587000 - } - ], - "smpKind": "programme", - "type": "media" - }, - "indexImage": { - "id": "63627989", - "subType": "index", - "href": "http://b.files.bbci.co.uk/1829C/test/_63627989_p01fn5dt.jpg", - "path": "/cpsdevpb/1829C/test/_63627989_p01fn5dt.jpg", - "height": 576, - "width": 1024, - "altText": "Keyframe #3", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:yoruba/23174809", - "type": "cps" - } - }, - { - "id": "79df049b-f9d9-ed49-918b-13cf27c751a3", - "rank": 2, - "count": 8432, - "urn": "urn:bbc:curie:asset:79df049b-f9d9-ed49-918b-13cf27c751a3", - "promo": { - "headlines": { - "shortHeadline": "Ijakule lowo teelo", - "headline": "Bi won ba ni ki awon elomiran ka ota ilosiwaju,kiakia ni oruko teelor won yio je yo." - }, - "locators": { - "assetUri": "/yoruba/23174765", - "curieCpsUrn": "urn:bbc:cps:curie:asset:79df049b-f9d9-ed49-918b-13cf27c751a3", - "assetId": "23174765", - "cpsUrn": "urn:bbc:content:assetUri:yoruba/23174765", - "curie": "http://www.bbc.co.uk/asset/79df049b-f9d9-ed49-918b-13cf27c751a3" - }, - "summary": "Bi won ba ni ki awon elomiran ka ota ilosiwaju,kiakia ni oruko teelor won yio je yo. Kilode to fi ribe? Ijakule paapa julo lasiko odun nipase aipari aso odun je oun ti o fa.", - "timestamp": 1513958610000, - "language": "yo", - "passport": { - "home": "http://www.bbc.co.uk/ontologies/passport/home/Yoruba", - "taggings": [] - }, - "media": { - "id": "p01fkynn", - "subType": "clip", - "format": "video", - "title": "Ijakule lowo teelo, ki lo le se lati bo lowo ogun ma fi aso sodun", - "synopses": { - "short": "Bi won ba ni ki awon elomiran ka ota ilosiwaju,kiakia ni oruko teelor won yio je yo.", - "medium": "Bi won ba ni ki awon elomiran ka ota ilosiwaju,kiakia ni oruko teelor won yio je yo. Kilode to fi ribe? Ijakule paapa julo lasiko odun nipase aipari aso odun je oun ti o fa." - }, - "imageUrl": "ichef.test.bbci.co.uk/images/ic/$recipe/p01fkys4.jpg", - "embedding": true, - "advertising": true, - "caption": "Asiko odun je akoko ise pupo fun awon aranso", - "versions": [ - { - "versionId": "p01fkynq", - "types": [ - "Original" - ], - "duration": 63, - "durationISO8601": "PT1M3S", - "warnings": {}, - "availableTerritories": { - "uk": true, - "nonUk": true - }, - "availableFrom": 1513951235000 - } - ], - "smpKind": "programme", - "type": "media" - }, - "indexImage": { - "id": "63626906", - "subType": "index", - "href": "http://b.files.bbci.co.uk/EE22/test/_63626906_p01fkys4.jpg", - "path": "/cpsdevpb/EE22/test/_63626906_p01fkys4.jpg", - "height": 578, - "width": 1024, - "altText": "Awon aranso", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:yoruba/23174765", - "type": "cps" - } - }, - { - "id": "67080ae2-d4f0-cc4e-950f-162726969e65", - "rank": 3, - "count": 8341, - "urn": "urn:bbc:curie:asset:67080ae2-d4f0-cc4e-950f-162726969e65", - "promo": { - "headlines": { - "shortHeadline": "FIDIO: Awọn ọdọ lẹ Gomina Ortom lokuta", - "headline": "Agbẹnusọ fun Gomina Ipinle Benue, Ogbeni Terver Akase ti o fi idi iṣẹlẹ naa mulẹ han si" - }, - "locators": { - "assetUri": "/yoruba/23176355", - "curieCpsUrn": "urn:bbc:cps:curie:asset:67080ae2-d4f0-cc4e-950f-162726969e65", - "assetId": "23176355", - "cpsUrn": "urn:bbc:content:assetUri:yoruba/23176355", - "curie": "http://www.bbc.co.uk/asset/67080ae2-d4f0-cc4e-950f-162726969e65" - }, - "summary": "Agbẹnusọ fun Gomina Ipinle Benue, Ogbeni Terver Akase ti o fi idi iṣẹlẹ naa mulẹ han si BBC sugbọn o sọ pe Gomina lọ lati ṣe ibẹwo si agbegbe iṣoro ti bẹ silẹ ati lati daabobo awọn", - "timestamp": 1515010252000, - "language": "yo", - "passport": { - "home": "http://www.bbc.co.uk/ontologies/passport/home/Yoruba", - "taggings": [] - }, - "media": { - "id": "p01fr16l", - "subType": "clip", - "format": "video", - "title": "Awọn ọdọ lẹ Gomina Ortom loko", - "synopses": { - "short": "Agbẹnusọ fun Gomina Ipinle Benue, Ogbeni Terver Akase ti o fi idi iṣẹlẹ naa mulẹ han si BB", - "medium": "Agbẹnusọ fun Gomina Ipinle Benue, Ogbeni Terver Akase ti o fi idi iṣẹlẹ naa mulẹ han si BBC sugbọn o sọ pe Gomina lọ lati ṣe ibẹwo si agbegbe iṣoro ti bẹ silẹ ati lati daabobo awọn" - }, - "imageUrl": "ichef.test.bbci.co.uk/images/ic/$recipe/p01fr18s.jpg", - "embedding": true, - "advertising": true, - "caption": "Agbẹnusọ fun Gomina Ipinle Benue, Ogbeni Terver Akase ti o fi idi iṣẹlẹ naa mulẹ han si BB", - "versions": [ - { - "versionId": "p01fr16n", - "types": [ - "Original" - ], - "duration": 57, - "durationISO8601": "PT57S", - "warnings": {}, - "availableTerritories": { - "uk": true, - "nonUk": true - }, - "availableFrom": 1515008562000 - } - ], - "smpKind": "programme", - "type": "media" - }, - "indexImage": { - "id": "63640988", - "subType": "index", - "href": "http://b.files.bbci.co.uk/15B48/test/_63640988_awndtiwngbeokuta.jpg", - "path": "/cpsdevpb/15B48/test/_63640988_awndtiwngbeokuta.jpg", - "height": 371, - "width": 660, - "altText": "Awọn ọdọ ti wọn gbe okuta", - "caption": "Awọn ọdọ ti wọn gbe okuta", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:yoruba/23176355", - "type": "cps" - } - }, - { - "id": "1654f1af-9a7f-4a4d-a0e9-174e393f4074", - "rank": 4, - "count": 8268, - "urn": "urn:bbc:curie:asset:1654f1af-9a7f-4a4d-a0e9-174e393f4074", - "promo": { - "headlines": { - "shortHeadline": "Iroyin Iseju kan lori BBC Yoruba", - "headline": "Iroyin Iseju kan lori BBC Yoruba" - }, - "locators": { - "assetUri": "/yoruba/23175823", - "curieCpsUrn": "urn:bbc:cps:curie:asset:1654f1af-9a7f-4a4d-a0e9-174e393f4074", - "assetId": "23175823", - "cpsUrn": "urn:bbc:content:assetUri:yoruba/23175823", - "curie": "http://www.bbc.co.uk/asset/1654f1af-9a7f-4a4d-a0e9-174e393f4074" - }, - "summary": "Iroyin Iseju kan lori BBC Yoruba", - "timestamp": 1515087625000, - "language": "yo", - "passport": { - "home": "http://www.bbc.co.uk/ontologies/passport/home/Yoruba", - "taggings": [] - }, - "media": { - "id": "p01fq9rn", - "subType": "clip", - "format": "audio", - "title": "Iroyin Iseju kan lori BBC Yoruba", - "synopses": { - "short": "Iroyin Iseju kan lori BBC Yoruba" - }, - "imageUrl": "ichef.test.bbci.co.uk/images/ic/$recipe/p01fq9sm.png", - "embedding": true, - "advertising": true, - "caption": "Iroyin Iseju kan lori BBC Yoruba", - "versions": [ - { - "versionId": "p01fq9rq", - "types": [ - "Original" - ], - "duration": 55, - "durationISO8601": "PT55S", - "warnings": {}, - "availableTerritories": { - "uk": true, - "nonUk": true - }, - "availableFrom": 1514911247000 - } - ], - "smpKind": "radioProgramme", - "type": "media" - }, - "indexImage": { - "id": "63639437", - "subType": "index", - "href": "http://b.files.bbci.co.uk/11F15/test/_63639437_bbc.jpg", - "path": "/cpsdevpb/11F15/test/_63639437_bbc.jpg", - "height": 549, - "width": 976, - "altText": "Iroyin Iseju kan lori BBC Yoruba", - "caption": "Iroyin Iseju kan lori BBC Yoruba", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:yoruba/23175823", - "type": "cps" - } - }, - { - "id": "79df2958-1ca9-1446-a26f-fd0973d5eb9a", - "rank": 5, - "count": 7812, - "urn": "urn:bbc:curie:asset:79df2958-1ca9-1446-a26f-fd0973d5eb9a", - "promo": { - "headlines": { - "shortHeadline": "Ki ni o mọ to n jẹ owo iranwọ epo?", - "headline": "Ki ni o mọ to n jẹ owo iranwọ epo?" - }, - "locators": { - "assetUri": "/yoruba/23177113", - "curieCpsUrn": "urn:bbc:cps:curie:asset:79df2958-1ca9-1446-a26f-fd0973d5eb9a", - "assetId": "23177113", - "cpsUrn": "urn:bbc:content:assetUri:yoruba/23177113", - "curie": "http://www.bbc.co.uk/asset/79df2958-1ca9-1446-a26f-fd0973d5eb9a" - }, - "summary": "Ki ni o mọ to n jẹ owo iranwọ epo?", - "timestamp": 1515160712000, - "language": "yo", - "passport": { - "home": "http://www.bbc.co.uk/ontologies/passport/home/Yoruba", - "taggings": [] - }, - "media": { - "id": "p01fsqq2", - "subType": "clip", - "format": "video", - "title": "Ki ni o mọ to n jẹ owo iranwọ epo?", - "synopses": { - "short": "Ki ni o mọ to n jẹ owo iranwọ epo?", - "medium": "Ki ni o mọ to n jẹ owo iranwọ epo?", - "long": "Ki ni o mọ to n jẹ owo iranwọ epo?" - }, - "imageUrl": "ichef.test.bbci.co.uk/images/ic/$recipe/p01fsqtq.jpg", - "embedding": true, - "advertising": true, - "caption": "Ki ni o mọ to n jẹ owo iranwọ epo?", - "versions": [ - { - "versionId": "p01fsqq4", - "types": [ - "Original" - ], - "duration": 232, - "durationISO8601": "PT3M52S", - "warnings": {}, - "availableTerritories": { - "uk": true, - "nonUk": true - }, - "availableFrom": 1515160305000 - } - ], - "smpKind": "programme", - "type": "media" - }, - "indexImage": { - "id": "63641380", - "subType": "index", - "href": "http://b.files.bbci.co.uk/207A/test/_63641380_arigbabusulaimonolawale.jpg", - "path": "/cpsdevpb/207A/test/_63641380_arigbabusulaimonolawale.jpg", - "height": 261, - "width": 464, - "altText": "Arigbabu Sulaimon Olawale", - "caption": "Arigbabu Sulaimon Olawale", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:yoruba/23177113", - "type": "cps" - } - }, - { - "id": "a2239997-76f6-fb4a-9e18-ef2a70da3c47", - "rank": 6, - "count": 6846, - "urn": "urn:bbc:curie:asset:a2239997-76f6-fb4a-9e18-ef2a70da3c47", - "promo": { - "headlines": { - "shortHeadline": "Libya: Iriri awọn arinrinajo ọmọ Naijiria", - "headline": "Libya: Iriri awọn arinrinajo ọmọ Naijiria" - }, - "locators": { - "assetUri": "/yoruba/23179495", - "curieCpsUrn": "urn:bbc:cps:curie:asset:a2239997-76f6-fb4a-9e18-ef2a70da3c47", - "assetId": "23179495", - "cpsUrn": "urn:bbc:content:assetUri:yoruba/23179495", - "curie": "http://www.bbc.co.uk/asset/a2239997-76f6-fb4a-9e18-ef2a70da3c47" - }, - "summary": "Iriri awọn arinrinajo ọmọ Naijiria lorilẹ ede Libya", - "timestamp": 1515699601000, - "language": "yo", - "passport": { - "home": "http://www.bbc.co.uk/ontologies/passport/home/Yoruba", - "taggings": [] - }, - "media": { - "id": "p01fxf8h", - "subType": "clip", - "format": "video", - "title": "Iriri awọn arinrinajo ọmọ Naijiria lorilẹ ede Libya", - "synopses": { - "short": "Iriri awọn arinrinajo ọmọ Naijiria lorilẹ ede Libya", - "medium": "Iriri awọn arinrinajo ọmọ Naijiria lorilẹ ede Libya", - "long": "Iriri awọn arinrinajo ọmọ Naijiria lorilẹ ede Libya" - }, - "imageUrl": "ichef.test.bbci.co.uk/images/ic/$recipe/p01fxfb6.jpg", - "embedding": true, - "advertising": true, - "caption": "Iriri awọn arinrinajo ọmọ Naijiria lorilẹ ede Libya", - "versions": [ - { - "versionId": "p01fxf8k", - "types": [ - "Original" - ], - "duration": 79, - "durationISO8601": "PT1M19S", - "warnings": {}, - "availableTerritories": { - "uk": true, - "nonUk": true - }, - "availableFrom": 1515698356000 - } - ], - "smpKind": "programme", - "type": "media" - }, - "indexImage": { - "id": "63645100", - "subType": "index", - "href": "http://b.files.bbci.co.uk/009A/test/_63645100_iririawnarinrinajomnaijiria.jpg", - "path": "/cpsdevpb/009A/test/_63645100_iririawnarinrinajomnaijiria.jpg", - "height": 549, - "width": 976, - "altText": "Iriri awọn arinrinajo ọmọ Naijiria lorilẹ ede Libya", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:yoruba/23179495", - "type": "cps" - } - }, - { - "id": "0f009bda-7f9f-4d41-93d6-e10adf41008c", - "rank": 7, - "count": 6539, - "urn": "urn:bbc:curie:asset:0f009bda-7f9f-4d41-93d6-e10adf41008c", - "promo": { - "headlines": { - "shortHeadline": "Iroyin Iseju lori BBC Yoruba", - "headline": "Iroyin Iseju lori BBC Yoruba" - }, - "locators": { - "assetUri": "/yoruba/23176882", - "curieCpsUrn": "urn:bbc:cps:curie:asset:0f009bda-7f9f-4d41-93d6-e10adf41008c", - "assetId": "23176882", - "cpsUrn": "urn:bbc:content:assetUri:yoruba/23176882", - "curie": "http://www.bbc.co.uk/asset/0f009bda-7f9f-4d41-93d6-e10adf41008c" - }, - "summary": "Iroyin Iseju lori BBC Yoruba", - "timestamp": 1515087679000, - "language": "yo", - "passport": { - "home": "http://www.bbc.co.uk/ontologies/passport/home/Yoruba", - "taggings": [] - }, - "media": { - "id": "p01fs5r2", - "subType": "clip", - "format": "audio", - "title": "Iroyin Iseju kan lori BBC Yoruba", - "synopses": { - "short": "Iroyin Iseju kan lori BBC Yoruba" - }, - "imageUrl": "ichef.test.bbci.co.uk/images/ic/$recipe/p01fs89s.png", - "embedding": true, - "advertising": true, - "caption": "Iroyin Iseju kan lori BBC Yoruba", - "versions": [ - { - "versionId": "p01fs5rx", - "types": [ - "Original" - ], - "duration": 61, - "durationISO8601": "PT1M1S", - "warnings": {}, - "availableTerritories": { - "uk": true, - "nonUk": true - }, - "availableFrom": 1515083638000 - } - ], - "smpKind": "radioProgramme", - "type": "media" - }, - "indexImage": { - "id": "63641043", - "subType": "index", - "href": "http://b.files.bbci.co.uk/84DE/test/_63641043_iroyinisejuloribbcyoruba.jpg", - "path": "/cpsdevpb/84DE/test/_63641043_iroyinisejuloribbcyoruba.jpg", - "height": 549, - "width": 976, - "altText": "Iroyin Iseju lori BBC Yoruba", - "caption": "Iroyin Iseju lori BBC Yoruba", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:yoruba/23176882", - "type": "cps" - } - }, - { - "id": "7883edfb-7f0c-d240-9014-7e760d8834fd", - "rank": 8, - "count": 6349, - "urn": "urn:bbc:curie:asset:7883edfb-7f0c-d240-9014-7e760d8834fd", - "promo": { - "headlines": { - "shortHeadline": "Ọjọ buruku esu gbomi mu", - "headline": "Bi ọkọ to nsare se ba ara rẹ lori aja ile kan" - }, - "locators": { - "assetUri": "/yoruba/23181222", - "curieCpsUrn": "urn:bbc:cps:curie:asset:7883edfb-7f0c-d240-9014-7e760d8834fd", - "assetId": "23181222", - "cpsUrn": "urn:bbc:content:assetUri:yoruba/23181222", - "curie": "http://www.bbc.co.uk/asset/7883edfb-7f0c-d240-9014-7e760d8834fd" - }, - "summary": "Ere asapajude mu ki awakọ kan foju ri ibi. Ayafi ti yiyọ Ọlọrun", - "timestamp": 1516113770000, - "language": "yo", - "passport": { - "home": "http://www.bbc.co.uk/ontologies/passport/home/Yoruba", - "taggings": [] - }, - "media": { - "id": "p01fz8wq", - "subType": "clip", - "format": "video", - "title": "Bi ọkọ to nsare se ba ara rẹ lori aja ile kan", - "synopses": { - "short": "Ọjọ buruku esu gbomi mu", - "medium": "Ere asapajude mu ki awakọ kan foju ri ibi. Ayafi ti yiyọ Ọlọrun", - "long": "Ere asapajude mu ki awakọ kan foju ri ibi. Ayafi ti yiyọ Ọlọrun" - }, - "imageUrl": "ichef.test.bbci.co.uk/images/ic/$recipe/legacy/clip/p01fz8wq.jpg", - "embedding": true, - "advertising": true, - "caption": "Ọjọ buruku esu gbomi mu", - "versions": [ - { - "versionId": "p01fz8ws", - "types": [ - "Original" - ], - "duration": 29, - "durationISO8601": "PT29S", - "warnings": {}, - "availableTerritories": { - "uk": true, - "nonUk": true - }, - "availableFrom": 1516113241000 - } - ], - "smpKind": "programme", - "type": "media" - }, - "indexImage": { - "id": "63650551", - "subType": "index", - "href": "http://b.files.bbci.co.uk/3C91/test/_63650551_californiacaraccident.png", - "path": "/cpsdevpb/3C91/test/_63650551_californiacaraccident.png", - "height": 1061, - "width": 1887, - "altText": "Ijamba ọkọ ni ilu California", - "caption": "Asare tete ko ni kọja ile", - "copyrightHolder": "Orange Country Fire Authority", - "type": "image" - }, - "id": "urn:bbc:ares::asset:yoruba/23181222", - "type": "cps" - } - }, - { - "id": "01b4c02f-034e-a54f-8014-586ab45c5545", - "rank": 9, - "count": 6237, - "urn": "urn:bbc:curie:asset:01b4c02f-034e-a54f-8014-586ab45c5545", - "promo": { - "headlines": { - "shortHeadline": "Iroyin iseju kan lori BBC Yoruba", - "headline": "Iroyin iseju kan lori BBC Yoruba" - }, - "locators": { - "assetUri": "/yoruba/23178113", - "curieCpsUrn": "urn:bbc:cps:curie:asset:01b4c02f-034e-a54f-8014-586ab45c5545", - "assetId": "23178113", - "cpsUrn": "urn:bbc:content:assetUri:yoruba/23178113", - "curie": "http://www.bbc.co.uk/asset/01b4c02f-034e-a54f-8014-586ab45c5545" - }, - "summary": "Iroyin iseju kan lori BBC Yoruba", - "timestamp": 1515432353000, - "language": "yo", - "passport": { - "home": "http://www.bbc.co.uk/ontologies/passport/home/Yoruba", - "taggings": [] - }, - "media": { - "id": "p01ftzvg", - "subType": "clip", - "format": "audio", - "title": "Iroyin iseju kan lori BBC Yoruba", - "synopses": { - "short": "Iroyin iseju kan lori BBC Yoruba", - "medium": "Iroyin iseju kan lori BBC Yoruba", - "long": "Iroyin iseju kan lori BBC Yoruba" - }, - "imageUrl": "ichef.test.bbci.co.uk/images/ic/$recipe/p01ftzvy.jpg", - "embedding": true, - "advertising": true, - "caption": "Iroyin iseju kan lori BBC Yoruba", - "versions": [ - { - "versionId": "p01ftzvj", - "types": [ - "Original" - ], - "duration": 51, - "durationISO8601": "PT51S", - "warnings": {}, - "availableTerritories": { - "uk": true, - "nonUk": true - }, - "availableFrom": 1515432011000 - } - ], - "smpKind": "radioProgramme", - "type": "media" - }, - "indexImage": { - "id": "63643154", - "subType": "index", - "href": "http://b.files.bbci.co.uk/B04E/test/_63643154_bbc-world-news.jpg", - "path": "/cpsdevpb/B04E/test/_63643154_bbc-world-news.jpg", - "height": 342, - "width": 608, - "altText": "Iroyin iseju kan lori BBC Yoruba", - "caption": "Iroyin iseju kan lori BBC Yoruba", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:yoruba/23178113", - "type": "cps" - } - }, - { - "id": "112fd7e9-209c-0b4e-8442-1899c035b640", - "rank": 10, - "count": 6169, - "urn": "urn:bbc:curie:asset:112fd7e9-209c-0b4e-8442-1899c035b640", - "promo": { - "headlines": { - "shortHeadline": "Yemi Alade lori BBC Yoruba", - "headline": "Yemi Alade lori BBC Yoruba" - }, - "locators": { - "assetUri": "/yoruba/23174993", - "curieCpsUrn": "urn:bbc:cps:curie:asset:112fd7e9-209c-0b4e-8442-1899c035b640", - "assetId": "23174993", - "cpsUrn": "urn:bbc:content:assetUri:yoruba/23174993", - "curie": "http://www.bbc.co.uk/asset/112fd7e9-209c-0b4e-8442-1899c035b640" - }, - "summary": "Yemi Alade lori BBC Yoruba", - "timestamp": 1514477788000, - "language": "yo", - "passport": { - "home": "http://www.bbc.co.uk/ontologies/passport/home/Yoruba", - "taggings": [] - }, - "media": { - "id": "p01fn7yz", - "subType": "clip", - "format": "video", - "title": "Yemi Alade lori BBC Yoruba", - "synopses": { - "short": "Yemi Alade lori BBC Yoruba", - "medium": "Yemi Alade lori BBC Yoruba", - "long": "Yemi Alade lori BBC Yoruba" - }, - "imageUrl": "ichef.test.bbci.co.uk/images/ic/$recipe/p01fn80g.jpg", - "embedding": true, - "advertising": true, - "caption": "Yemi Alade lori BBC Yoruba", - "versions": [ - { - "versionId": "p01fn7z1", - "types": [ - "Original" - ], - "duration": 4, - "durationISO8601": "PT4S", - "warnings": {}, - "availableTerritories": { - "uk": true, - "nonUk": true - }, - "availableFrom": 1514477497000 - } - ], - "smpKind": "programme", - "type": "media" - }, - "indexImage": { - "id": "63637479", - "subType": "index", - "href": "http://b.files.bbci.co.uk/17CC1/test/_63637479_p01fn80g.jpg", - "path": "/cpsdevpb/17CC1/test/_63637479_p01fn80g.jpg", - "height": 575, - "width": 1024, - "altText": "Yemi Alade lori BBC Yoruba", - "copyrightHolder": "Yemi Alade lori BBC Yoruba", - "type": "image" - }, - "id": "urn:bbc:ares::asset:yoruba/23174993", - "type": "cps" - } - }, - { - "id": "f3bd0d7b-32cc-e642-bedf-eeb5d692d4e0", - "rank": 11, - "count": 6005, - "urn": "urn:bbc:curie:asset:f3bd0d7b-32cc-e642-bedf-eeb5d692d4e0", - "promo": { - "headlines": { - "shortHeadline": "Fayose ke si awọn ọdẹ lati daabo bo Ipinlẹ Ekiti", - "headline": "Awọn ọdẹ bẹ Gomina Ayodele Fayose wo lati gba asẹ fun lile awọn daran daran kuro nipinlẹ Ekiti" - }, - "locators": { - "assetUri": "/yoruba/23179084", - "curieCpsUrn": "urn:bbc:cps:curie:asset:f3bd0d7b-32cc-e642-bedf-eeb5d692d4e0", - "assetId": "23179084", - "cpsUrn": "urn:bbc:content:assetUri:yoruba/23179084", - "curie": "http://www.bbc.co.uk/asset/f3bd0d7b-32cc-e642-bedf-eeb5d692d4e0" - }, - "summary": "Awọn ọdẹ bẹ Gomina Ayodele Fayose wo lati gba asẹ fun lile awọn daran daran kuro nipinlẹ Ekiti", - "timestamp": 1515608718000, - "language": "yo", - "passport": { - "home": "http://www.bbc.co.uk/ontologies/passport/home/Yoruba", - "taggings": [] - }, - "media": { - "id": "p01fvxmb", - "subType": "clip", - "format": "video", - "title": "Awọn ọdẹ bẹ Gomina Ayodele Fayose wo lati gba asẹ fun lile awọn daran daran kuro nipinlẹ Ekiti", - "synopses": { - "short": "Awọn ọdẹ bẹ Gomina Ayodele Fayose wo nipinlẹ Ekiti", - "medium": "Awọn ọdẹ bẹ Gomina Ayodele Fayose wo lati gba asẹ fun lile awọn daran daran kuro nipinlẹ Ekiti", - "long": "Awọn ọdẹ bẹ Gomina Ayodele Fayose wo lati gba asẹ fun lile awọn daran daran kuro nipinlẹ Ekiti" - }, - "imageUrl": "ichef.test.bbci.co.uk/images/ic/$recipe/p01fvzzb.jpg", - "embedding": true, - "advertising": true, - "caption": "Awọn ọdẹ bẹ Gomina Ayodele Fayose wo nipinlẹ Ekiti", - "versions": [ - { - "versionId": "p01fvxmd", - "types": [ - "Original" - ], - "duration": 42, - "durationISO8601": "PT42S", - "warnings": {}, - "availableTerritories": { - "uk": true, - "nonUk": true - }, - "availableFrom": 1515605511000 - } - ], - "smpKind": "programme", - "type": "media" - }, - "indexImage": { - "id": "63644356", - "subType": "index", - "href": "http://b.files.bbci.co.uk/FF40/test/_63644356_awndbgominaayodelefayosewonipinlekiti.jpg", - "path": "/cpsdevpb/FF40/test/_63644356_awndbgominaayodelefayosewonipinlekiti.jpg", - "height": 549, - "width": 976, - "altText": "Awọn ọdẹ bẹ Gomina Ayodele Fayose wo lati gba asẹ fun lile awọn daran daran kuro nipinlẹ Ekiti", - "copyrightHolder": "Nigerian Tribune", - "type": "image" - }, - "id": "urn:bbc:ares::asset:yoruba/23179084", - "type": "cps" - } - }, - { - "id": "22005c7a-fb30-0441-a2db-60618e6facd5", - "rank": 12, - "count": 5559, - "urn": "urn:bbc:curie:asset:22005c7a-fb30-0441-a2db-60618e6facd5", - "promo": { - "headlines": { - "shortHeadline": "Asisat Oshoala: \"Wọn sọ pe o ti tan fun mi\"", - "headline": "Asisat Oshoala: Ifọrọwanilẹnuwo BBC Yoruba pẹlu ọmọ ẹgbẹ agbabọọlu Naijiria" - }, - "locators": { - "assetUri": "/yoruba/23178703", - "curieCpsUrn": "urn:bbc:cps:curie:asset:22005c7a-fb30-0441-a2db-60618e6facd5", - "assetId": "23178703", - "cpsUrn": "urn:bbc:content:assetUri:yoruba/23178703", - "curie": "http://www.bbc.co.uk/asset/22005c7a-fb30-0441-a2db-60618e6facd5" - }, - "summary": "Asisat Oshoala: Ifọrọwanilẹnuwo BBC Yoruba pẹlu ọmọ ẹgbẹ agbabọọlu Naijiria ati Dalian Quanjian ti orilẹ ede China.", - "timestamp": 1515522758000, - "language": "yo", - "passport": { - "home": "http://www.bbc.co.uk/ontologies/passport/home/Yoruba", - "taggings": [] - }, - "media": { - "id": "p01fvgr0", - "subType": "clip", - "format": "video", - "title": "Asisat Oshoala: Ifọrọwanilẹnuwo pẹlu BBC Yoruba", - "synopses": { - "short": "Asisat Oshoala: Ifọrọwanilẹnuwo BBC Yoruba pẹlu ọmọ ẹgbẹ agbabọọlu Naijiria", - "medium": "Asisat Oshoala: Ifọrọwanilẹnuwo BBC Yoruba pẹlu ọmọ ẹgbẹ agbabọọlu Naijiria ati Dalian Quanjian ti orilẹ ede China.", - "long": "Asisat Oshoala: Ifọrọwanilẹnuwo BBC Yoruba pẹlu ọmọ ẹgbẹ agbabọọlu Naijiria ati Dalian Quanjian ti orilẹ ede China." - }, - "imageUrl": "ichef.test.bbci.co.uk/images/ic/$recipe/p01g50j4.jpg", - "embedding": true, - "advertising": true, - "caption": "Asisat Oshoala: Ifọrọwanilẹnuwo BBC Yoruba pẹlu ọmọ ẹgbẹ agbabọọlu Naijiria", - "versions": [ - { - "versionId": "p01fvgr2", - "types": [ - "Original" - ], - "duration": 68, - "durationISO8601": "PT1M8S", - "warnings": {}, - "availableTerritories": { - "uk": true, - "nonUk": true - }, - "availableFrom": 1515522269000 - } - ], - "smpKind": "programme", - "type": "media" - }, - "indexImage": { - "id": "63643843", - "subType": "index", - "href": "http://b.files.bbci.co.uk/8812/test/_63643843_asisatoshoalaifrwanilnuwoplubbcyoruba.jpg", - "path": "/cpsdevpb/8812/test/_63643843_asisatoshoalaifrwanilnuwoplubbcyoruba.jpg", - "height": 549, - "width": 976, - "altText": "Asisat Oshoala: Ifọrọwanilẹnuwo pẹlu BBC Yoruba", - "caption": "Asisat Oshoala: Ifọrọwanilẹnuwo pẹlu BBC Yoruba", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:yoruba/23178703", - "type": "cps" - } - }, - { - "id": "b4c62b36-1fc9-9740-9b0d-5ea26a74e410", - "rank": 13, - "count": 5051, - "urn": "urn:bbc:curie:asset:b4c62b36-1fc9-9740-9b0d-5ea26a74e410", - "promo": { - "headlines": { - "shortHeadline": "Mo n wa'yawo", - "headline": "Mo n wa'yawo" - }, - "locators": { - "assetUri": "/yoruba/23179155", - "curieCpsUrn": "urn:bbc:cps:curie:asset:b4c62b36-1fc9-9740-9b0d-5ea26a74e410", - "assetId": "23179155", - "cpsUrn": "urn:bbc:content:assetUri:yoruba/23179155", - "curie": "http://www.bbc.co.uk/asset/b4c62b36-1fc9-9740-9b0d-5ea26a74e410" - }, - "summary": "Mo n wa'yawo", - "timestamp": 1515686177000, - "language": "yo", - "passport": { - "home": "http://www.bbc.co.uk/ontologies/passport/home/Yoruba", - "taggings": [] - }, - "media": { - "id": "p01fxd3d", - "subType": "clip", - "format": "video", - "title": "Mo n wa'yawo", - "synopses": { - "short": "Mo n wa'yawo", - "medium": "Mo n wa'yawo", - "long": "Mo n wa'yawo" - }, - "imageUrl": "ichef.test.bbci.co.uk/images/ic/$recipe/p01fxd41.jpg", - "embedding": true, - "advertising": true, - "caption": "Mo n wa'yawo-Falz", - "versions": [ - { - "versionId": "p01fxd3g", - "types": [ - "Original" - ], - "duration": 82, - "durationISO8601": "PT1M22S", - "warnings": {}, - "availableTerritories": { - "uk": true, - "nonUk": true - }, - "availableFrom": 1515685687000 - } - ], - "smpKind": "programme", - "type": "media" - }, - "indexImage": { - "id": "63644959", - "subType": "index", - "href": "http://b.files.bbci.co.uk/176C8/test/_63644959_falz.jpg", - "path": "/cpsdevpb/176C8/test/_63644959_falz.jpg", - "height": 351, - "width": 624, - "altText": "Keyframe #8", - "caption": "Falz,olorin taka-sufe", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:yoruba/23179155", - "type": "cps" - } - }, - { - "id": "f1df353b-ff1c-5c4d-ba77-6f37b4a3b0f3", - "rank": 14, - "count": 4868, - "urn": "urn:bbc:curie:asset:f1df353b-ff1c-5c4d-ba77-6f37b4a3b0f3", - "promo": { - "headlines": { - "shortHeadline": "\"Atunto Naijiria la n fẹ\" - Gani Adams", - "headline": "Ijọba aparo kan o ga jukan lọ lo yẹ ki a maa lo ni Naijiria - Gani Adams" - }, - "locators": { - "assetUri": "/yoruba/23178766", - "curieCpsUrn": "urn:bbc:cps:curie:asset:f1df353b-ff1c-5c4d-ba77-6f37b4a3b0f3", - "assetId": "23178766", - "cpsUrn": "urn:bbc:content:assetUri:yoruba/23178766", - "curie": "http://www.bbc.co.uk/asset/f1df353b-ff1c-5c4d-ba77-6f37b4a3b0f3" - }, - "summary": "Ki ipinlẹ kọọkan o maa se amojuto awọn nkan to ba ni.", - "timestamp": 1515569307000, - "language": "yo", - "passport": { - "home": "http://www.bbc.co.uk/ontologies/passport/home/Yoruba", - "taggings": [] - }, - "media": { - "id": "p01fvn40", - "subType": "clip", - "format": "video", - "title": "Atunto Naijiria la n fẹ - Gani Adams", - "synopses": { - "short": "Ijọba aparo kan o ga jukan lọ lo yẹ ki a maa lo ni Naijiria.", - "medium": "Ki ipinlẹ kọọkan o maa se amojuto awọn nkan to ba ni." - }, - "imageUrl": "ichef.test.bbci.co.uk/images/ic/$recipe/p01fvn6j.jpg", - "embedding": true, - "advertising": true, - "caption": "Ijọba aparo kan o ga jukan lọ lo yẹ ki a maa lo ni Naijiria.", - "versions": [ - { - "versionId": "p01fvn42", - "types": [ - "Original" - ], - "duration": 206, - "durationISO8601": "PT3M26S", - "warnings": {}, - "availableTerritories": { - "uk": true, - "nonUk": true - }, - "availableFrom": 1515568946000 - } - ], - "smpKind": "programme", - "type": "media" - }, - "indexImage": { - "id": "63644014", - "subType": "index", - "href": "http://b.files.bbci.co.uk/A054/test/_63644014_p01fvn6j.jpg", - "path": "/cpsdevpb/A054/test/_63644014_p01fvn6j.jpg", - "height": 549, - "width": 976, - "altText": "Atunto Naijiria la n fẹ", - "caption": "Atunto Naijiria la n fẹ", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:yoruba/23178766", - "type": "cps" - } - }, - { - "id": "ebb08471-51de-1c4f-9783-64b55c58bbb7", - "rank": 15, - "count": 4524, - "urn": "urn:bbc:curie:asset:ebb08471-51de-1c4f-9783-64b55c58bbb7", - "promo": { - "headlines": { - "shortHeadline": "Isẹ́lẹ̀ ijamba ọ̀kọ̀ ni Alausa nilu eko lọ̀jọ̀ keresimesi", - "headline": "Isẹ́lẹ̀ ijamba ọ̀kọ̀ ni Alausa nilu eko lọ̀jọ̀ keresimesi" - }, - "locators": { - "assetUri": "/yoruba/23174991", - "curieCpsUrn": "urn:bbc:cps:curie:asset:ebb08471-51de-1c4f-9783-64b55c58bbb7", - "assetId": "23174991", - "cpsUrn": "urn:bbc:content:assetUri:yoruba/23174991", - "curie": "http://www.bbc.co.uk/asset/ebb08471-51de-1c4f-9783-64b55c58bbb7" - }, - "summary": "Isẹ́lẹ̀ ijamba ọ̀kọ̀ ni Alausa nilu eko lọ̀jọ̀ keresimesi", - "timestamp": 1514471962000, - "language": "yo", - "passport": { - "home": "http://www.bbc.co.uk/ontologies/passport/home/Yoruba", - "taggings": [] - }, - "media": { - "id": "p01fn6xr", - "subType": "clip", - "format": "video", - "title": "Isẹ́lẹ̀ ijamba ọ̀kọ̀ ni Alausa nilu eko lọ̀jọ̀ keresimesi", - "synopses": { - "short": "Isẹ́lẹ̀ ijamba ọ̀kọ̀ ni Alausa nilu eko lọ̀jọ̀ keresimesi", - "medium": "Isẹ́lẹ̀ ijamba ọ̀kọ̀ ni Alausa nilu eko lọ̀jọ̀ keresimesi", - "long": "Isẹ́lẹ̀ ijamba ọ̀kọ̀ ni Alausa nilu eko lọ̀jọ̀ keresimesi" - }, - "imageUrl": "ichef.test.bbci.co.uk/images/ic/$recipe/p01fn75t.jpg", - "embedding": true, - "advertising": true, - "caption": "Isẹ́lẹ̀ ijamba ọ̀kọ̀ ni Alausa nilu eko lọ̀jọ̀ keresimesi", - "versions": [ - { - "versionId": "p01fn6xv", - "types": [ - "Original" - ], - "duration": 74, - "durationISO8601": "PT1M14S", - "warnings": {}, - "availableTerritories": { - "uk": true, - "nonUk": true - }, - "availableFrom": 1514469609000 - } - ], - "smpKind": "programme", - "type": "media" - }, - "indexImage": { - "id": "63637401", - "subType": "index", - "href": "http://b.files.bbci.co.uk/28E9/test/_63637401_islijambaknialausaniluekoljkeresimesi.jpg", - "path": "/cpsdevpb/28E9/test/_63637401_islijambaknialausaniluekoljkeresimesi.jpg", - "height": 261, - "width": 464, - "altText": "Isẹ́lẹ̀ ijamba ọ̀kọ̀ ni Alausa nilu eko lọ̀jọ̀ keresimesi", - "caption": "Isẹ́lẹ̀ ijamba ọ̀kọ̀ ni Alausa nilu eko lọ̀jọ̀ keresimesi", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:yoruba/23174991", - "type": "cps" - } - }, - { - "id": "740b6cdd-a1d7-d347-bf99-e0a3f3c63b5c", - "rank": 16, - "count": 3728, - "urn": "urn:bbc:curie:asset:740b6cdd-a1d7-d347-bf99-e0a3f3c63b5c", - "promo": { - "headlines": { - "shortHeadline": "CAF:Mohammed Sallah gba ami ẹyẹ CAF", - "headline": "CAF:Mohammed Sallah gba ami ẹyẹ CAF" - }, - "locators": { - "assetUri": "/yoruba/23177184", - "curieCpsUrn": "urn:bbc:cps:curie:asset:740b6cdd-a1d7-d347-bf99-e0a3f3c63b5c", - "assetId": "23177184", - "cpsUrn": "urn:bbc:content:assetUri:yoruba/23177184", - "curie": "http://www.bbc.co.uk/asset/740b6cdd-a1d7-d347-bf99-e0a3f3c63b5c" - }, - "summary": "Ọmọ orilẹ-ede Egypt, Mohammed Sallah gba ami ẹyẹ CAF gẹgẹ bi agbabọọlu to laami laaka nilẹ adulawo.", - "timestamp": 1515163074000, - "language": "yo", - "passport": { - "home": "http://www.bbc.co.uk/ontologies/passport/home/Yoruba", - "taggings": [] - }, - "media": { - "id": "p01fsrbw", - "subType": "clip", - "format": "video", - "title": "CAF: Onirohin BBC Oluwashina Okeleji jẹ abọ lati Ilu Accra", - "synopses": { - "short": "CAF: Onirohin BBC Oluwashina Okeleji jẹ abọ lati Ilu Accra", - "medium": "Ọmọ orilẹ-ede Egypt, Mohammed Sallah gba ami ẹyẹ CAF gẹgẹ bi agbabọọlu to laami laaka nilẹ adulawo.", - "long": "Ọmọ orilẹ-ede Egypt, Mohammed Sallah gba ami ẹyẹ CAF gẹgẹ bi agbabọọlu to laami laaka nilẹ adulawo." - }, - "imageUrl": "ichef.test.bbci.co.uk/images/ic/$recipe/p01fsrf1.jpg", - "embedding": true, - "advertising": true, - "caption": "CAF: Onirohin BBC Oluwashina Okeleji jẹ abọ lati Ilu Accra", - "versions": [ - { - "versionId": "p01fsrby", - "types": [ - "Original" - ], - "duration": 57, - "durationISO8601": "PT57S", - "warnings": {}, - "availableTerritories": { - "uk": true, - "nonUk": true - }, - "availableFrom": 1515162834000 - } - ], - "smpKind": "programme", - "type": "media" - }, - "indexImage": { - "id": "63641578", - "subType": "index", - "href": "http://b.files.bbci.co.uk/155DA/test/_63641578_onirohinbbcoluwashinaokelejijablatiiluaccra.jpg", - "path": "/cpsdevpb/155DA/test/_63641578_onirohinbbcoluwashinaokelejijablatiiluaccra.jpg", - "height": 549, - "width": 976, - "altText": "Onirohin BBC Oluwashina Okeleji jẹ abọ lati Ilu Accra", - "caption": "Onirohin BBC Oluwashina Okeleji jẹ abọ lati Ilu Accra", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:yoruba/23177184", - "type": "cps" - } - }, - { - "id": "1eb7b04a-8abf-1d45-8444-5ecfa1bf741b", - "rank": 17, - "count": 3692, - "urn": "urn:bbc:curie:asset:1eb7b04a-8abf-1d45-8444-5ecfa1bf741b", - "promo": { - "headlines": { - "shortHeadline": "Ami ẹyẹ CAF", - "headline": "ajọ CAF fi ami ẹyẹ sita" - }, - "locators": { - "assetUri": "/yoruba/media-23177244", - "curieCpsUrn": "urn:bbc:cps:curie:asset:1eb7b04a-8abf-1d45-8444-5ecfa1bf741b", - "assetId": "23177244", - "cpsUrn": "urn:bbc:content:assetUri:yoruba/media-23177244", - "curie": "http://www.bbc.co.uk/asset/1eb7b04a-8abf-1d45-8444-5ecfa1bf741b" - }, - "summary": "Ajọ CAF fi ami ẹyẹ da awọn agbabọọlu lọla", - "timestamp": 1515172822000, - "language": "yo", - "passport": { - "home": "http://www.bbc.co.uk/ontologies/passport/home/Yoruba", - "taggings": [] - }, - "media": { - "id": "p01fstx2", - "subType": "clip", - "format": "video", - "title": "Ami ẹyẹ CAF", - "synopses": { - "short": "ajọ CAF fi ami ẹyẹ sita", - "medium": "Ajọ CAF fi ami ẹyẹ da awọn agbabọọlu lọla" - }, - "imageUrl": "ichef.test.bbci.co.uk/images/ic/$recipe/p01fstxs.jpg", - "embedding": true, - "advertising": true, - "caption": "Ajọ CAF fi ami ẹyẹ sita", - "versions": [ - { - "versionId": "p01fstx4", - "types": [ - "Original" - ], - "duration": 59, - "durationISO8601": "PT59S", - "warnings": {}, - "availableTerritories": { - "uk": true, - "nonUk": true - }, - "availableFrom": 1515171701000 - } - ], - "smpKind": "programme", - "type": "media" - }, - "indexImage": { - "id": "63641580", - "subType": "index", - "href": "http://b.files.bbci.co.uk/2142/test/_63641580_ajcaffiamiydaoshoalasallahlla.jpg", - "path": "/cpsdevpb/2142/test/_63641580_ajcaffiamiydaoshoalasallahlla.jpg", - "height": 549, - "width": 976, - "altText": "Ajọ CAF fi ami ẹyẹ da Oshoala, Sallah lọla", - "caption": "Ajọ CAF fi ami ẹyẹ da Oshoala, Sallah lọla", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:yoruba/media-23177244", - "type": "cps" - } - }, - { - "id": "87eb942b-0c00-0b43-9c99-8913bab227a2", - "rank": 18, - "count": 3209, - "urn": "urn:bbc:curie:asset:87eb942b-0c00-0b43-9c99-8913bab227a2", - "promo": { - "headlines": { - "shortHeadline": "Boko Haram: Ọkan ninu awọn akẹkọbinrin Chibok parọwa sawọn obi", - "headline": "Boko Haram: Ọkan ninu awọn akẹkọbinrin Chibok parọwa sawọn obi" - }, - "locators": { - "assetUri": "/yoruba/media-23181096", - "curieCpsUrn": "urn:bbc:cps:curie:asset:87eb942b-0c00-0b43-9c99-8913bab227a2", - "assetId": "23181096", - "cpsUrn": "urn:bbc:content:assetUri:yoruba/media-23181096", - "curie": "http://www.bbc.co.uk/asset/87eb942b-0c00-0b43-9c99-8913bab227a2" - }, - "summary": "Ikọ alakata kiti Boko Haram ti fi fonran kan lede ninu eleyi ti won ti fi di ọrọ munlẹ wipe awon akẹko-binrin Chibok sẹku sinu ahamọ wọn.", - "timestamp": 1516030144000, - "language": "yo", - "passport": { - "home": "http://www.bbc.co.uk/ontologies/passport/home/Yoruba", - "taggings": [] - }, - "media": { - "id": "p01fyv4h", - "subType": "clip", - "format": "video", - "title": "Boko Haram: Ọkan ninu awọn akẹkọbinrin Chibok parọwa sawọn obi", - "synopses": { - "short": "Boko Haram: Ọkan ninu awọn akẹkọbinrin Chibok parọwa sawọn obi", - "medium": "Ikọ alakata kiti Boko Haram ti fi fonran kan lede ninu eleyi ti won ti fi di ọrọ munlẹ wipe awon akẹko-binrin Chibok sẹku sinu ahamọ wọn.", - "long": "Ikọ alakata kiti Boko Haram ti fi fonran kan lede ninu eleyi ti won ti fi di ọrọ munlẹ wipe awon akẹko-binrin Chibok sẹku sinu ahamọ wọn." - }, - "imageUrl": "ichef.test.bbci.co.uk/images/ic/$recipe/p01fyv6w.jpg", - "embedding": true, - "advertising": true, - "caption": "Boko Haram: Ọkan ninu awọn akẹkọbinrin Chibok parọwa sawọn obi", - "versions": [ - { - "versionId": "p01fyv4k", - "types": [ - "Original" - ], - "duration": 22, - "durationISO8601": "PT22S", - "warnings": {}, - "availableTerritories": { - "uk": true, - "nonUk": true - }, - "availableFrom": 1516029652000 - } - ], - "smpKind": "programme", - "type": "media" - }, - "indexImage": { - "id": "63649933", - "subType": "index", - "href": "http://b.files.bbci.co.uk/84CA/test/_63649933_fonranonmigbenumomibokoharam.jpg", - "path": "/cpsdevpb/84CA/test/_63649933_fonranonmigbenumomibokoharam.jpg", - "height": 549, - "width": 976, - "altText": "Fọnran Boko Haram", - "caption": "Fonran onmigbenumomi Boko Haram", - "copyrightHolder": "BOKO HARAM", - "type": "image" - }, - "id": "urn:bbc:ares::asset:yoruba/media-23181096", - "type": "cps" - } - }, - { - "id": "50dbed47-674f-7241-8c25-494bdae988d3", - "rank": 19, - "count": 3145, - "urn": "urn:bbc:curie:asset:50dbed47-674f-7241-8c25-494bdae988d3", - "promo": { - "headlines": { - "shortHeadline": "Fayemi: \"Ko le see se ki eeyan kan sọ pe mi o le du ipo\"", - "headline": "Kayode Fayemi fesi lori ẹsun ti ijọba ipinlẹ Ekiti fi kan an" - }, - "locators": { - "assetUri": "/yoruba/23181217", - "curieCpsUrn": "urn:bbc:cps:curie:asset:50dbed47-674f-7241-8c25-494bdae988d3", - "assetId": "23181217", - "cpsUrn": "urn:bbc:content:assetUri:yoruba/23181217", - "curie": "http://www.bbc.co.uk/asset/50dbed47-674f-7241-8c25-494bdae988d3" - }, - "summary": "Fayemi: \"Ko le see se ki eeyan kan sọ pe mi o le du ipo\"", - "timestamp": 1516107493000, - "language": "yo", - "passport": { - "home": "http://www.bbc.co.uk/ontologies/passport/home/Yoruba", - "taggings": [] - }, - "media": { - "id": "p01fz83x", - "subType": "clip", - "format": "audio", - "title": "Fayemi: \"Ko le see se ki eeyan kan sọ pe mi o le du ipo\"", - "synopses": { - "short": "Kayode Fayemi fesi lori esun ti iba ipinle Ekiti fi kan an", - "medium": "Fayemi: \"Ko le see se ki eeyan kan sọ pe mi o le du ipo\"", - "long": "Fayemi: \"Ko le see se ki eeyan kan sọ pe mi o le du ipo\"" - }, - "imageUrl": "ichef.test.bbci.co.uk/images/ic/$recipe/legacy/clip/p01fz83x.jpg", - "embedding": true, - "advertising": true, - "caption": "Kayode Fayemi fesi lori esun ti ijọba ipinle Ekiti fi kan an", - "versions": [ - { - "versionId": "p01fz83z", - "types": [ - "Original" - ], - "duration": 89, - "durationISO8601": "PT1M29S", - "warnings": {}, - "availableTerritories": { - "uk": true, - "nonUk": true - }, - "availableFrom": 1516106212000 - } - ], - "smpKind": "radioProgramme", - "type": "media" - }, - "indexImage": { - "id": "63650543", - "subType": "index", - "href": "http://b.files.bbci.co.uk/86C9/test/_63650543_fayemi2.jpg", - "path": "/cpsdevpb/86C9/test/_63650543_fayemi2.jpg", - "height": 549, - "width": 976, - "altText": "Kayode Fayemi fesi lori ẹsun ti ijọba ipinlẹ Ekiti fi kan an", - "caption": "Fayemi: \"Ko le see se ki eeyan kan sọ pe mi o le du ipo\"", - "copyrightHolder": "Fayemi /twitter", - "type": "image" - }, - "id": "urn:bbc:ares::asset:yoruba/23181217", - "type": "cps" - } - }, - { - "id": "f2fad2bb-78e3-a146-a417-e67873152a32", - "rank": 20, - "count": 3080, - "urn": "urn:bbc:curie:asset:f2fad2bb-78e3-a146-a417-e67873152a32", - "promo": { - "headlines": { - "shortHeadline": "Fayemi: \"Ko le see se ki eeyan kan sọ pe mi o le du ipo\"", - "headline": "Fayemi: \"Ko le see se ki eeyan kan sọ pe mi o le du ipo\"" - }, - "locators": { - "assetUri": "/yoruba/23181224", - "curieCpsUrn": "urn:bbc:cps:curie:asset:f2fad2bb-78e3-a146-a417-e67873152a32", - "assetId": "23181224", - "cpsUrn": "urn:bbc:content:assetUri:yoruba/23181224", - "curie": "http://www.bbc.co.uk/asset/f2fad2bb-78e3-a146-a417-e67873152a32" - }, - "summary": "Kayode Fayemi fesi lori ẹsun ti ijọba ipinlẹ Ekiti fi kan an", - "timestamp": 1516121405000, - "language": "yo", - "passport": { - "home": "http://www.bbc.co.uk/ontologies/passport/home/Yoruba", - "taggings": [] - }, - "media": { - "id": "p01fz9h0", - "subType": "clip", - "format": "video", - "title": "Kayode Fayemi fesi lori ẹsun ti ijọba ipinlẹ Ekiti fi kan an", - "synopses": { - "short": "Fayemi: \"Ko le see se ki eeyan kan sọ pe mi o le du ipo\"", - "medium": "Kayode Fayemi fesi lori ẹsun ti ijọba ipinlẹ Ekiti fi kan an", - "long": "Fayemi: \"Ko le see se ki eeyan kan sọ pe mi o le du ipo\"" - }, - "imageUrl": "ichef.test.bbci.co.uk/images/ic/$recipe/legacy/clip/p01fz9h0.jpg", - "embedding": true, - "advertising": true, - "caption": "Fayemi: \"Ko le see se ki eeyan kan sọ pe mi o le du ipo\"", - "versions": [ - { - "versionId": "p01fz9h2", - "types": [ - "Original" - ], - "duration": 88, - "durationISO8601": "PT1M28S", - "warnings": {}, - "availableTerritories": { - "uk": true, - "nonUk": true - }, - "availableFrom": 1516116293000 - } - ], - "smpKind": "programme", - "type": "media" - }, - "indexImage": { - "id": "63650716", - "subType": "index", - "href": "http://b.files.bbci.co.uk/F109/test/_63650716_fayemiwaves.png", - "path": "/cpsdevpb/F109/test/_63650716_fayemiwaves.png", - "height": 928, - "width": 1649, - "altText": "Fayemi: \"Ko le see se ki eeyan kan sọ pe mi o le du ipo\"", - "caption": "Fayemi: \"Ko le see se ki eeyan kan sọ pe mi o le du ipo\"", - "copyrightHolder": "BBC", - "type": "image" - }, - "id": "urn:bbc:ares::asset:yoruba/23181224", - "type": "cps" - } - } - ] - } + "mostRead": null } }, "contentType": "application/json; charset=utf-8" diff --git a/data/zhongwen/cpsAssets/trad/chinese-news-49065935.json b/data/zhongwen/cpsAssets/trad/chinese-news-49065935.json index 6edcdc76b71..84ef7ecb5fe 100644 --- a/data/zhongwen/cpsAssets/trad/chinese-news-49065935.json +++ b/data/zhongwen/cpsAssets/trad/chinese-news-49065935.json @@ -284,8 +284,7 @@ "secondaryData": { "topStories": null, "features": null, - "mostRead": null, - "mostWatched": null + "mostRead": null } }, "contentType": "application/json; charset=utf-8" diff --git a/data/zhongwen/frontpage/simp.json b/data/zhongwen/frontpage/simp.json index 59ae5a820b3..8393a976b45 100644 --- a/data/zhongwen/frontpage/simp.json +++ b/data/zhongwen/frontpage/simp.json @@ -5376,8 +5376,7 @@ "timestamp": 1559524040000 } ] - }, - "mostWatched": null + } } }, "contentType": "application/json; charset=utf-8" diff --git a/data/zhongwen/frontpage/trad.json b/data/zhongwen/frontpage/trad.json index f430652927e..9580a2b72cf 100644 --- a/data/zhongwen/frontpage/trad.json +++ b/data/zhongwen/frontpage/trad.json @@ -5378,8 +5378,7 @@ "timestamp": 1514959434000 } ] - }, - "mostWatched": null + } } }, "contentType": "application/json; charset=utf-8" From 523146d308723cb20fc92e6ad37ed40233bc71cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CLilyL0u=E2=80=9D?= Date: Thu, 20 Jun 2024 10:09:35 +0100 Subject: [PATCH 47/51] replace test path with bff one --- src/app/routes/utils/fetchPageData/index.test.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/app/routes/utils/fetchPageData/index.test.js b/src/app/routes/utils/fetchPageData/index.test.js index d26ea2901f2..1e64d4596b6 100644 --- a/src/app/routes/utils/fetchPageData/index.test.js +++ b/src/app/routes/utils/fetchPageData/index.test.js @@ -13,8 +13,9 @@ import fetchPageData from '.'; const expectedBaseUrl = 'http://localhost'; const requestedPathname = '/path/to/asset'; -const fullTestPath = 'https://test.bbc.com/hausa/mostread.json'; -const fullLivePath = 'https://www.bbc.com/hausa/mostread.json'; +const fullTestPath = + 'https://test.mock-bff.api.bbc.com/simorgh-bff?pageType=bob'; +const fullLivePath = 'https://mock-bff.api.bbc.com/simorgh-bff?pageType=bob'; const expectedUrl = `${expectedBaseUrl}${requestedPathname}.json`; const pageType = 'Fetch Page Data'; const requestOrigin = 'Jest Test'; From a2a99fa315baa1fd2af2ad5c489722f62f014438 Mon Sep 17 00:00:00 2001 From: LilyL0u <54575620+LilyL0u@users.noreply.github.com> Date: Thu, 20 Jun 2024 10:10:40 +0100 Subject: [PATCH 48/51] Delete .vscode/settings.json --- .vscode/settings.json | 3 --- 1 file changed, 3 deletions(-) delete mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index 6f3a2913e19..00000000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "liveServer.settings.port": 5501 -} \ No newline at end of file From 8a89fc0e612aeb165752a91b6ad44ead9ed879bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CLilyL0u=E2=80=9D?= Date: Thu, 20 Jun 2024 10:12:20 +0100 Subject: [PATCH 49/51] put back accidentally deleted most read --- src/server/local/index.test.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/server/local/index.test.js b/src/server/local/index.test.js index 73f44a86493..fa0cf76957e 100644 --- a/src/server/local/index.test.js +++ b/src/server/local/index.test.js @@ -23,7 +23,8 @@ describe('Local Server', () => { ${'Front Page with variant'} | ${'/zhongwen/trad.json'} | ${'/zhongwen/frontpage/trad.json'} ${'Migrated Home Page'} | ${'/pidgin.json'} | ${'/pidgin/homePage/index.json'} ${'Home Page'} | ${'/kyrgyz/tipohome.json'} | ${'/kyrgyz/homePage/index.json'} - ${'Most Read'} | ${'/pidgin/mostread.json'} | ${'/pidgin/mostRead/index.json'} + ${'Most Read'} | ${'/pidgin/mostread.json'} + ${'Most Read with variant'} | ${'/zhongwen/mostread/trad.json'} | ${'/pidgin/mostRead/index.json'} ${'On Demand Radio Brand'} | ${'/korean/bbc_korean_radio/w3ct0kn5.json'} | ${'/korean/bbc_korean_radio/w3ct0kn5.json'} ${'On Demand Radio Episode'} | ${'/afaanoromoo/bbc_afaanoromoo_radio/programmes/w13xttnw.json'} | ${'/afaanoromoo/bbc_afaanoromoo_radio/w13xttnw.json'} ${'On Demand TV Brand'} | ${'/pashto/bbc_pashto_tv/tv/w172xcldhhrhmcf.json'} | ${'/pashto/bbc_pashto_tv/tv/w172xcldhhrhmcf.json'} From 7a98327ba0d8e8b2c266d905993f5cf63083ffa6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CLilyL0u=E2=80=9D?= Date: Thu, 20 Jun 2024 10:24:02 +0100 Subject: [PATCH 50/51] fix mistake --- src/server/local/index.test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/server/local/index.test.js b/src/server/local/index.test.js index fa0cf76957e..852d18b9426 100644 --- a/src/server/local/index.test.js +++ b/src/server/local/index.test.js @@ -23,8 +23,8 @@ describe('Local Server', () => { ${'Front Page with variant'} | ${'/zhongwen/trad.json'} | ${'/zhongwen/frontpage/trad.json'} ${'Migrated Home Page'} | ${'/pidgin.json'} | ${'/pidgin/homePage/index.json'} ${'Home Page'} | ${'/kyrgyz/tipohome.json'} | ${'/kyrgyz/homePage/index.json'} - ${'Most Read'} | ${'/pidgin/mostread.json'} - ${'Most Read with variant'} | ${'/zhongwen/mostread/trad.json'} | ${'/pidgin/mostRead/index.json'} + ${'Most Read'} | ${'/pidgin/mostread.json'} | ${'/pidgin/mostRead/index.json'} + ${'Most Read with variant'} | ${'/zhongwen/mostread/trad.json'} | ${'/zhongwen/mostRead/trad.json'} ${'On Demand Radio Brand'} | ${'/korean/bbc_korean_radio/w3ct0kn5.json'} | ${'/korean/bbc_korean_radio/w3ct0kn5.json'} ${'On Demand Radio Episode'} | ${'/afaanoromoo/bbc_afaanoromoo_radio/programmes/w13xttnw.json'} | ${'/afaanoromoo/bbc_afaanoromoo_radio/w13xttnw.json'} ${'On Demand TV Brand'} | ${'/pashto/bbc_pashto_tv/tv/w172xcldhhrhmcf.json'} | ${'/pashto/bbc_pashto_tv/tv/w172xcldhhrhmcf.json'} From 0b17ed1d3b98cf96da0b97098eed375d562b87cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CLilyL0u=E2=80=9D?= Date: Thu, 20 Jun 2024 12:44:57 +0100 Subject: [PATCH 51/51] update snapshots --- .../__snapshots__/index.test.jsx.snap | 5 ++--- .../__snapshots__/index.test.jsx.snap | 19 ++----------------- .../utils/__snapshots__/index.test.js.snap | 2 -- 3 files changed, 4 insertions(+), 22 deletions(-) diff --git a/src/app/legacy/containers/CpsRelatedContent/RelatedContentPromoList/__snapshots__/index.test.jsx.snap b/src/app/legacy/containers/CpsRelatedContent/RelatedContentPromoList/__snapshots__/index.test.jsx.snap index 8220e16a812..ef0d449a28a 100644 --- a/src/app/legacy/containers/CpsRelatedContent/RelatedContentPromoList/__snapshots__/index.test.jsx.snap +++ b/src/app/legacy/containers/CpsRelatedContent/RelatedContentPromoList/__snapshots__/index.test.jsx.snap @@ -385,9 +385,8 @@ exports[`RelatedContentPromoList it renders a list of Story Promos for MAP pages }
-
    @@ -583,7 +582,7 @@ exports[`RelatedContentPromoList it renders a list of Story Promos for MAP pages
- + `; diff --git a/src/app/pages/MediaAssetPage/__snapshots__/index.test.jsx.snap b/src/app/pages/MediaAssetPage/__snapshots__/index.test.jsx.snap index bd9e53513a0..64108153874 100644 --- a/src/app/pages/MediaAssetPage/__snapshots__/index.test.jsx.snap +++ b/src/app/pages/MediaAssetPage/__snapshots__/index.test.jsx.snap @@ -964,10 +964,6 @@ exports[`Media Asset Page AV player should render version (live audio stream) 1` font-size: 0.75rem; } -.emotion-123 { - padding-bottom: 2rem; -} -
@@ -1354,9 +1350,6 @@ exports[`Media Asset Page AV player should render version (live audio stream) 1`

-
@@ -3144,10 +3137,6 @@ exports[`Media Asset Page should render component 1`] = ` padding: 0 0.25rem; } -.emotion-243 { - padding-bottom: 2rem; -} -
@@ -3661,9 +3650,8 @@ exports[`Media Asset Page should render component 1`] = `
-
    @@ -3929,12 +3917,9 @@ exports[`Media Asset Page should render component 1`] = ` -
+ -
diff --git a/src/app/routes/utils/regex/utils/__snapshots__/index.test.js.snap b/src/app/routes/utils/regex/utils/__snapshots__/index.test.js.snap index 1b690016231..2cda53a26ad 100644 --- a/src/app/routes/utils/regex/utils/__snapshots__/index.test.js.snap +++ b/src/app/routes/utils/regex/utils/__snapshots__/index.test.js.snap @@ -26,8 +26,6 @@ exports[`regex utils snapshots should create expected regex from getMostReadData exports[`regex utils snapshots should create expected regex from getMostReadPageRegex 1`] = `"/:service(afaanoromoo|afrique|amharic|arabic|archive|azeri|bengali|burmese|cymrufyw|gahuza|gujarati|hausa|hindi|igbo|indonesia|japanese|korean|kyrgyz|marathi|mundo|naidheachdan|nepali|news|newsround|pashto|persian|pidgin|portuguese|punjabi|russian|scotland|serbian|sinhala|somali|sport|swahili|tamil|telugu|thai|tigrinya|turkce|ukchina|ukrainian|urdu|uzbek|vietnamese|ws|yoruba|zhongwen):variant(/simp|/trad|/cyr|/lat)?/popular/read:amp(.amp)?:lite(.lite)?"`; -exports[`regex utils snapshots should create expected regex from getMostWatchedDataRegex 1`] = `"/:service(afaanoromoo|afrique|amharic|arabic|archive|azeri|bengali|burmese|cymrufyw|gahuza|gujarati|hausa|hindi|igbo|indonesia|japanese|korean|kyrgyz|marathi|mundo|naidheachdan|nepali|news|newsround|pashto|persian|pidgin|portuguese|punjabi|russian|scotland|serbian|sinhala|somali|sport|swahili|tamil|telugu|thai|tigrinya|turkce|ukchina|ukrainian|urdu|uzbek|vietnamese|ws|yoruba|zhongwen)/mostwatched:variant(/simp|/trad|/cyr|/lat)?.json"`; - exports[`regex utils snapshots should create expected regex from getOnDemandRadioRegex 1`] = `"/:service(afaanoromoo|afrique|amharic|arabic|archive|azeri|bengali|burmese|cymrufyw|gahuza|gujarati|hausa|hindi|igbo|indonesia|japanese|korean|kyrgyz|marathi|mundo|naidheachdan|nepali|news|newsround|pashto|persian|pidgin|portuguese|punjabi|russian|scotland|serbian|sinhala|somali|sport|swahili|tamil|telugu|thai|tigrinya|turkce|ukchina|ukrainian|urdu|uzbek|vietnamese|ws|yoruba|zhongwen):variant(/simp|/trad|/cyr|/lat)?/:serviceId(bbc_[a-z]+_radio)(/programmes)?/:mediaId([a-z0-9]+):amp(.amp)?:lite(.lite)?"`; exports[`regex utils snapshots should create expected regex from getOnDemandTvRegex 1`] = `"/:service(afaanoromoo|afrique|amharic|arabic|archive|azeri|bengali|burmese|cymrufyw|gahuza|gujarati|hausa|hindi|igbo|indonesia|japanese|korean|kyrgyz|marathi|mundo|naidheachdan|nepali|news|newsround|pashto|persian|pidgin|portuguese|punjabi|russian|scotland|serbian|sinhala|somali|sport|swahili|tamil|telugu|thai|tigrinya|turkce|ukchina|ukrainian|urdu|uzbek|vietnamese|ws|yoruba|zhongwen)/:serviceId(bbc_[a-z]+_tv)/:brandEpisode(tv|tv_programmes)/:mediaId([a-z0-9]+):amp(.amp)?:lite(.lite)?"`;