Movie

Film

Description

Territoire

Import AS400 : oui

Job : MovieStream

Odoo : non

Structure

Movie

Données d’un film

{
    "id": "string",
    "name": "string",                               //titre_du_film_modifiable
    "db2id": "string",
    "infos": {
      "en": { /* Movie infos */ },
      "fr": { /* Movie infos */ }
    },
    "realisators": [ "string" ],                    //realisators
    "duration": 0,                                  //durer_du_film_en_minute
    "firstProjection": "2019-07-16T03:31:34.972Z",  //premiere_projection_sur_le_territoire
    "minAge": 0,                                    //limite_d'age
    "db2NumFilm": 0,
    "genre": [ /* Genre */  ],                      //genres_du_film
    "actors": [ "string" ],                         //acteurs_du_film
    "tmdbId": 0,                                    //id_tmdb
    "details": [ /* MovieDetails */  ],
    "productionCountries": [ /*CountryProduction*/ ],
    "poster": "string",                             //affiche_par_défaut
    "urlTheMovieDb": "string"                       //url_vers_la_fiche_film_TheMovieDb
  }

MovieInfo

Données d’un film pour une langue

{
    "title": "string",                          //titre_du_film_en_anglais
    "synopsis": "string",                       //synopsis_en_anglais
    "poster": {                                 //affiche
        "source": "string",                       //source_base_de_l'affiche
        "small": "string",                        //affiche_petite
        "medium": "string",                       //affiche_moyen
        "original": "string"                      //affiche_original
    },
    "released": "2019-07-16T03:31:34.972Z",     //date_de_sortie
    "trailer": "string",                        //url_vers_la_bande_annonce
    "certification": "string"                   //certification(restricion_age)
}

Genre

{
    "id": "string",
    "name": "string",
    "tmdbId": 0
}

MovieDetail

{
    "cinemaId": "string",
    "labels": [
        {
        "id": "string",
        "name": "string"
        }
    ],
    "diffusion": [
        {
        "type": {},
        "from": "2019-07-16T03:31:34.972Z",
        "to": "2019-07-16T03:31:34.972Z"
        }
    ]
}

CountryProduction

{
    "id": "string",
    "name": "string",                           //nom_entier_du_pays
    "label": "string",                          //abreviation
    "tmdbId": "string"
}

VideoInfo

Vidéos associées à un film

{
    "type": "string", //video type (teaser, trailer...)
    "url": "string", //Video url
    "embed": "string", //html embeded code
}