vault backup: 2026-08-01 16:11:59
This commit is contained in:
+67
-5
@@ -83,13 +83,34 @@ Cette approche permet de publier plus vite et de réduire le risque de remplacer
|
||||
|
||||
Contient les contenus ou programmations pertinents pour la journée courante.
|
||||
|
||||
Le tableau `programs` contient des objets de programmation légers. Il ne contient pas tout le détail du produit ou de la collection. Pour le détail complet, le site utilise les liens vers les fichiers `products/{product_key}.json` ou `collections/{biznumber}/full.json`.
|
||||
|
||||
```json
|
||||
{
|
||||
"schema_version": "1.0",
|
||||
"platform": "tfo",
|
||||
"run_id": "20260730-0900",
|
||||
"date": "2026-07-30",
|
||||
"programs": []
|
||||
"programs": [
|
||||
{
|
||||
"program_key": "190858829",
|
||||
"product_key": "102828840",
|
||||
"collection_biznumber": "0123456",
|
||||
"serie_key": "S123",
|
||||
"title": "Larguer les amarres",
|
||||
"begin": "2026-07-30T06:00:00-04:00",
|
||||
"end": "2026-07-30T06:24:00-04:00",
|
||||
"duration_seconds": 1440,
|
||||
"type": "Film",
|
||||
"target": "G",
|
||||
"territories": ["CA"],
|
||||
"media_status": "ready",
|
||||
"links": {
|
||||
"product": "/tfo/v1/runs/20260730-0900/products/102828840.json",
|
||||
"collection_full": "/tfo/v1/runs/20260730-0900/collections/0123456/full.json"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
|
||||
@@ -102,9 +123,39 @@ Contient les contenus ajoutés, modifiés ou retirés depuis la dernière public
|
||||
"schema_version": "1.0",
|
||||
"platform": "tfo",
|
||||
"run_id": "20260730-0900",
|
||||
"added": [],
|
||||
"updated": [],
|
||||
"removed": []
|
||||
"added": [
|
||||
{
|
||||
"entity_type": "product",
|
||||
"product_key": "102828840",
|
||||
"collection_biznumber": "0123456",
|
||||
"title": "Larguer les amarres",
|
||||
"first_programmation": "2026-07-30T06:00:00-04:00",
|
||||
"links": {
|
||||
"product": "/tfo/v1/runs/20260730-0900/products/102828840.json"
|
||||
}
|
||||
}
|
||||
],
|
||||
"updated": [
|
||||
{
|
||||
"entity_type": "program",
|
||||
"program_key": "190858829",
|
||||
"product_key": "102828840",
|
||||
"title": "Larguer les amarres",
|
||||
"changed_fields": ["begin", "end"],
|
||||
"links": {
|
||||
"product": "/tfo/v1/runs/20260730-0900/products/102828840.json"
|
||||
}
|
||||
}
|
||||
],
|
||||
"removed": [
|
||||
{
|
||||
"entity_type": "product",
|
||||
"product_key": "102000001",
|
||||
"collection_biznumber": "0999999",
|
||||
"title": "Ancien titre",
|
||||
"reason": "not_in_current_snapshot"
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
|
||||
@@ -122,9 +173,20 @@ Contient la programmation pour une date précise.
|
||||
{
|
||||
"program_key": "123",
|
||||
"product_key": "GP123456",
|
||||
"collection_biznumber": "0123456",
|
||||
"serie_key": "S123",
|
||||
"begin": "2026-08-08T06:00:00-04:00",
|
||||
"end": "2026-08-08T06:24:00-04:00",
|
||||
"title": "Titre de l'épisode"
|
||||
"title": "Titre de l'épisode",
|
||||
"duration_seconds": 1440,
|
||||
"type": "Film",
|
||||
"target": "G",
|
||||
"territories": ["CA"],
|
||||
"media_status": "ready",
|
||||
"links": {
|
||||
"product": "/tfo/v1/runs/20260730-0900/products/GP123456.json",
|
||||
"collection_full": "/tfo/v1/runs/20260730-0900/collections/0123456/full.json"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user