{"info":{"_postman_id":"45a1c51b-e735-4e4e-9eef-26777e77188d","name":"Documentation technique","description":"<html><head></head><body><p>Bienvenue sur la documentation technique de Publidata !</p>\n<h1 id=\"la-plateforme\">La plateforme</h1>\n<p>Publidata est une plateforme de gestion de l’information permettant d’administrer les types de données suivantes :</p>\n<ul>\n<li>Villes (city)</li>\n<li>Départements (department)</li>\n<li>Régions (region)</li>\n<li>Etablissements publics (etablissement_public)</li>\n<li>Élu.e.s (elect)</li>\n<li>Équipements (facility)</li>\n<li>Artistes (performer)</li>\n<li>Compétences des organisations (skill)</li>\n<li>Services (service)<ul>\n<li>Collectes des déchets (waste_collection)</li>\n<li>Menus des cantines (canteen_menu)</li>\n<li>Formations (formation)</li>\n<li>etc.</li>\n</ul>\n</li>\n<li>Actualités (news)</li>\n<li>Evénements (event)</li>\n<li>Groupes d'événements (event_group)</li>\n<li>Projets (project)</li>\n</ul>\n<img src=\"https://medias.publidata.io/production/images/images/000/049/323/original/Capture_d’écran_2020-02-20_à_18.43.34.png?1582220632\" alt=\"\">\n\n<p>Chaque type de données est interreliées aux autres par un mécanisme de relation automatique (un événement a lieu dans un équipement qui est lui même géré par une organisation, dans une ville, d’une agglomération etc.) et de relation déclarative (une actualité parle d’un événement, d’un lieu etc.).</p>\n<p>Toutes ces informations sont restituées par API au travers de dispositifs et chaque fiche renseignée dans Publidata peut être associée et diffusée sur un ou plusieurs dispositifs.</p>\n<p><strong>Exemple :</strong> la fiche Théâtre a été associée / diffusée sur l’application mobile de Dreux (géré par Neocity), sur le site Internet (géré par Proximit) et sur Google My Business.</p>\n<h1 id=\"les-dispositifs\">Les dispositifs</h1>\n<p>Les applications développées sur Publidata sont stockées sous la forme de dispositifs (aka des instances) et chaque fiche présente dans Publidata peut être associée et diffusée sur un ou plusieurs dispositifs.</p>\n<p><strong>La liste des dispositifs :</strong> <a href=\"https://www.publidata.io/instances\">https://www.publidata.io/instances</a></p>\n<p>Chaque dispositif est accessible en API via un endpoint namespacé.</p>\n<p><em>Exemple :</em> <a href=\"https://api.publidata.io/v2/dreux-application-mobile/events\">https://api.publidata.io/v2/dreux-application-mobile/events</a></p>\n<img src=\"https://medias.publidata.io/production/images/images/000/046/674/original/schema_api_doc.jpg?1579249949\" alt=\"\">\n\n<h1 id=\"importation-des-donnees\">Importation des données</h1>\n<p>L'importation de données dans Publidata peut être réalisé de deux manières :</p>\n<ul>\n<li>via des solutions tierces type OpenDataSoft / ESRI (SIG) etc. avec lesquelles nous sommes interconnectés en lecture / écriture</li>\n<li>via des fichiers sources (CSV/XLS/JSON etc.)</li>\n</ul>\n<h1 id=\"sinterconnecter-avec-publidata\">S'interconnecter avec Publidata</h1>\n<p>Pour s'interconnecter avec Publidata, via nos API, et réutiliser les informations saisies sur la plateforme nous vous recommandons :</p>\n<ol>\n<li>D'avoir un compte vous permettant d'accéder à la plateforme et de paramètrer votre <a href=\"https://docs.publidata.io/?version=latest#les-dispositifs\">dispositif</a>.</li>\n<li>D'utiliser la <a href=\"https://docs.publidata.io/?version=latest#627fd224-23a2-44a6-8bc0-6aab55c1b90b\">version 2 ⭐</a> de nos API.</li>\n<li>De contacter nos développeurs à l'adresse <a href=\"mailto:tech@publidata.io\">tech@publidata.io</a>, par chat sur la plateforme Publidata ou via notre Slack afin qu'ils vous accompagnent dans la mise en place de votre projet d'interconnexion.</li>\n</ol>\n<h3 id=\"i-interconnexion-classique-seo\">I. Interconnexion classique (SEO)</h3>\n<p>L'interconnexion classique consiste à copier entièrement les enregistrements récupérés via nos API dans vos bases de données afin de ne pas provoquer de latence lors de la consommation des pages par les visiteurs du site et ainsi optimiser votre référencement SEO.</p>\n<p>🔗️ Les endpoints d'API à utiliser sont : <a href=\"http://publidata.io/api/v2/%7Bnom-de-l-instance%7D/%7Btype-d-enregistrement%7D\">http://publidata.io/api/v2/{nom-de-l-instance}/{type-d-enregistrement}</a> (exemple : <a href=\"https://api.publidata.io/v2/tmvl-agenda/events\">https://api.publidata.io/v2/tmvl-agenda/events</a>)</p>\n<p>Pour cela nous préconisons 2 modes :</p>\n<p><strong>1. Interconnexion par import cyclique</strong></p>\n<p>L’importation cyclique consiste à importer à interval régulier (ex : x fois par jour, idéalement en heures creuses) les enregistrements disponibles par API en réalisant des opérations de création, mise à jour et suppression.</p>\n<p>Ce mode d’interconnexion nécessite une gestion du côté agence / prestataire des différences sur les enregistrements via les timestamps (created_at et updated_at) et en cas d’absence d’un enregistrement retournés précédemment sur nos API.</p>\n<p>Nous ne recommandons néanmoins par ce mode d’interconnexion car il ne permet pas la mise à jour temps-réel des pages et informations présentes sur le site.</p>\n<p><strong>2. Interconnexion temps-réel / par webhooks (notre recommandation)</strong></p>\n<p>L’interconnexion temps-réel consiste à la mise en place d’une url côté agence / prestataire qui sera appelée lors de chaque modification opérée sur les fiches diffusés sur le dispositif.</p>\n<p>Ces instructions sont appelées webhook et prennent la forme d’une requête POST comprenant les paramètres suivants :</p>\n<ul>\n<li>action : type d'action (create / update / destroy)</li>\n<li>instance : slug de l'instance du dispositif</li>\n<li>type : type de l'objet (event / news / facility etc.)</li>\n<li>id : uuid de l'objet</li>\n</ul>\n<p>Cf : <a href=\"https://docs.publidata.io/?version=latest#webhooks\">Les webhooks</a></p>\n<p>De cette manière, une modification réalisée sur la Plateforme est communiquée instantanément à l’ensemble des réutilisateurs qui peuvent déclencher, selon l’action présente dans le webhook, la mise à jour de l’enregistrement.</p>\n<p><strong>A noter que :</strong> de votre côté, nous vous recommandons d'implémenter un gestionnaire de queue / background jobs qui sera chargé de stocker les instructions reçues par les webhooks et de les traiter au fur et à mesure.</p>\n<h3 id=\"ii-interconnexion-pour-la-recherche-elasticsearch\">II. Interconnexion pour la recherche (Elasticsearch)</h3>\n<p>Pour une application ou page dédiée à la recherche via un champ texte, des filtres (dates, lieux, types, thèmes, tags etc.) ou des critères géographiques nous vous recommandons d'utiliser directement nos API de recherche Elasticsearch.</p>\n<p>Cette méthode d'interconnexion privilégie la rapidité tout en permettant des requêtes facettées pouvant être complexe.</p>\n<p>🔗 Les endpoints d'API à utiliser sont : <a href=\"http://publidata.io/api/v2/search\">http://publidata.io/api/v2/search</a> (exemple : <a href=\"https://api.publidata.io/v2/search?instances%5B%5D=64&amp;types%5B%5D=events\">https://api.publidata.io/v2/search?instances[]=64&amp;types[]=events</a>)</p>\n<p>⚠️ Le format des enregistrements retournés par cette API est différent de celui-ci proposé par l'interconnexion classique.</p>\n<p>La documentation complète de cette API est disponible à cette adresse : <a href=\"https://docs.publidata.io/?version=latest#9cc02e83-edb1-4aec-a3ce-1ceaca9e20f3\">https://docs.publidata.io/?version=latest#9cc02e83-edb1-4aec-a3ce-1ceaca9e20f3</a></p>\n<h1 id=\"webhooks\">Webhooks</h1>\n<h3 id=\"principe\">Principe</h3>\n<p>Afin de prévenir les réutilisateurs d'un contenu présent sur Publidata nous vous donnons la possibilité d'attacher à chaque dispositif des urls cibles sur laquelle / lesquelles nous vous enverrons une requête de type « webhook » pour vous informer lors de chaque modification (création, modification, suppression).</p>\n<p>Les requêtes envoyées prennent la forme d'une requête POST prenant la forme suivante :</p>\n<p>[POST] <code>https://www.mon-site.com/hooks</code> (Content-Type: application/json)</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"action\": \"update\",\n    \"type\": \"facility\", \n    \"id\": \"y7KpS6Dgxv\",\n    \"instance\": 1\n}\n\n</code></pre><h3 id=\"propriétés\">Propriétés</h3>\n<ul>\n<li><code>action</code> (type de modification) :<code>create</code>, <code>update</code>, <code>destroy</code>.</li>\n<li><code>type</code> (d'enregistrement) : <code>city</code>, <code>company</code>, <code>department</code>, <code>elect</code>, <code>etablissement_public</code>, <code>event_group</code>, <code>event</code>, <code>facility</code>, <code>news</code>, <code>non_profit</code>, <code>performer</code>, <code>project</code>, <code>region</code>, <code>skill</code>, <code>service</code>, <code>page</code>.</li>\n<li><code>id</code> (idenfiant de l'enregistrement) : <code>y7KpS6Dgxv</code>.</li>\n<li><code>instance</code>: (identifiant de mon dispositif).</li>\n</ul>\n<h3 id=\"utilisation\">Utilisation</h3>\n<p>ℹ️ Pour mettre en place les webhooks nous vous recommandons de nous solliciter (par mail à <a href=\"mailto:tech@publidata.io\">tech@publidata.io</a> ou via le chat présent dans la plateforme) afin d'obtenir le rôle agence / prestataire qui vous ouvrira les droits à des fonctionnalités supplémentaires vous permettant de déclencher manuellement l'envoi de webhooks.</p>\n<ol>\n<li>Mettre en place une url sur votre dispositif (site, back-office, cms) pour recevoir les webhooks. Le format de votre url est libre néanmoins le contenu envoyé sera toujours une requête POST avec les propriétés énoncées ci-dessus.</li>\n<li>Ajouter l'url que vous venez de créer dans la rubrique webhooks de votre dispositif (dans Publidata à cette adresse : <a href=\"http://publidata.io/instances\">http://publidata.io/instances</a>) ou contacter un administrateur à <a href=\"mailto:tech@publidata.io\">tech@publidata.io</a>.</li>\n<li>Mettez à jour une fiche dans Publidata pour vérifier le bon fonctionnement.</li>\n</ol>\n<h1 id=\"support\">Support</h1>\n<p>Pour toute question ou précision n'hésitez pas à nous contacter via <a href=\"mailto:tech@publidata.io\">tech@publidata.io</a> ou via le chat présent dans la plateforme.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"La plateforme","slug":"la-plateforme"},{"content":"Les dispositifs","slug":"les-dispositifs"},{"content":"Importation des données","slug":"importation-des-donnees"},{"content":"S'interconnecter avec Publidata","slug":"sinterconnecter-avec-publidata"},{"content":"Webhooks","slug":"webhooks"},{"content":"Support","slug":"support"}],"owner":"3604358","collectionId":"45a1c51b-e735-4e4e-9eef-26777e77188d","publishedId":"RznBLfDq","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"0075F1"},"publishDate":"2023-01-24T12:52:49.000Z"},"item":[{"name":"Documentation API v2 ⭐","item":[{"name":"Événements","item":[{"name":"Endpoints principaux","item":[{"name":"Index","id":"47c5e4e8-d0cb-4655-b92c-2eebb98adba4","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events","description":"<p>Liste des événements</p>\n","urlObject":{"path":["v2",":instance","events"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"}]}},"response":[{"id":"0118fa06-0604-4bf7-83fd-7dd67eb8591a","name":"✅ Index","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.publidata.io/v2/:instance/events","host":["https://api.publidata.io"],"path":["v2",":instance","events"],"variable":[{"key":"instance","value":"500-ans-renaissances"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Tue, 06 Nov 2018 14:35:32 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"e272b80759b3239cb223ac313ead9d8a\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"ef157796-c377-4ab4-b340-25fe123f51d3"},{"key":"X-Runtime","value":"0.211831"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"J7dASjXPxB\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"J7dASjXPxB\",\n                \"created_at\": \"2018-11-02T13:36:24Z\",\n                \"updated_at\": \"2018-11-06T14:11:43Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {\n                    \"fr\": \"La 28e édition du Festival International des Jardins abordera un thème cher à la Renaissance.\"\n                },\n                \"name\": {\n                    \"fr\": \"Festival International des Jardins de Chaumont-sur-Loire\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"medium-insert-active\\\"><br></p>\"\n                },\n                \"start_at\": \"2019-04-25T10:00:00Z\",\n                \"end_at\": \"2019-11-03T19:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"y7KpS6Dgxv\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"y7KpS6Dgxv\",\n                \"created_at\": \"2018-10-31T11:26:32Z\",\n                \"updated_at\": \"2018-11-06T10:56:29Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {\n                    \"fr\": \"62eme Colloque International d'études humanistes du centre d'études supérieures de la Renaissance\"\n                },\n                \"name\": {\n                    \"fr\": \"Léonard de Vinci création et innovations \"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"is-active\\\">Le 62ème colloque international d’études humanistes du Centre d’études supérieures de la Renaissance de Tours sera consacré à Léonard de Vinci en 2019.&nbsp;</p><p class=\\\"is-active\\\">Cet événement rassemblera les plus grands spécialistes internationaux du sujet et proposera d’aborder toutes les facettes de l’oeuvre de Léonard sous le prisme de l’invention et de l’innovation : mécanique, médecine, architecture, biomimétisme, etc. Une partie de ce colloque se tiendra dans des lieux marqués par la figure de Léonard de Vinci : le Château du Clos Lucé à Amboise et le Château de Chambord.</p>\"\n                },\n                \"start_at\": \"2019-06-01T00:00:00Z\",\n                \"end_at\": \"2019-06-30T00:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"G7j3SNKzxg\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"G7j3SNKzxg\",\n                \"created_at\": \"2018-10-31T09:20:00Z\",\n                \"updated_at\": \"2018-11-06T10:56:29Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {},\n                \"name\": {\n                    \"fr\": \"Les Borgia à Chinon\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"\\\">La Forteresse royale de Chinon, proposera une reconstitution historique de la venue de César Borgia, fils du pape Alexandre VI pour rencontrer le roi de France à Chinon en 1498 . Reconstitution (cortège équestre). Démonstrations de Calcio Storico (sport florentin de la Renaissance, ancêtre du football actuel…). Dégustations de mets et recettes de la Renaissance florentine. Danses et musiques Renaissance.<br></p>\"\n                },\n                \"start_at\": \"2019-07-21T00:00:00Z\",\n                \"end_at\": \"2019-07-21T00:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"jVJbSWMWVR\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"jVJbSWMWVR\",\n                \"created_at\": \"2018-10-31T08:54:32Z\",\n                \"updated_at\": \"2018-11-06T10:56:28Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {},\n                \"name\": {\n                    \"fr\": \"La renaissance en Val de Loire, en France et en Europe - Festival du film français renaissance\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p>Pour la 21ème édition des Rendez- vous de l’Histoire, le Centre d’Études Supérieures de la Renaissance sera fortement impliqué dans une programmation spécifique « La Renaissance en Val de Loire, en France et en Europe ». Dans le cadre du festival du film français « Renaissance », seront projetés des films historiques accompagnés de moments de réflexion (débats, conférences et ateliers) mettant en perspective la création cinématographique au regard de l’histoire de la peinture historiciste.<br></p>\"\n                },\n                \"start_at\": \"2019-10-01T00:00:00Z\",\n                \"end_at\": \"2019-10-31T00:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"J7dASjXwxB\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"J7dASjXwxB\",\n                \"created_at\": \"2018-10-31T08:42:55Z\",\n                \"updated_at\": \"2018-11-06T10:56:28Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {\n                    \"fr\": \"Parcours numérique, sonore et interactif\"\n                },\n                \"name\": {\n                    \"fr\": \"Renaissance comme Rabelais\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<h3>Parcours numérique, sonore et interactif combinant des moyens techniques innovants capables d’allier  géographie littéraire et géographie réelle. Création d’un parcours sonore géolocalisé à partir d’une application mobile entre La Devinière, maison natale de Rabelais, et l’Abbaye de Seuilly.<br></h3>\"\n                },\n                \"start_at\": \"2019-07-01T00:00:00Z\",\n                \"end_at\": \"2019-10-31T00:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"DVAWS3NQxX\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"DVAWS3NQxX\",\n                \"created_at\": \"2018-10-31T08:34:25Z\",\n                \"updated_at\": \"2018-11-06T10:56:28Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {},\n                \"name\": {\n                    \"fr\": \"Spectacle numérique itinérant Renaissance(S)\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p>Ce spectacle numérique invite le public à s’immerger par le biais des dernières technologies dans un environnement visuel et sonore en plusieurs dimensions. Diverses technologies, de réalité augmentée ou de réalité virtuelle peuvent être détournées par le biais d’une immersion sensori-motrice grâce à une ou plusieurs interfaces visuelles. Ce spectacle proposera une narration dans l’esprit humaniste et novateur de la Renaissance.</p><p>Il évoquera les dimensions créatives, anticipatrices, pluridisciplinaires de Léonard de Vinci, les acteurs, oeuvres, sites patrimoniaux et culturels majeurs du territoire à la Renaissance, le Centre-Val de Loire aujourd’hui et sa projection dans le futur.</p>\"\n                },\n                \"start_at\": \"2019-08-15T19:00:00Z\",\n                \"end_at\": \"2019-09-15T23:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"8VvZS1y0Vv\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"8VvZS1y0Vv\",\n                \"created_at\": \"2018-10-31T08:29:42Z\",\n                \"updated_at\": \"2018-11-06T10:56:28Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {},\n                \"name\": {\n                    \"fr\": \"Magnificences à la cour de France\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"is-active\\\">Ce spectacle de l’ensemble Doulce Mémoire, recrée l’univers d’une fête à la cour de François I<sup>er</sup>, autour de 1515, celles qui virent l’arrivée en France de Léonard de Vinci à l’invitation du roi français. Peintre, inventeur de génie, Léonard était aussi organisateur de fêtes fameuses, dont l’inventivité et la puissance créatrice étaient appréciées les puissants.<br></p>\"\n                },\n                \"start_at\": \"2019-07-23T19:00:00Z\",\n                \"end_at\": \"2019-07-23T23:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"NLwlSvmaVD\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"NLwlSvmaVD\",\n                \"created_at\": \"2018-10-30T16:51:07Z\",\n                \"updated_at\": \"2018-11-06T10:56:27Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {\n                    \"fr\": \"Exposition regroupant des artistes contemporains influencés par Léonard de Vinci et la Renaissance.\"\n                },\n                \"name\": {\n                    \"fr\": \"Hommage contemporain à la Renaissance\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"is-active\\\">Exposition d’artistes contemporains ayant été influencés par Léonard de Vinci et la Renaissance, sur l’exemple de Fabien Merelle, établi à Tours et travaillant sur la scène internationale.&nbsp;</p><p class=\\\"is-active\\\">L’exposition « Hommage à Léonard » transpose dans l’art contemporain l’héritage du maître du Cinquecento mort en Val de Loire il y a 500 ans. Vaste cabinet de curiosités, l’exposition présentée dans les salles historiques du château fait écho au système de pensée&nbsp;<span style=\\\"font-size: 1em; font-family: ProximaNova, Helvetica, Arial, &quot;Sans Serif&quot;;\\\">du Maitre, génie polyvalent où la réalisation ne constitue pas la fin mais le moyen de la réflexion. Conçue comme une sorte de « mise en curiosité » envers les différents apports de Léonard, homme d’esprit universel à l’histoire des arts en Europe, interprétés ou prolongés par différents artistes de notre temps travaillant sur la scène internationale ; l’exposition montre aussi que les échanges entre Italie et France vers 1500, l’italianisme dans les&nbsp;</span><span style=\\\"font-size: 1em; font-family: ProximaNova, Helvetica, Arial, &quot;Sans Serif&quot;;\\\">arts amorcé sous Charles VIII et Louis XII se perpétuent de nos jours, avec les travaux des artistes florentines Antonella Bussanich, Alessandra Capodacqua et Alessandra Ragionier. Comme dans les chapitres d’un livre, chaque salle illustre l’un des thèmes étudiés par Léonard. L’autoportrait / Le portrait / La peinture d’histoire /&nbsp;</span><span style=\\\"font-size: 1em; font-family: ProximaNova, Helvetica, Arial, &quot;Sans Serif&quot;;\\\">Le Paysage / Le codex / La nature morte / Le Portrait féminin / Le Drapé.</span></p>\"\n                },\n                \"start_at\": \"2019-04-01T10:00:00Z\",\n                \"end_at\": \"2019-11-30T18:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"8VOeS416xY\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"8VOeS416xY\",\n                \"created_at\": \"2018-10-29T16:47:42Z\",\n                \"updated_at\": \"2018-11-06T10:56:30Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {\n                    \"fr\": \"Dans le cadre de l'anniversaire des 500ans de la Renaissance, l'artiste Ravo revisite l'oeuvre de François-Guillaume Ménageot \\\"La mort de Léonard de Vinci\\\"\"\n                },\n                \"name\": {\n                    \"fr\": \"Ravo Mattoni invité du Château Royal d' Amboise\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"\\\">Andrea Mattoni alias <b>RAVO</b>, artiste-graffeur italien de son état, a débuté en 2016 un ambitieux projet visant à reproduire, in situ et en très grand format, des chefs-d’œuvre de la peinture classique signés du Caravage, de Delacroix, de Delatour… Profondeur des couleurs, puissance des lignes et de l’échelle, l’hommage de RAVO aux grands maîtres est d’une modernité réjouissante… Le résultat est bluffant.</p><p class=\\\"\\\">De manière à prolonger l’exposition « La Mort de Léonard de Vinci : la construction d’un mythe » préparée avec la BNF, le château royal d’Amboise a demandé à RAVO de réaliser 5 toiles de grandes dimensions (4.5m X 3m). Celles-ci prendront pour sujet des détails du monumental tableau de François-Guillaume Ménageot « La Mort de Léonard de Vinci », et trouveront place sur les murs de la tour cavalière des Minimes, du 2 mai au 2 septembre 2019. Pour honorer cette commande, l’artiste sera en résidence au château royal d’Amboise durant une dizaine de jours, en avril 2019. Il réalisera ses peintures en public.</p><p class=\\\"\\\">Cette exposition est organisée avec le concours de l’association des Ateliers de l’Etoile.</p><p class=\\\"\\\"><span style=\\\"font-size: 1em; font-family: ProximaNova, Helvetica, Arial, &quot;Sans Serif&quot;;\\\"><b>\\\"Exposition « La Mort de Léonard de Vinci : la construction d’un mythe » - Partenariat BNF (Bibliothèque Nationale de France)</b></span><br></p><p class=\\\"\\\">Tous les jours, du 2 mai au 2 septembre 2019.</p><p class=\\\"\\\">La grande exposition intitulée « La Mort de Léonard de Vinci : la construction d’un mythe », articulée autour du monumental tableau (280 cm X 357 cm) de François-Guillaume Ménageot La mort de Léonard de Vinci, et d’une collection de gravures issues des collections nationales, nous éclairera sur la manière dont les contours de l’amitié entre le roi François Ier et Léonard ont été progressivement réécrits par l’Histoire, et assimilés par elle jusqu’à la construction d’un mythe mis au service de l’image de la monarchie française au XVIII<sup>ème</sup> siècle.</p><p>Au cœur de la riche programmation des célébrations du 5ème centenaire, cette exposition majeure viendra aussi rappeler à un public venu des quatre coins du monde la place éternelle qu’occupe Léonard de Vinci en Val de Loire, et à Amboise en particulier où il repose pour l’éternité dans la quiétude de la chapelle du château.\\\"</p>\"\n                },\n                \"start_at\": \"2019-05-02T09:00:00Z\",\n                \"end_at\": \"2019-09-02T18:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"items\": 9,\n        \"count\": 9,\n        \"page\": 1\n    },\n    \"links\": {\n        \"self\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events?page=1\",\n        \"pagination\": {\n            \"first\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events?page=1\",\n            \"last\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events?page=1\"\n        }\n    }\n}"}],"_postman_id":"47c5e4e8-d0cb-4655-b92c-2eebb98adba4"},{"name":"Show","id":"03d31ff9-f0ca-44f5-ae72-40fb09a5617d","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id","description":"<p>Détail d'un événement</p>\n","urlObject":{"path":["v2",":instance","events",":id"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"B72dSejMLO","key":"id"}]}},"response":[{"id":"8e043e2e-a10e-4672-8ff8-d14b7211f91c","name":"✅ Show","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.publidata.io/v2/:instance/events/:id","host":["https://api.publidata.io"],"path":["v2",":instance","events",":id"],"variable":[{"key":"instance","value":"500-ans-renaissances"},{"key":"id","value":"B72dSejMLO"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Fri, 16 Nov 2018 08:23:27 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"0646798b779f1896160ccd67fbfc345e\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"1f05b63c-5818-4629-aba9-05930451c786"},{"key":"X-Runtime","value":"0.122704"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"B72dSejMLO\",\n        \"type\": \"event\",\n        \"attributes\": {\n            \"id\": \"B72dSejMLO\",\n            \"created_at\": \"2018-11-15T13:04:08Z\",\n            \"updated_at\": \"2018-11-15T19:58:55Z\",\n            \"cancelled\": false,\n            \"cancellation_reason\": null,\n            \"free_admission\": false,\n            \"free_admission_condition\": \"\",\n            \"punchline\": {\n                \"fr\": \"Partez à la découverte des belles lettres de la Renaissance à travers les lectures de textes et poèmes d’auteurs du 16e siècle. \"\n            },\n            \"name\": {\n                \"fr\": \"Les belles lettres de la Renaissance\"\n            },\n            \"blurb\": {\n                \"fr\": \"<p class=\\\"\\\"><span style=\\\"font-family: ProximaNova, Helvetica, Arial, &quot;Sans Serif&quot;; font-size: 1em;\\\"><b><u>Balade contée :</u></b></span></p><p class=\\\"\\\"><span style=\\\"font-size: 1em; font-family: ProximaNova, Helvetica, Arial, &quot;Sans Serif&quot;;\\\">Aux détours des rues et ruelles d’Orléans, partez à la découverte des belles lettres de la Renaissance à travers les lectures de textes et poèmes d’auteurs du 16e siècle. Vous découvrirez aussi des lieux secrets où se mêlent histoires et anecdotes.&nbsp;</span><br></p><p class=\\\"\\\"><i>Visite menée par un guide-conférencier du service Ville d’art et d’histoire de la Mairie d’Orléans.&nbsp;</i><br></p>\"\n            },\n            \"start_at\": \"2019-04-18T18:00:00Z\",\n            \"end_at\": \"2019-06-14T19:30:00Z\"\n        },\n        \"relationships\": {},\n        \"links\": {\n            \"self\": {\n                \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/B72dSejMLO\"\n            },\n            \"relations\": {\n                \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/B72dSejMLO/cities\",\n                \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/B72dSejMLO/companies\",\n                \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/B72dSejMLO/departments\",\n                \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/B72dSejMLO/elects\",\n                \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/B72dSejMLO/etablissement_publics\",\n                \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/B72dSejMLO/event_groups\",\n                \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/B72dSejMLO/events\",\n                \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/B72dSejMLO/facilities\",\n                \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/B72dSejMLO/news\",\n                \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/B72dSejMLO/non_profits\",\n                \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/B72dSejMLO/performers\",\n                \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/B72dSejMLO/projects\",\n                \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/B72dSejMLO/regions\",\n                \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/B72dSejMLO/skills\"\n            },\n            \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/B72dSejMLO/images\",\n            \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/B72dSejMLO/documents\",\n            \"socials\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/B72dSejMLO/socials\",\n            \"contacts\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/B72dSejMLO/contacts\",\n            \"fees\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/B72dSejMLO/fees\",\n            \"bookings\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/B72dSejMLO/bookings\",\n            \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/B72dSejMLO/dates\",\n            \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/B72dSejMLO/type\",\n            \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/B72dSejMLO/types\"\n        },\n        \"meta\": {\n            \"included\": [],\n            \"includable\": [\n                \"cities\",\n                \"companies\",\n                \"departments\",\n                \"elects\",\n                \"etablissement_publics\",\n                \"event_groups\",\n                \"events\",\n                \"facilities\",\n                \"news\",\n                \"non_profits\",\n                \"performers\",\n                \"projects\",\n                \"regions\",\n                \"skills\",\n                \"images\",\n                \"documents\",\n                \"socials\",\n                \"contacts\",\n                \"fees\",\n                \"bookings\",\n                \"event_group\",\n                \"type\",\n                \"dates\"\n            ],\n            \"licenses\": [\n                {\n                    \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                    \"SPDX\": \"ODbL-1.0\",\n                    \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                    \"targets\": [\n                        \"cancelled\",\n                        \"cancellation_reason\",\n                        \"free_admission\",\n                        \"free_admission_condition\",\n                        \"punchline\",\n                        \"name\",\n                        \"blurb\",\n                        \"start_at\",\n                        \"end_at\"\n                    ]\n                }\n            ],\n            \"instances\": {\n                \"500-ans-renaissances\": [\n                    \"fr\"\n                ]\n            }\n        }\n    }\n}"}],"_postman_id":"03d31ff9-f0ca-44f5-ae72-40fb09a5617d"},{"name":"Show with included resources","id":"6bdde4c4-7878-403f-8757-4607c43d9df8","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id?include=dates,types","description":"<p>Avec le paramètre <code>include</code> vous avez la possibilité d'insérer dans la vue principale des ressources liées, vous évitant des requêtes supplémentaires.</p>\n","urlObject":{"path":["v2",":instance","events",":id"],"host":["https://api.publidata.io"],"query":[{"description":{"content":"<p>Liste des ressources à insérer</p>\n","type":"text/plain"},"key":"include","value":"dates,types"}],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"B72dSejMLO","key":"id"}]}},"response":[{"id":"915d313f-5a00-4433-bb73-88453ce271b0","name":"✅ Show with included resources","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.publidata.io/v2/:instance/events/:id?include=dates,types","host":["https://api.publidata.io"],"path":["v2",":instance","events",":id"],"query":[{"key":"include","value":"dates,types","description":"Liste des ressources à insérer"}],"variable":[{"key":"instance","value":"500-ans-renaissances"},{"key":"id","value":"B72dSejMLO"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Fri, 16 Nov 2018 08:23:43 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"70a6035e8ca59b7a8b8b7b9b1227b7c6\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"adaaeda0-665e-41e0-a9bf-64021307c094"},{"key":"X-Runtime","value":"1.078831"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"B72dSejMLO\",\n        \"type\": \"event\",\n        \"attributes\": {\n            \"id\": \"B72dSejMLO\",\n            \"created_at\": \"2018-11-15T13:04:08Z\",\n            \"updated_at\": \"2018-11-15T19:58:55Z\",\n            \"cancelled\": false,\n            \"cancellation_reason\": null,\n            \"free_admission\": false,\n            \"free_admission_condition\": \"\",\n            \"punchline\": {\n                \"fr\": \"Partez à la découverte des belles lettres de la Renaissance à travers les lectures de textes et poèmes d’auteurs du 16e siècle. \"\n            },\n            \"name\": {\n                \"fr\": \"Les belles lettres de la Renaissance\"\n            },\n            \"blurb\": {\n                \"fr\": \"<p class=\\\"\\\"><span style=\\\"font-family: ProximaNova, Helvetica, Arial, &quot;Sans Serif&quot;; font-size: 1em;\\\"><b><u>Balade contée :</u></b></span></p><p class=\\\"\\\"><span style=\\\"font-size: 1em; font-family: ProximaNova, Helvetica, Arial, &quot;Sans Serif&quot;;\\\">Aux détours des rues et ruelles d’Orléans, partez à la découverte des belles lettres de la Renaissance à travers les lectures de textes et poèmes d’auteurs du 16e siècle. Vous découvrirez aussi des lieux secrets où se mêlent histoires et anecdotes.&nbsp;</span><br></p><p class=\\\"\\\"><i>Visite menée par un guide-conférencier du service Ville d’art et d’histoire de la Mairie d’Orléans.&nbsp;</i><br></p>\"\n            },\n            \"start_at\": \"2019-04-18T18:00:00Z\",\n            \"end_at\": \"2019-06-14T19:30:00Z\"\n        },\n        \"relationships\": {\n            \"types\": {\n                \"data\": []\n            },\n            \"dates\": {\n                \"data\": [\n                    {\n                        \"id\": \"o7EMile575\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"B72ZiM3y7O\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"y7KAiYX5Lv\",\n                        \"type\": \"date\"\n                    }\n                ]\n            }\n        },\n        \"links\": {\n            \"self\": {\n                \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/B72dSejMLO\"\n            },\n            \"relations\": {\n                \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/B72dSejMLO/cities\",\n                \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/B72dSejMLO/companies\",\n                \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/B72dSejMLO/departments\",\n                \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/B72dSejMLO/elects\",\n                \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/B72dSejMLO/etablissement_publics\",\n                \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/B72dSejMLO/event_groups\",\n                \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/B72dSejMLO/events\",\n                \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/B72dSejMLO/facilities\",\n                \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/B72dSejMLO/news\",\n                \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/B72dSejMLO/non_profits\",\n                \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/B72dSejMLO/performers\",\n                \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/B72dSejMLO/projects\",\n                \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/B72dSejMLO/regions\",\n                \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/B72dSejMLO/skills\"\n            },\n            \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/B72dSejMLO/images\",\n            \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/B72dSejMLO/documents\",\n            \"socials\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/B72dSejMLO/socials\",\n            \"contacts\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/B72dSejMLO/contacts\",\n            \"fees\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/B72dSejMLO/fees\",\n            \"bookings\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/B72dSejMLO/bookings\",\n            \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/B72dSejMLO/dates\",\n            \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/B72dSejMLO/type\",\n            \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/B72dSejMLO/types\"\n        },\n        \"meta\": {\n            \"included\": [\n                \"dates\",\n                \"types\"\n            ],\n            \"includable\": [\n                \"cities\",\n                \"companies\",\n                \"departments\",\n                \"elects\",\n                \"etablissement_publics\",\n                \"event_groups\",\n                \"events\",\n                \"facilities\",\n                \"news\",\n                \"non_profits\",\n                \"performers\",\n                \"projects\",\n                \"regions\",\n                \"skills\",\n                \"images\",\n                \"documents\",\n                \"socials\",\n                \"contacts\",\n                \"fees\",\n                \"bookings\",\n                \"event_group\",\n                \"type\",\n                \"dates\"\n            ],\n            \"licenses\": [\n                {\n                    \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                    \"SPDX\": \"ODbL-1.0\",\n                    \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                    \"targets\": [\n                        \"cancelled\",\n                        \"cancellation_reason\",\n                        \"free_admission\",\n                        \"free_admission_condition\",\n                        \"punchline\",\n                        \"name\",\n                        \"blurb\",\n                        \"start_at\",\n                        \"end_at\"\n                    ]\n                }\n            ],\n            \"instances\": {\n                \"500-ans-renaissances\": [\n                    \"fr\"\n                ]\n            }\n        }\n    },\n    \"included\": [\n        {\n            \"id\": \"o7EMile575\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"o7EMile575\",\n                \"created_at\": \"2018-11-15T15:59:47Z\",\n                \"updated_at\": \"2018-11-15T15:59:47Z\",\n                \"start_at\": \"2019-06-14T18:00:00Z\",\n                \"end_at\": \"2019-06-14T19:30:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 14 Fr 18:00-19:30\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/B72dSejMLO/\",\n                \"place\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/pVp6IGobxg/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"includable\": [\n                    \"event\",\n                    \"place\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"B72ZiM3y7O\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"B72ZiM3y7O\",\n                \"created_at\": \"2018-11-15T15:59:10Z\",\n                \"updated_at\": \"2018-11-15T15:59:10Z\",\n                \"start_at\": \"2019-05-17T18:00:00Z\",\n                \"end_at\": \"2019-05-17T19:30:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 May 17 Fr 18:00-19:30\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/B72dSejMLO/\",\n                \"place\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/pVp6IGobxg/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"includable\": [\n                    \"event\",\n                    \"place\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"y7KAiYX5Lv\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"y7KAiYX5Lv\",\n                \"created_at\": \"2018-11-15T15:58:20Z\",\n                \"updated_at\": \"2018-11-15T15:58:20Z\",\n                \"start_at\": \"2019-04-18T18:00:00Z\",\n                \"end_at\": \"2019-04-18T19:30:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Apr 18 Th 18:00-19:30\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/B72dSejMLO/\",\n                \"place\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/pVp6IGobxg/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"includable\": [\n                    \"event\",\n                    \"place\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"zEVe5c1VBb\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"zEVe5c1VBb\",\n                \"created_at\": \"2016-06-07T15:45:24Z\",\n                \"updated_at\": \"2018-10-23T01:24:40Z\",\n                \"name\": {\n                    \"fr\": \"Balade\"\n                }\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": \"https://publidata-staging.herokuapp.com/api/v2/event_types/zEVe5c1VBb\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"includable\": [],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"6WxzMcpB79\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"6WxzMcpB79\",\n                \"created_at\": \"2018-10-23T01:23:57Z\",\n                \"updated_at\": \"2018-10-23T01:24:21Z\",\n                \"name\": {\n                    \"fr\": \"Animation\"\n                }\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": \"https://publidata-staging.herokuapp.com/api/v2/event_types/6WxzMcpB79\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"includable\": [],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"ve7Rgc2qxG\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"ve7Rgc2qxG\",\n                \"created_at\": \"2018-10-23T01:24:05Z\",\n                \"updated_at\": \"2018-11-05T14:07:27Z\",\n                \"name\": {\n                    \"fr\": \"Sortie\"\n                }\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": \"https://publidata-staging.herokuapp.com/api/v2/event_types/ve7Rgc2qxG\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"includable\": [],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"yz713cNjLg\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"yz713cNjLg\",\n                \"created_at\": \"2018-10-23T01:24:06Z\",\n                \"updated_at\": \"2018-10-23T01:24:32Z\",\n                \"name\": {\n                    \"fr\": \"Visite guidée\"\n                }\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": \"https://publidata-staging.herokuapp.com/api/v2/event_types/yz713cNjLg\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"includable\": [],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        }\n    ]\n}"}],"_postman_id":"6bdde4c4-7878-403f-8757-4607c43d9df8"},{"name":"Show translated","id":"58b68100-8566-4005-a000-4d481e0b8575","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id?lang=en","description":"<p>Le paramètre <code>lang</code> vous permet de récupérer les contenus éditoriaux d'une ressource dans une langue donnée.</p>\n","urlObject":{"path":["v2",":instance","events",":id"],"host":["https://api.publidata.io"],"query":[{"description":{"content":"<p>Langue désirée</p>\n","type":"text/plain"},"key":"lang","value":"en"}],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"58b68100-8566-4005-a000-4d481e0b8575"},{"name":"Search","id":"fe926267-771a-4278-abdb-63bdd05e2aec","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/?q=Sénart&size=10&page=1&marker=false&instances[]=2&types[]=Event&performers[]=Nakht&facilities[]=8&events[]=1&event_groups[]=1&news[]=1&projects[]=1&cities[]=7&etablissement_publics[]=1&departments[]=1&regions[]=1&skills[]=1&elects[]=1&bbox[]&event_types[]=Oeuvre d'art&date[start]=1526054400&date[end]=1526083199&price[min]=10&price[max]=50&free_admission=true&accessibilities[]=has_deaf_accessibility&tags[]=","urlObject":{"path":["v2",":instance","events",""],"host":["https://api.publidata.io"],"query":[{"description":{"content":"<p>Filtre textuel</p>\n","type":"text/plain"},"key":"q","value":"Sénart"},{"description":{"content":"<p>Nombre de résultats retournés (defaut: 10)</p>\n","type":"text/plain"},"key":"size","value":"10"},{"description":{"content":"<p>Pagination (defaut: 1)</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>Filtre booléen pour ne retourner que les locations (default: false)</p>\n","type":"text/plain"},"key":"marker","value":"false"},{"description":{"content":"<p>Filtre par instance (array d'id)</p>\n","type":"text/plain"},"key":"instances[]","value":"2"},{"description":{"content":"<p>Filtre par type de ressource (array de type parmi la liste suivante : News Event Facility Project City Epci Department Region EventGroup Skill Elect Performer Company NonProfit EtablissementPublic)</p>\n","type":"text/plain"},"key":"types[]","value":"Event"},{"description":{"content":"<p>Filtre par artiste lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"performers[]","value":"Nakht"},{"description":{"content":"<p>Filtre par équipement lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"facilities[]","value":"8"},{"description":{"content":"<p>Filtre par événement lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"events[]","value":"1"},{"description":{"content":"<p>Filtre par groupe d'événements lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"event_groups[]","value":"1"},{"description":{"content":"<p>Filtre par actualité liée (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"news[]","value":"1"},{"description":{"content":"<p>Filtre par projet lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"projects[]","value":"1"},{"description":{"content":"<p>Filtre par ville et location liées (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"cities[]","value":"7"},{"description":{"content":"<p>Filtre par établissement public lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"etablissement_publics[]","value":"1"},{"description":{"content":"<p>Filtre par departement lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"departments[]","value":"1"},{"description":{"content":"<p>Filtre par region liée (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"regions[]","value":"1"},{"description":{"content":"<p>Filtre par compétence liée (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"skills[]","value":"1"},{"description":{"content":"<p>Filtre par élu lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"elects[]","value":"1"},{"description":{"content":"<p>Filtre géographique (array de latitudes, longitudes dans l'ordre suivant minX, minY, maxX, maxY)</p>\n","type":"text/plain"},"key":"bbox[]","value":null},{"description":{"content":"<p>Filtre par type d'événement (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"event_types[]","value":"Oeuvre d'art"},{"description":{"content":"<p>Filtre par date/heure de début (timestamp en seconde)</p>\n","type":"text/plain"},"key":"date[start]","value":"1526054400"},{"description":{"content":"<p>Filtre par date/heure de fin (timestamp en seconde)</p>\n","type":"text/plain"},"key":"date[end]","value":"1526083199"},{"description":{"content":"<p>Filtre de prix minimum</p>\n","type":"text/plain"},"key":"price[min]","value":"10"},{"description":{"content":"<p>Filtre de prix maximum</p>\n","type":"text/plain"},"key":"price[max]","value":"50"},{"description":{"content":"<p>Filtre de gratuité (boolean)</p>\n","type":"text/plain"},"key":"free_admission","value":"true"},{"description":{"content":"<p>Filtre d'accessibilité (array de string)</p>\n","type":"text/plain"},"key":"accessibilities[]","value":"has_deaf_accessibility"},{"description":{"content":"<p>Filtre par tag (array de string)</p>\n","type":"text/plain"},"key":"tags[]","value":""}],"variable":[{"type":"string","value":"500-ans-renaissances","key":"instance"}]}},"response":[{"id":"78cf00f8-d3b9-40e3-86dd-0322044b45f2","name":"Search events","originalRequest":{"method":"GET","header":[],"url":{"raw":"api.publidata.io/v1/events?q=&options[geo][top_left][lat]=49.05965195372349&options[geo][top_left][lon]=2.1371613664061897&options[geo][bottom_right][lat]=48.21570798955211&options[geo][bottom_right][lon]=2.7688752335936897&options[city]=Combs-la-Ville&options[paging][from]=0&options[event_types][]=Concert&options[dates][start_date]=1521812100000&options[dates][end_date]=1522499700000&options[instances][]=2","host":["api","publidata","io"],"path":["v1","events"],"query":[{"key":"q","value":"","description":"Recherche (full-text)"},{"key":"options[geo][top_left][lat]","value":"49.05965195372349","description":"Latitude coin supérieur gauche geo-box (lat)"},{"key":"options[geo][top_left][lon]","value":"2.1371613664061897","description":"Longitude coin supérieur gauche geo-box (lon)"},{"key":"options[geo][bottom_right][lat]","value":"48.21570798955211","description":"Latitude coin inférieur droit geo-box (lat)"},{"key":"options[geo][bottom_right][lon]","value":"2.7688752335936897","description":"Longitude coin inférieur droit geo-box (lon)"},{"key":"options[city]","value":"Combs-la-Ville","description":"Ville (full-text ou code postal)"},{"key":"options[paging][from]","value":"0","description":"Début de la pagination (integer)"},{"key":"options[event_types][]","value":"Concert","description":"Types d'événement (array de string)"},{"key":"options[dates][start_date]","value":"1521812100000","description":"Date de début (format timestamp unix 1508267068688)"},{"key":"options[dates][end_date]","value":"1522499700000","description":"Date de fin (format timestamp unix 1539803068688)"},{"key":"options[instances][]","value":"2"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"took\": 11,\n    \"timed_out\": false,\n    \"_shards\": {\n        \"total\": 1,\n        \"successful\": 1,\n        \"failed\": 0\n    },\n    \"hits\": {\n        \"total\": 2,\n        \"max_score\": 0.9812665,\n        \"hits\": [\n            {\n                \"_index\": \"events\",\n                \"_type\": \"event\",\n                \"_id\": \"3241\",\n                \"_score\": 0.9812665,\n                \"_source\": {\n                    \"id\": 3241,\n                    \"name\": \"Concert des orchestres\",\n                    \"slug\": \"concert-des-orchestres\",\n                    \"status\": \"published\",\n                    \"free_admission\": true,\n                    \"start_date\": \"2018-03-23T00:00:00.000+01:00\",\n                    \"end_date\": \"2018-03-23T00:00:00.000+01:00\",\n                    \"punchline\": \"Le vendredi 23 mars 2018 à 20h au Théâtre de la Coupole, les musiciens du Conservatoire Maurice Ohana de Combs-la-ville vous attendent pour leur rendez-vous annuel...\",\n                    \"blurb\": \"Cette soirée donne la possibilité à plusieurs formations orchestrales du conservatoire Maurice Ohana de se produire sur scène. \\r\\n\\r\\nProgramme musical éclectique et varié, ce concert  permet de vivre la musique ensemble et de la partager sans modération avec le public.\",\n                    \"linked_objects\": [\n                        {\n                            \"id\": 180,\n                            \"type\": \"Facility\",\n                            \"name\": \"La Coupole\"\n                        },\n                        {\n                            \"id\": 12,\n                            \"type\": \"City\",\n                            \"name\": \"Combs-la-Ville\"\n                        }\n                    ],\n                    \"cover_picture\": {\n                        \"id\": 22632,\n                        \"name\": \"image de couverture de Concert des orchestres\",\n                        \"alt\": \"image de couverture de Concert des orchestres\",\n                        \"description\": \"image de couverture de Concert des orchestres\",\n                        \"slug\": null,\n                        \"image_urls_as_json\": {\n                            \"image_original_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/632/original/open-uri20171002-4-1etqlbo?1506962457\",\n                            \"image_small_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/632/image_small/open-uri20171002-4-1etqlbo?1506962457\",\n                            \"image_medium_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/632/image_medium/open-uri20171002-4-1etqlbo?1506962457\",\n                            \"image_large_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/632/image_large/open-uri20171002-4-1etqlbo?1506962457\"\n                        }\n                    },\n                    \"instances\": [\n                        {\n                            \"id\": 2,\n                            \"slug\": \"portail-sortir-gps\"\n                        }\n                    ],\n                    \"event_type\": {\n                        \"id\": 13,\n                        \"name\": \"Concert\"\n                    },\n                    \"event_styles\": [\n                        {\n                            \"id\": 82,\n                            \"name\": \"World Music\"\n                        }\n                    ],\n                    \"event_dates\": [\n                        {\n                            \"id\": 37799,\n                            \"start_hour\": \"2000-01-01T20:00:00.000Z\",\n                            \"end_hour\": \"2000-01-01T22:00:00.000Z\",\n                            \"date\": \"2018-03-23T00:00:00.000+01:00\",\n                            \"sold_out\": false,\n                            \"start_date\": \"2018-03-23T20:00:00.000+00:00\",\n                            \"end_date\": \"2018-03-23T22:00:00.000+00:00\"\n                        }\n                    ],\n                    \"facilities\": [\n                        {\n                            \"id\": 180,\n                            \"name\": \"La Coupole\",\n                            \"slug\": \"la-coupole\",\n                            \"address\": \"Rue Jean François Millet, 77380 Combs-la-Ville, France\",\n                            \"location\": {\n                                \"lat\": 48.659695,\n                                \"lon\": 2.5662415\n                            }\n                        }\n                    ],\n                    \"locations\": [],\n                    \"fees\": [],\n                    \"tags\": [],\n                    \"pages\": [\n                        {\n                            \"id\": 7659,\n                            \"instance\": {\n                                \"id\": 2,\n                                \"slug\": \"portail-sortir-gps\"\n                            }\n                        }\n                    ]\n                }\n            },\n            {\n                \"_index\": \"events\",\n                \"_type\": \"event\",\n                \"_id\": \"3983\",\n                \"_score\": 0.9794048,\n                \"_source\": {\n                    \"id\": 3983,\n                    \"name\": \"Après-midi musicale: Claude Debussy\",\n                    \"slug\": \"apres-midi-musicale-claude-debussy\",\n                    \"status\": \"published\",\n                    \"free_admission\": true,\n                    \"start_date\": \"2018-03-24T00:00:00.000+01:00\",\n                    \"end_date\": \"2018-03-24T00:00:00.000+01:00\",\n                    \"punchline\": \"A l'occasion du centenaire de la mort de Claude Debussy, la media-ludothèque et le conservatoire Maurice Ohana vous invitent à une après-midi musical, le samedi 24 mars à partir de 15h30.\",\n                    \"blurb\": \"Claude Debussy (1862-1918) était un compositeur français. Pour célébrer son centenaire, nous vous invitons à un après-midi musical. Au programme, une conférence par Bruno Giner sur le compositeur à 15h30. \\r\\nPuis, à 18h, les élèves du conservatoire interpréteront une sélection d’œuvres de Claude Debussy.\",\n                    \"linked_objects\": [\n                        {\n                            \"id\": 42,\n                            \"type\": \"Facility\",\n                            \"name\": \"Médiathèque de Combs-la-Ville\"\n                        },\n                        {\n                            \"id\": 12,\n                            \"type\": \"City\",\n                            \"name\": \"Combs-la-Ville\"\n                        }\n                    ],\n                    \"cover_picture\": {\n                        \"id\": 24665,\n                        \"name\": \"image de couverture de Après-midi musicale: Claude Debussy\",\n                        \"alt\": \"image de couverture de Après-midi musicale: Claude Debussy\",\n                        \"description\": \"image de couverture de Après-midi musicale: Claude Debussy\",\n                        \"slug\": null,\n                        \"image_urls_as_json\": {\n                            \"image_original_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/665/original/Photo_23a_Claude_Debussy.jpg?1516441408\",\n                            \"image_small_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/665/image_small/Photo_23a_Claude_Debussy.jpg?1516441408\",\n                            \"image_medium_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/665/image_medium/Photo_23a_Claude_Debussy.jpg?1516441408\",\n                            \"image_large_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/665/image_large/Photo_23a_Claude_Debussy.jpg?1516441408\"\n                        }\n                    },\n                    \"instances\": [\n                        {\n                            \"id\": 2,\n                            \"slug\": \"portail-sortir-gps\"\n                        }\n                    ],\n                    \"event_type\": {\n                        \"id\": 13,\n                        \"name\": \"Concert\"\n                    },\n                    \"event_styles\": [\n                        {\n                            \"id\": 111,\n                            \"name\": \"Musique Classique\"\n                        }\n                    ],\n                    \"event_dates\": [\n                        {\n                            \"id\": 41100,\n                            \"start_hour\": \"2000-01-01T15:30:00.000Z\",\n                            \"end_hour\": \"2000-01-01T19:30:00.000Z\",\n                            \"date\": \"2018-03-24T00:00:00.000+01:00\",\n                            \"sold_out\": false,\n                            \"start_date\": \"2018-03-24T15:30:00.000+00:00\",\n                            \"end_date\": \"2018-03-24T19:30:00.000+00:00\"\n                        }\n                    ],\n                    \"facilities\": [\n                        {\n                            \"id\": 42,\n                            \"name\": \"Médiathèque de Combs-la-Ville\",\n                            \"slug\": \"mediatheque-de-combs-la-ville\",\n                            \"address\": \"Rue Jean François Millet, 77380 Combs-la-Ville, France\",\n                            \"location\": {\n                                \"lat\": 48.659695,\n                                \"lon\": 2.5662415\n                            }\n                        }\n                    ],\n                    \"locations\": [],\n                    \"fees\": [],\n                    \"accessibility\": {\n                        \"id\": 1766,\n                        \"deaf_lsf\": false,\n                        \"deaf_vision_based\": false,\n                        \"deaf_subtitle\": false,\n                        \"deaf_hearing_loop\": false,\n                        \"blind_audio_description\": false,\n                        \"blind_darkness_based\": false,\n                        \"blind_text_based\": false,\n                        \"blind_braille\": false,\n                        \"blind_large_print\": false,\n                        \"motor_disabled_access\": true,\n                        \"has_accessibility\": true,\n                        \"has_deaf_accessibility\": false,\n                        \"has_blind_accessibility\": false\n                    },\n                    \"tags\": [\n                        \"Culture\"\n                    ],\n                    \"pages\": [\n                        {\n                            \"id\": 8636,\n                            \"instance\": {\n                                \"id\": 2,\n                                \"slug\": \"portail-sortir-gps\"\n                            }\n                        }\n                    ]\n                }\n            }\n        ]\n    },\n    \"aggregations\": {\n        \"event_styles_terms_agg\": {\n            \"doc_count\": 2,\n            \"name\": {\n                \"doc_count_error_upper_bound\": 0,\n                \"sum_other_doc_count\": 0,\n                \"buckets\": [\n                    {\n                        \"key\": \"111\",\n                        \"doc_count\": 1,\n                        \"name\": {\n                            \"doc_count_error_upper_bound\": 0,\n                            \"sum_other_doc_count\": 0,\n                            \"buckets\": [\n                                {\n                                    \"key\": \"classique\",\n                                    \"doc_count\": 1\n                                },\n                                {\n                                    \"key\": \"musique\",\n                                    \"doc_count\": 1\n                                }\n                            ]\n                        }\n                    },\n                    {\n                        \"key\": \"82\",\n                        \"doc_count\": 1,\n                        \"name\": {\n                            \"doc_count_error_upper_bound\": 0,\n                            \"sum_other_doc_count\": 0,\n                            \"buckets\": [\n                                {\n                                    \"key\": \"music\",\n                                    \"doc_count\": 1\n                                },\n                                {\n                                    \"key\": \"world\",\n                                    \"doc_count\": 1\n                                }\n                            ]\n                        }\n                    }\n                ]\n            }\n        },\n        \"events\": {\n            \"doc_count\": 3838,\n            \"dates\": {\n                \"doc_count\": 11064,\n                \"this_month\": {\n                    \"doc_count\": 737,\n                    \"events\": {\n                        \"doc_count\": 278\n                    }\n                },\n                \"this_week_end\": {\n                    \"doc_count\": 81,\n                    \"events\": {\n                        \"doc_count\": 54\n                    }\n                },\n                \"past\": {\n                    \"doc_count\": 10070,\n                    \"events\": {\n                        \"doc_count\": 3132\n                    }\n                },\n                \"today\": {\n                    \"doc_count\": 34,\n                    \"events\": {\n                        \"doc_count\": 28\n                    }\n                },\n                \"tomorrow\": {\n                    \"doc_count\": 22,\n                    \"events\": {\n                        \"doc_count\": 19\n                    }\n                },\n                \"last_days\": {\n                    \"doc_count\": 133,\n                    \"events\": {\n                        \"doc_count\": 75\n                    }\n                },\n                \"upcoming\": {\n                    \"doc_count\": 1028,\n                    \"events\": {\n                        \"doc_count\": 390\n                    }\n                },\n                \"this_week\": {\n                    \"doc_count\": 197,\n                    \"events\": {\n                        \"doc_count\": 96\n                    }\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"fe926267-771a-4278-abdb-63bdd05e2aec"}],"id":"09bee1fa-9c64-49d5-91e5-56bc46c4f203","_postman_id":"09bee1fa-9c64-49d5-91e5-56bc46c4f203","description":""},{"name":"Ressources liées","item":[{"name":"Type","id":"4b1fab7b-6813-4f1b-9b67-261ff56b7772","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/type","description":"<p>Type(s) de la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","type"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"B72dSejMLO","key":"id"}]}},"response":[{"id":"2db8ea5a-7fc4-47c6-94f1-39aa6a767eaa","name":"✅ Type","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.publidata.io/v2/:instance/events/:id/type","host":["https://api.publidata.io"],"path":["v2",":instance","events",":id","type"],"variable":[{"key":"instance","value":"500-ans-renaissances"},{"key":"id","value":"B72dSejMLO"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Fri, 16 Nov 2018 08:58:24 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"10da23c3972530d9caaf5e049da10bd8\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"2f846164-a6e1-4c2b-be83-c542afeb3b31"},{"key":"X-Runtime","value":"0.250004"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"yz713cNjLg\",\n        \"type\": \"type\",\n        \"attributes\": {\n            \"id\": \"yz713cNjLg\",\n            \"created_at\": \"2018-10-23T01:24:06Z\",\n            \"updated_at\": \"2018-10-23T01:24:32Z\",\n            \"name\": {\n                \"fr\": \"Visite guidée\"\n            }\n        },\n        \"relationships\": {},\n        \"links\": {\n            \"self\": \"https://publidata-staging.herokuapp.com/api/v2/event_types/yz713cNjLg\"\n        },\n        \"meta\": {\n            \"included\": [],\n            \"includable\": [],\n            \"licenses\": [\n                {\n                    \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                    \"SPDX\": \"ODbL-1.0\",\n                    \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                    \"targets\": [\n                        \"name\"\n                    ]\n                }\n            ]\n        }\n    }\n}"}],"_postman_id":"4b1fab7b-6813-4f1b-9b67-261ff56b7772"},{"name":"Types","id":"2af939e4-740b-4566-83bc-0987d974ea43","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/types","description":"<p>Type(s) de la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","types"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"B72dSejMLO","key":"id"}]}},"response":[{"id":"8680cf0b-8617-4813-bd32-b440a5644917","name":"✅ Types","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.publidata.io/v2/:instance/events/:id/types","host":["https://api.publidata.io"],"path":["v2",":instance","events",":id","types"],"variable":[{"key":"instance","value":"500-ans-renaissances"},{"key":"id","value":"B72dSejMLO"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Fri, 16 Nov 2018 08:23:57 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"8f0248b5881252327ceaa19e04f5c732\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"9890b9ae-91b9-4b24-a5b6-f04c1d3472fa"},{"key":"X-Runtime","value":"0.611168"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"zEVe5c1VBb\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"zEVe5c1VBb\",\n                \"created_at\": \"2016-06-07T15:45:24Z\",\n                \"updated_at\": \"2018-10-23T01:24:40Z\",\n                \"name\": {\n                    \"fr\": \"Balade\"\n                }\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": \"https://publidata-staging.herokuapp.com/api/v2/event_types/zEVe5c1VBb\"\n            },\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"6WxzMcpB79\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"6WxzMcpB79\",\n                \"created_at\": \"2018-10-23T01:23:57Z\",\n                \"updated_at\": \"2018-10-23T01:24:21Z\",\n                \"name\": {\n                    \"fr\": \"Animation\"\n                }\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": \"https://publidata-staging.herokuapp.com/api/v2/event_types/6WxzMcpB79\"\n            },\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"ve7Rgc2qxG\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"ve7Rgc2qxG\",\n                \"created_at\": \"2018-10-23T01:24:05Z\",\n                \"updated_at\": \"2018-11-05T14:07:27Z\",\n                \"name\": {\n                    \"fr\": \"Sortie\"\n                }\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": \"https://publidata-staging.herokuapp.com/api/v2/event_types/ve7Rgc2qxG\"\n            },\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"yz713cNjLg\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"yz713cNjLg\",\n                \"created_at\": \"2018-10-23T01:24:06Z\",\n                \"updated_at\": \"2018-10-23T01:24:32Z\",\n                \"name\": {\n                    \"fr\": \"Visite guidée\"\n                }\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": \"https://publidata-staging.herokuapp.com/api/v2/event_types/yz713cNjLg\"\n            },\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        }\n    ],\n    \"meta\": {\n        \"items\": 4,\n        \"count\": 4,\n        \"page\": 1\n    },\n    \"links\": {\n        \"self\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/B72dSejMLO/types?page=1\",\n        \"pagination\": {\n            \"first\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/B72dSejMLO/types?page=1\",\n            \"last\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/B72dSejMLO/types?page=1\"\n        }\n    }\n}"}],"_postman_id":"2af939e4-740b-4566-83bc-0987d974ea43"},{"name":"Themes","id":"6e8bda43-f571-4f21-b8cd-d5b03ce1f646","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/themes","description":"<p>Thème(s) associé(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","themes"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"B72dSejMLO","key":"id"}]}},"response":[],"_postman_id":"6e8bda43-f571-4f21-b8cd-d5b03ce1f646"},{"name":"Dates","id":"9bcaf143-35f9-4b6d-9a5d-e1ec7ad7485d","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/dates","description":"<p>Date(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","dates"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"EVeGSR6nxB","key":"id"}]}},"response":[{"id":"e9e1c542-72c3-41e0-bf7e-18ca5fa284db","name":"✅ Dates","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.publidata.io/v2/:instance/events/:id/dates","host":["https://api.publidata.io"],"path":["v2",":instance","events",":id","dates"],"variable":[{"key":"instance","value":"500-ans-renaissances"},{"key":"id","value":"B72dSejMLO"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Fri, 16 Nov 2018 08:24:14 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"55ec3fb6d49ac6598f4a505b89f5ec34\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"52466468-a690-4476-9969-64d87033af77"},{"key":"X-Runtime","value":"0.259569"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"y7KAiYX5Lv\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"y7KAiYX5Lv\",\n                \"created_at\": \"2018-11-15T15:58:20Z\",\n                \"updated_at\": \"2018-11-15T15:58:20Z\",\n                \"start_at\": \"2019-04-18T18:00:00Z\",\n                \"end_at\": \"2019-04-18T19:30:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Apr 18 Th 18:00-19:30\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/B72dSejMLO/\",\n                \"place\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/pVp6IGobxg/\"\n            },\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [\n                    \"event\",\n                    \"place\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"B72ZiM3y7O\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"B72ZiM3y7O\",\n                \"created_at\": \"2018-11-15T15:59:10Z\",\n                \"updated_at\": \"2018-11-15T15:59:10Z\",\n                \"start_at\": \"2019-05-17T18:00:00Z\",\n                \"end_at\": \"2019-05-17T19:30:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 May 17 Fr 18:00-19:30\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/B72dSejMLO/\",\n                \"place\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/pVp6IGobxg/\"\n            },\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [\n                    \"event\",\n                    \"place\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"o7EMile575\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"o7EMile575\",\n                \"created_at\": \"2018-11-15T15:59:47Z\",\n                \"updated_at\": \"2018-11-15T15:59:47Z\",\n                \"start_at\": \"2019-06-14T18:00:00Z\",\n                \"end_at\": \"2019-06-14T19:30:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 14 Fr 18:00-19:30\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/B72dSejMLO/\",\n                \"place\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/pVp6IGobxg/\"\n            },\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [\n                    \"event\",\n                    \"place\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        }\n    ],\n    \"meta\": {\n        \"items\": 3,\n        \"count\": 3,\n        \"page\": 1\n    },\n    \"links\": {\n        \"self\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/B72dSejMLO/dates?page=1\",\n        \"pagination\": {\n            \"first\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/B72dSejMLO/dates?page=1\",\n            \"last\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/B72dSejMLO/dates?page=1\"\n        }\n    }\n}"}],"_postman_id":"9bcaf143-35f9-4b6d-9a5d-e1ec7ad7485d"},{"name":"Bookings","id":"b0283ee7-9ec6-4391-9908-bc3ac4abd641","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/bookings","description":"<p>Billetterie(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","bookings"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"B72dSejMLO","key":"id"}]}},"response":[{"id":"1f814cd8-ff66-49f2-926e-69f2f4f9bbbb","name":"✅ Bookings","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.publidata.io/v2/:instance/events/:id/bookings","host":["https://api.publidata.io"],"path":["v2",":instance","events",":id","bookings"],"variable":[{"key":"instance","value":"500-ans-renaissances"},{"key":"id","value":"B72dSejMLO"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Fri, 16 Nov 2018 08:24:30 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"f284390a5281f7ae5d2fcc2b92a43e90\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"896d583f-f9c4-4a31-9eeb-634d30fb5fc7"},{"key":"X-Runtime","value":"0.230549"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"MxQppc6Am7\",\n            \"type\": \"booking\",\n            \"attributes\": {\n                \"id\": \"MxQppc6Am7\",\n                \"created_at\": \"2018-11-15T19:07:29Z\",\n                \"updated_at\": \"2018-11-15T19:07:29Z\",\n                \"name\": \"Billetterie \",\n                \"value\": \"https://reservation.tourisme-orleansmetropole.com/billetterie-orleans.html\",\n                \"opening_hours\": \"24/7\",\n                \"spoken_language\": null,\n                \"social_type\": \"ticket\"\n            },\n            \"relationships\": {},\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\",\n                            \"value\",\n                            \"opening_hours\",\n                            \"spoken_language\",\n                            \"social_type\"\n                        ]\n                    }\n                ]\n            }\n        }\n    ],\n    \"meta\": {\n        \"items\": 1,\n        \"count\": 1,\n        \"page\": 1\n    },\n    \"links\": {\n        \"self\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/B72dSejMLO/bookings?page=1\",\n        \"pagination\": {\n            \"first\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/B72dSejMLO/bookings?page=1\",\n            \"last\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/B72dSejMLO/bookings?page=1\"\n        }\n    }\n}"}],"_postman_id":"b0283ee7-9ec6-4391-9908-bc3ac4abd641"},{"name":"Fees","id":"04ec02d2-5d17-4b0b-860e-e470f41a8eaa","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/fees","description":"<p>Prix lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","fees"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"B72dSejMLO","key":"id"}]}},"response":[{"id":"544fd741-b14c-4b5b-9c7b-da14b66759ff","name":"✅ Fees","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.publidata.io/v2/:instance/events/:id/fees","host":["https://api.publidata.io"],"path":["v2",":instance","events",":id","fees"],"variable":[{"key":"instance","value":"500-ans-renaissances"},{"key":"id","value":"B72dSejMLO"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Fri, 16 Nov 2018 08:24:43 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"96bcef246d6516eef47a1161aae53acb\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"3557f9d8-f516-4cc9-93e5-adf77ba0a921"},{"key":"X-Runtime","value":"0.613979"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"n7l02IaQr7\",\n            \"type\": \"fee\",\n            \"attributes\": {\n                \"id\": \"n7l02IaQr7\",\n                \"created_at\": \"2018-11-15T13:10:52Z\",\n                \"updated_at\": \"2018-11-15T13:10:52Z\",\n                \"price_currency\": \"EUR\",\n                \"value\": \"0.00\",\n                \"name\": {\n                    \"fr\": \"gratuit : moins de 18 ans, étudiants, adhérents à la carte PASSé-simple\"\n                }\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"feeable\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/B72dSejMLO/\"\n            },\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [\n                    \"feeable\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"price_currency\",\n                            \"value\",\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"RL3JKI9vGx\",\n            \"type\": \"fee\",\n            \"attributes\": {\n                \"id\": \"RL3JKI9vGx\",\n                \"created_at\": \"2018-11-15T13:10:51Z\",\n                \"updated_at\": \"2018-11-15T13:10:51Z\",\n                \"price_currency\": \"EUR\",\n                \"value\": \"4.50\",\n                \"name\": {\n                    \"fr\": \"Tarif réduit \"\n                }\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"feeable\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/B72dSejMLO/\"\n            },\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [\n                    \"feeable\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"price_currency\",\n                            \"value\",\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"o7NeZIZv5V\",\n            \"type\": \"fee\",\n            \"attributes\": {\n                \"id\": \"o7NeZIZv5V\",\n                \"created_at\": \"2018-11-15T13:10:51Z\",\n                \"updated_at\": \"2018-11-15T13:10:51Z\",\n                \"price_currency\": \"EUR\",\n                \"value\": \"6.50\",\n                \"name\": {\n                    \"fr\": \"Plein tarif\"\n                }\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"feeable\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/B72dSejMLO/\"\n            },\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [\n                    \"feeable\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"price_currency\",\n                            \"value\",\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        }\n    ],\n    \"meta\": {\n        \"items\": 3,\n        \"count\": 3,\n        \"page\": 1\n    },\n    \"links\": {\n        \"self\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/B72dSejMLO/fees?page=1\",\n        \"pagination\": {\n            \"first\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/B72dSejMLO/fees?page=1\",\n            \"last\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/B72dSejMLO/fees?page=1\"\n        }\n    }\n}"}],"_postman_id":"04ec02d2-5d17-4b0b-860e-e470f41a8eaa"},{"name":"Contacts","id":"f4a1f595-e59a-49e9-83bc-c6825b715783","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/contacts","description":"<p>Information(s) de contact liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","contacts"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"B72dSejMLO","key":"id"}]}},"response":[{"id":"3661c656-fd44-4c23-8f8c-3a38a20789c6","name":"✅ Contacts","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.publidata.io/v2/:instance/events/:id/contacts","host":["https://api.publidata.io"],"path":["v2",":instance","events",":id","contacts"],"variable":[{"key":"instance","value":"500-ans-renaissances"},{"key":"id","value":"B72dSejMLO"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Fri, 16 Nov 2018 08:24:52 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"17da7c7ceaa564fcf911ba220dd6e2af\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"4dbbb49e-6e44-4899-a8b8-e11f24f99666"},{"key":"X-Runtime","value":"0.480368"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"4Ln66c6pKL\",\n            \"type\": \"contact\",\n            \"attributes\": {\n                \"id\": \"4Ln66c6pKL\",\n                \"created_at\": \"2018-11-15T19:00:34Z\",\n                \"updated_at\": \"2018-11-15T19:00:34Z\",\n                \"name\": null,\n                \"value\": \"02 38 24 05 05\",\n                \"opening_hours\": \"24/7\",\n                \"spoken_languages\": [\n                    \"fr\"\n                ],\n                \"contact_type\": \"phone_number\"\n            },\n            \"relationships\": {},\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\",\n                            \"value\",\n                            \"opening_hours\",\n                            \"spoken_languages\",\n                            \"contact_type\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"g7WWWclQP7\",\n            \"type\": \"contact\",\n            \"attributes\": {\n                \"id\": \"g7WWWclQP7\",\n                \"created_at\": \"2018-11-15T19:00:34Z\",\n                \"updated_at\": \"2018-11-15T19:00:34Z\",\n                \"name\": null,\n                \"value\": \"infos@tourisme-orleans.com\",\n                \"opening_hours\": \"24/7\",\n                \"spoken_languages\": [\n                    \"fr\"\n                ],\n                \"contact_type\": \"email\"\n            },\n            \"relationships\": {},\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\",\n                            \"value\",\n                            \"opening_hours\",\n                            \"spoken_languages\",\n                            \"contact_type\"\n                        ]\n                    }\n                ]\n            }\n        }\n    ],\n    \"meta\": {\n        \"items\": 2,\n        \"count\": 2,\n        \"page\": 1\n    },\n    \"links\": {\n        \"self\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/B72dSejMLO/contacts?page=1\",\n        \"pagination\": {\n            \"first\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/B72dSejMLO/contacts?page=1\",\n            \"last\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/B72dSejMLO/contacts?page=1\"\n        }\n    }\n}"}],"_postman_id":"f4a1f595-e59a-49e9-83bc-c6825b715783"},{"name":"Socials","id":"f0217517-2e84-4ecd-8028-c2f1b80e3b76","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/socials","description":"<p>Information(s) sociale(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","socials"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"B72dSejMLO","key":"id"}]}},"response":[{"id":"82bf58db-213e-4956-a25c-0cde6c7def03","name":"✅ Socials","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.publidata.io/v2/:instance/events/:id/socials","host":["https://api.publidata.io"],"path":["v2",":instance","events",":id","socials"],"variable":[{"key":"instance","value":"500-ans-renaissances"},{"key":"id","value":"B72dSejMLO"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Fri, 16 Nov 2018 08:25:46 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"5e9e81364964b5d4a18cce1ab150d637\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"66a66b55-33ab-4b5c-8075-00da06eb66d0"},{"key":"X-Runtime","value":"0.513907"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"0Ly44cYRdx\",\n            \"type\": \"social\",\n            \"attributes\": {\n                \"id\": \"0Ly44cYRdx\",\n                \"created_at\": \"2018-11-15T19:00:34Z\",\n                \"updated_at\": \"2018-11-15T19:00:34Z\",\n                \"name\": null,\n                \"value\": \"https://www.tourisme-orleansmetropole.com/\",\n                \"opening_hours\": \"24/7\",\n                \"spoken_language\": null,\n                \"social_type\": \"website\"\n            },\n            \"relationships\": {},\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\",\n                            \"value\",\n                            \"opening_hours\",\n                            \"spoken_language\",\n                            \"social_type\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"P7r33cw5Yx\",\n            \"type\": \"social\",\n            \"attributes\": {\n                \"id\": \"P7r33cw5Yx\",\n                \"created_at\": \"2018-11-15T19:00:34Z\",\n                \"updated_at\": \"2018-11-15T19:00:34Z\",\n                \"name\": null,\n                \"value\": \"https://www.facebook.com/orleanstourisme\",\n                \"opening_hours\": \"24/7\",\n                \"spoken_language\": null,\n                \"social_type\": \"facebook\"\n            },\n            \"relationships\": {},\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\",\n                            \"value\",\n                            \"opening_hours\",\n                            \"spoken_language\",\n                            \"social_type\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"pVpddcGE6V\",\n            \"type\": \"social\",\n            \"attributes\": {\n                \"id\": \"pVpddcGE6V\",\n                \"created_at\": \"2018-11-15T19:00:34Z\",\n                \"updated_at\": \"2018-11-15T19:00:34Z\",\n                \"name\": null,\n                \"value\": \"https://twitter.com/OrleansOT\",\n                \"opening_hours\": \"24/7\",\n                \"spoken_language\": null,\n                \"social_type\": \"twitter\"\n            },\n            \"relationships\": {},\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\",\n                            \"value\",\n                            \"opening_hours\",\n                            \"spoken_language\",\n                            \"social_type\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"8VOBBcrybL\",\n            \"type\": \"social\",\n            \"attributes\": {\n                \"id\": \"8VOBBcrybL\",\n                \"created_at\": \"2018-11-15T19:00:34Z\",\n                \"updated_at\": \"2018-11-15T19:00:34Z\",\n                \"name\": null,\n                \"value\": \"https://www.instagram.com/orleansvaldeloiretourisme/\",\n                \"opening_hours\": \"24/7\",\n                \"spoken_language\": null,\n                \"social_type\": \"instagram\"\n            },\n            \"relationships\": {},\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\",\n                            \"value\",\n                            \"opening_hours\",\n                            \"spoken_language\",\n                            \"social_type\"\n                        ]\n                    }\n                ]\n            }\n        }\n    ],\n    \"meta\": {\n        \"items\": 4,\n        \"count\": 4,\n        \"page\": 1\n    },\n    \"links\": {\n        \"self\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/B72dSejMLO/socials?page=1\",\n        \"pagination\": {\n            \"first\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/B72dSejMLO/socials?page=1\",\n            \"last\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/B72dSejMLO/socials?page=1\"\n        }\n    }\n}"}],"_postman_id":"f0217517-2e84-4ecd-8028-c2f1b80e3b76"},{"name":"🚧 Public","id":"8d271913-6f7a-4a26-9228-ba9b93189651","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/public","description":"<p>Public associé à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","public"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"B72dSejMLO","key":"id"}]}},"response":[],"_postman_id":"8d271913-6f7a-4a26-9228-ba9b93189651"},{"name":"🚧 Accessibility","id":"741d21cf-ff5c-4164-8a49-6cf16791a42d","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/accessibility","description":"<p>Information(s) d'accessibilité liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","accessibility"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"B72dSejMLO","key":"id"}]}},"response":[],"_postman_id":"741d21cf-ff5c-4164-8a49-6cf16791a42d"},{"name":"Partners","id":"aa508ca2-ac36-4e60-8633-77ed8798073d","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/partners","description":"<p>Partenaire(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","partners"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"B72dSejMLO","key":"id"}]}},"response":[],"_postman_id":"aa508ca2-ac36-4e60-8633-77ed8798073d"},{"name":"🚧 Instances","id":"22ca6f16-aa2b-41a4-80da-73b5f3037f44","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/instances","description":"<p>Instance(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","instances"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"B72dSejMLO","key":"id"}]}},"response":[],"_postman_id":"22ca6f16-aa2b-41a4-80da-73b5f3037f44"},{"name":"Pages","id":"8c4102b9-4357-4b46-8ee1-3e79f155bd65","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/pages","description":"<p>Page(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","pages"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"string","value":"500-ans-renaissances","key":"instance"},{"type":"string","value":"B72dSejMLO","key":"id"}]}},"response":[],"_postman_id":"8c4102b9-4357-4b46-8ee1-3e79f155bd65"},{"name":"🚧 Contributors","id":"abfd0e36-cd99-4bd4-8d7f-827f0f9a4f24","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/contributors","description":"<p>Contributeur(s) / mainteneur(s) de la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","contributors"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"B72dSejMLO","key":"id"}]}},"response":[],"_postman_id":"abfd0e36-cd99-4bd4-8d7f-827f0f9a4f24"}],"id":"cdc0f938-ac5c-4c5d-a611-b5be495dc5fb","_postman_id":"cdc0f938-ac5c-4c5d-a611-b5be495dc5fb","description":""},{"name":"Relations","item":[{"name":"🚧 Relations","id":"43be6c6b-fa88-4896-b338-0ef1798acf86","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/themes","description":"<p>Ressource(s) associée(s) à ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","themes"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"43be6c6b-fa88-4896-b338-0ef1798acf86"},{"name":"Facilities","id":"1f2d1e20-b061-4a44-8b77-4b345d2311a0","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/facilities","description":"<p>Équipement(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","facilities"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"1f2d1e20-b061-4a44-8b77-4b345d2311a0"},{"name":"Cities","id":"d648aa1d-5184-4c4f-b502-a9d8055f196e","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/cities","description":"<p>Commune(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","cities"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"d648aa1d-5184-4c4f-b502-a9d8055f196e"},{"name":"Departments","id":"fcc94c02-00ea-4bef-8a49-076b816e4be8","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/departments","description":"<p>Départements(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","departments"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"fcc94c02-00ea-4bef-8a49-076b816e4be8"},{"name":"Regions","id":"8e52848a-d4a9-474b-a45a-910ee9190e58","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/regions","description":"<p>Région(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","regions"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"8e52848a-d4a9-474b-a45a-910ee9190e58"},{"name":"News","id":"e2c1e205-52fd-44da-b29a-c3ae7afcf25f","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/news","description":"<p>Actualité(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","news"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"e2c1e205-52fd-44da-b29a-c3ae7afcf25f"},{"name":"Events","id":"8034a18d-2ee3-4fdc-b881-6f59ed60a0f5","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/events","description":"<p>Événement(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","events"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"8034a18d-2ee3-4fdc-b881-6f59ed60a0f5"},{"name":"EventGroups","id":"8a3c7ea2-ce7e-4ecb-8bc0-11d631eec9e5","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/event_groups","description":"<p>Groupe(s) d'événement(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","event_groups"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"8a3c7ea2-ce7e-4ecb-8bc0-11d631eec9e5"},{"name":"Projects","id":"e0bdd9ca-2512-42f3-9686-d8b31893f5e6","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/projects","description":"<p>Projet(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","projects"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"e0bdd9ca-2512-42f3-9686-d8b31893f5e6"},{"name":"Performers","id":"ed2d3318-1dc4-4e55-b2a6-e626adf26fbf","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/performers","description":"<p>Artiste(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","performers"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"ed2d3318-1dc4-4e55-b2a6-e626adf26fbf"},{"name":"Companies","id":"b1630286-fdc9-4898-8a25-2cc3637b7f85","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/companies","description":"<p>Entreprise(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","companies"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"b1630286-fdc9-4898-8a25-2cc3637b7f85"},{"name":"NonProfits","id":"368bf86a-172c-4ef0-bf9f-c58f128983b0","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/non_profits","description":"<p>Associations(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","non_profits"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"368bf86a-172c-4ef0-bf9f-c58f128983b0"},{"name":"EtablissementPublics","id":"88c05993-e43a-4806-982f-76541453920a","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/etablissement_publics","description":"<p>Établissement(s) public(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","etablissement_publics"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"88c05993-e43a-4806-982f-76541453920a"},{"name":"Skills","id":"b95268b0-2aab-43ae-834d-8d0dc48bb3fc","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/skills","description":"<p>Compétence(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","skills"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"b95268b0-2aab-43ae-834d-8d0dc48bb3fc"},{"name":"Elects","id":"58b4b257-7d78-4572-9758-ca86010f4609","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/elects","description":"<p>Élus(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","elects"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"58b4b257-7d78-4572-9758-ca86010f4609"}],"id":"6f3377c2-6564-4480-acae-4d7cbd1bd3e5","description":"<p>A venir... 🚧</p>\n","event":[{"listen":"prerequest","script":{"id":"487c0f48-a1cd-4aae-af2f-4b62ccf8bb0b","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"4dfafa06-8884-4b36-9c42-31cba1746986","type":"text/javascript","exec":[""]}}],"_postman_id":"6f3377c2-6564-4480-acae-4d7cbd1bd3e5"},{"name":"Médias","item":[{"name":"🚧 Medias","id":"d5993335-61a6-42ed-8b8b-e3d35a9bdccd","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/medias","description":"<p>Média(s) associé(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","medias"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"d5993335-61a6-42ed-8b8b-e3d35a9bdccd"},{"name":"Images","id":"8c0dd270-f4e0-4a59-ae04-3bd341d2beaa","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/images","description":"<p>Image(s) associée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","images"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"B72dSejMLO","key":"id"}]}},"response":[{"id":"4a5603ae-b08e-4593-9d3a-cc92ce9f171a","name":"✅ Images","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.publidata.io/v2/:instance/events/:id/images","host":["https://api.publidata.io"],"path":["v2",":instance","events",":id","images"],"variable":[{"key":"instance","value":"500-ans-renaissances"},{"key":"id","value":"B72dSejMLO"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Fri, 16 Nov 2018 09:52:16 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"3093e03087524816d0831b5dac8c8b63\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"c8efa769-6028-4254-9043-3eaa6e7768cd"},{"key":"X-Runtime","value":"0.265216"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"DLkzfgXPxa\",\n            \"type\": \"image\",\n            \"attributes\": {\n                \"id\": \"DLkzfgXPxa\",\n                \"created_at\": \"2018-11-15T13:07:06Z\",\n                \"updated_at\": \"2018-11-15T13:07:14Z\",\n                \"role\": \"cover\",\n                \"name\": {\n                    \"fr\": \"Visite Renaissance.JPG\"\n                },\n                \"blurb\": {},\n                \"alt\": {},\n                \"copyright\": {},\n                \"formats\": [\n                    \"avatar_small\",\n                    \"avatar_medium\",\n                    \"avatar_large\",\n                    \"avatar_xlarge\",\n                    \"cover_small\",\n                    \"cover_medium\",\n                    \"cover_large\",\n                    \"cover_xlarge\",\n                    \"logo_small\",\n                    \"logo_medium\",\n                    \"logo_large\",\n                    \"image_small\",\n                    \"image_medium\",\n                    \"image_large\",\n                    \"image_xlarge\",\n                    \"twitter_image\",\n                    \"og_image\",\n                    \"picto_small\",\n                    \"picto_medium\",\n                    \"picto_large\"\n                ]\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"href\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/030/566/original/Visite_Renaissance.JPG?1542287187\"\n            },\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [],\n                \"licenses\": [\n                    {\n                        \"type\": \"Creative Commons Attribution 4.0 International\",\n                        \"SPDX\": \"CC-BY-4.0\",\n                        \"link\": \"https://spdx.org/licenses/CC-BY-4.0.html\",\n                        \"targets\": [\n                            \"role\",\n                            \"name\",\n                            \"blurb\",\n                            \"alt\",\n                            \"copyright\",\n                            \"formats\"\n                        ]\n                    }\n                ]\n            }\n        }\n    ],\n    \"meta\": {\n        \"items\": 1,\n        \"count\": 1,\n        \"page\": 1\n    },\n    \"links\": {\n        \"self\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/B72dSejMLO/images?page=1\",\n        \"pagination\": {\n            \"first\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/B72dSejMLO/images?page=1\",\n            \"last\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/B72dSejMLO/images?page=1\"\n        }\n    }\n}"}],"_postman_id":"8c0dd270-f4e0-4a59-ae04-3bd341d2beaa"},{"name":"Documents","id":"21b78617-fa3d-4735-93ea-79bd9649f7ab","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/documents","description":"<p>Document(s) associé(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","documents"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"B72dSejMLO","key":"id"}]}},"response":[],"_postman_id":"21b78617-fa3d-4735-93ea-79bd9649f7ab"}],"id":"3bedb92a-89ff-413e-baae-ef7109e554b7","_postman_id":"3bedb92a-89ff-413e-baae-ef7109e554b7","description":""}],"id":"56f121fe-949b-4974-bbad-4497bbc7c9c7","description":"<p>Les événements</p>\n","event":[{"listen":"prerequest","script":{"id":"768578b7-1e5d-45b7-ab56-2a8b856f2061","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"a419bb76-510b-4b2b-bc5d-608de7e9b0d3","type":"text/javascript","exec":[""]}}],"_postman_id":"56f121fe-949b-4974-bbad-4497bbc7c9c7"},{"name":"Groupes d'événements","item":[{"name":"Endpoints principaux","item":[{"name":"Index","id":"022c5020-5924-4208-9d25-0620c097cf39","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/event_groups","description":"<p>Liste des événements</p>\n","urlObject":{"path":["v2",":instance","event_groups"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"string","value":"500-ans-renaissances","key":"instance"}]}},"response":[{"id":"609e9a53-3b6b-428f-b951-52e507948ecd","name":"✅ Index","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.publidata.io/v2/:instance/events","host":["https://api.publidata.io"],"path":["v2",":instance","events"],"variable":[{"key":"instance","value":"500-ans-renaissances"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Tue, 06 Nov 2018 14:35:32 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"e272b80759b3239cb223ac313ead9d8a\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"ef157796-c377-4ab4-b340-25fe123f51d3"},{"key":"X-Runtime","value":"0.211831"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"J7dASjXPxB\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"J7dASjXPxB\",\n                \"created_at\": \"2018-11-02T13:36:24Z\",\n                \"updated_at\": \"2018-11-06T14:11:43Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {\n                    \"fr\": \"La 28e édition du Festival International des Jardins abordera un thème cher à la Renaissance.\"\n                },\n                \"name\": {\n                    \"fr\": \"Festival International des Jardins de Chaumont-sur-Loire\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"medium-insert-active\\\"><br></p>\"\n                },\n                \"start_at\": \"2019-04-25T10:00:00Z\",\n                \"end_at\": \"2019-11-03T19:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"y7KpS6Dgxv\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"y7KpS6Dgxv\",\n                \"created_at\": \"2018-10-31T11:26:32Z\",\n                \"updated_at\": \"2018-11-06T10:56:29Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {\n                    \"fr\": \"62eme Colloque International d'études humanistes du centre d'études supérieures de la Renaissance\"\n                },\n                \"name\": {\n                    \"fr\": \"Léonard de Vinci création et innovations \"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"is-active\\\">Le 62ème colloque international d’études humanistes du Centre d’études supérieures de la Renaissance de Tours sera consacré à Léonard de Vinci en 2019.&nbsp;</p><p class=\\\"is-active\\\">Cet événement rassemblera les plus grands spécialistes internationaux du sujet et proposera d’aborder toutes les facettes de l’oeuvre de Léonard sous le prisme de l’invention et de l’innovation : mécanique, médecine, architecture, biomimétisme, etc. Une partie de ce colloque se tiendra dans des lieux marqués par la figure de Léonard de Vinci : le Château du Clos Lucé à Amboise et le Château de Chambord.</p>\"\n                },\n                \"start_at\": \"2019-06-01T00:00:00Z\",\n                \"end_at\": \"2019-06-30T00:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"G7j3SNKzxg\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"G7j3SNKzxg\",\n                \"created_at\": \"2018-10-31T09:20:00Z\",\n                \"updated_at\": \"2018-11-06T10:56:29Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {},\n                \"name\": {\n                    \"fr\": \"Les Borgia à Chinon\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"\\\">La Forteresse royale de Chinon, proposera une reconstitution historique de la venue de César Borgia, fils du pape Alexandre VI pour rencontrer le roi de France à Chinon en 1498 . Reconstitution (cortège équestre). Démonstrations de Calcio Storico (sport florentin de la Renaissance, ancêtre du football actuel…). Dégustations de mets et recettes de la Renaissance florentine. Danses et musiques Renaissance.<br></p>\"\n                },\n                \"start_at\": \"2019-07-21T00:00:00Z\",\n                \"end_at\": \"2019-07-21T00:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"jVJbSWMWVR\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"jVJbSWMWVR\",\n                \"created_at\": \"2018-10-31T08:54:32Z\",\n                \"updated_at\": \"2018-11-06T10:56:28Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {},\n                \"name\": {\n                    \"fr\": \"La renaissance en Val de Loire, en France et en Europe - Festival du film français renaissance\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p>Pour la 21ème édition des Rendez- vous de l’Histoire, le Centre d’Études Supérieures de la Renaissance sera fortement impliqué dans une programmation spécifique « La Renaissance en Val de Loire, en France et en Europe ». Dans le cadre du festival du film français « Renaissance », seront projetés des films historiques accompagnés de moments de réflexion (débats, conférences et ateliers) mettant en perspective la création cinématographique au regard de l’histoire de la peinture historiciste.<br></p>\"\n                },\n                \"start_at\": \"2019-10-01T00:00:00Z\",\n                \"end_at\": \"2019-10-31T00:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"J7dASjXwxB\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"J7dASjXwxB\",\n                \"created_at\": \"2018-10-31T08:42:55Z\",\n                \"updated_at\": \"2018-11-06T10:56:28Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {\n                    \"fr\": \"Parcours numérique, sonore et interactif\"\n                },\n                \"name\": {\n                    \"fr\": \"Renaissance comme Rabelais\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<h3>Parcours numérique, sonore et interactif combinant des moyens techniques innovants capables d’allier  géographie littéraire et géographie réelle. Création d’un parcours sonore géolocalisé à partir d’une application mobile entre La Devinière, maison natale de Rabelais, et l’Abbaye de Seuilly.<br></h3>\"\n                },\n                \"start_at\": \"2019-07-01T00:00:00Z\",\n                \"end_at\": \"2019-10-31T00:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"DVAWS3NQxX\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"DVAWS3NQxX\",\n                \"created_at\": \"2018-10-31T08:34:25Z\",\n                \"updated_at\": \"2018-11-06T10:56:28Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {},\n                \"name\": {\n                    \"fr\": \"Spectacle numérique itinérant Renaissance(S)\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p>Ce spectacle numérique invite le public à s’immerger par le biais des dernières technologies dans un environnement visuel et sonore en plusieurs dimensions. Diverses technologies, de réalité augmentée ou de réalité virtuelle peuvent être détournées par le biais d’une immersion sensori-motrice grâce à une ou plusieurs interfaces visuelles. Ce spectacle proposera une narration dans l’esprit humaniste et novateur de la Renaissance.</p><p>Il évoquera les dimensions créatives, anticipatrices, pluridisciplinaires de Léonard de Vinci, les acteurs, oeuvres, sites patrimoniaux et culturels majeurs du territoire à la Renaissance, le Centre-Val de Loire aujourd’hui et sa projection dans le futur.</p>\"\n                },\n                \"start_at\": \"2019-08-15T19:00:00Z\",\n                \"end_at\": \"2019-09-15T23:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"8VvZS1y0Vv\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"8VvZS1y0Vv\",\n                \"created_at\": \"2018-10-31T08:29:42Z\",\n                \"updated_at\": \"2018-11-06T10:56:28Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {},\n                \"name\": {\n                    \"fr\": \"Magnificences à la cour de France\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"is-active\\\">Ce spectacle de l’ensemble Doulce Mémoire, recrée l’univers d’une fête à la cour de François I<sup>er</sup>, autour de 1515, celles qui virent l’arrivée en France de Léonard de Vinci à l’invitation du roi français. Peintre, inventeur de génie, Léonard était aussi organisateur de fêtes fameuses, dont l’inventivité et la puissance créatrice étaient appréciées les puissants.<br></p>\"\n                },\n                \"start_at\": \"2019-07-23T19:00:00Z\",\n                \"end_at\": \"2019-07-23T23:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"NLwlSvmaVD\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"NLwlSvmaVD\",\n                \"created_at\": \"2018-10-30T16:51:07Z\",\n                \"updated_at\": \"2018-11-06T10:56:27Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {\n                    \"fr\": \"Exposition regroupant des artistes contemporains influencés par Léonard de Vinci et la Renaissance.\"\n                },\n                \"name\": {\n                    \"fr\": \"Hommage contemporain à la Renaissance\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"is-active\\\">Exposition d’artistes contemporains ayant été influencés par Léonard de Vinci et la Renaissance, sur l’exemple de Fabien Merelle, établi à Tours et travaillant sur la scène internationale.&nbsp;</p><p class=\\\"is-active\\\">L’exposition « Hommage à Léonard » transpose dans l’art contemporain l’héritage du maître du Cinquecento mort en Val de Loire il y a 500 ans. Vaste cabinet de curiosités, l’exposition présentée dans les salles historiques du château fait écho au système de pensée&nbsp;<span style=\\\"font-size: 1em; font-family: ProximaNova, Helvetica, Arial, &quot;Sans Serif&quot;;\\\">du Maitre, génie polyvalent où la réalisation ne constitue pas la fin mais le moyen de la réflexion. Conçue comme une sorte de « mise en curiosité » envers les différents apports de Léonard, homme d’esprit universel à l’histoire des arts en Europe, interprétés ou prolongés par différents artistes de notre temps travaillant sur la scène internationale ; l’exposition montre aussi que les échanges entre Italie et France vers 1500, l’italianisme dans les&nbsp;</span><span style=\\\"font-size: 1em; font-family: ProximaNova, Helvetica, Arial, &quot;Sans Serif&quot;;\\\">arts amorcé sous Charles VIII et Louis XII se perpétuent de nos jours, avec les travaux des artistes florentines Antonella Bussanich, Alessandra Capodacqua et Alessandra Ragionier. Comme dans les chapitres d’un livre, chaque salle illustre l’un des thèmes étudiés par Léonard. L’autoportrait / Le portrait / La peinture d’histoire /&nbsp;</span><span style=\\\"font-size: 1em; font-family: ProximaNova, Helvetica, Arial, &quot;Sans Serif&quot;;\\\">Le Paysage / Le codex / La nature morte / Le Portrait féminin / Le Drapé.</span></p>\"\n                },\n                \"start_at\": \"2019-04-01T10:00:00Z\",\n                \"end_at\": \"2019-11-30T18:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"8VOeS416xY\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"8VOeS416xY\",\n                \"created_at\": \"2018-10-29T16:47:42Z\",\n                \"updated_at\": \"2018-11-06T10:56:30Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {\n                    \"fr\": \"Dans le cadre de l'anniversaire des 500ans de la Renaissance, l'artiste Ravo revisite l'oeuvre de François-Guillaume Ménageot \\\"La mort de Léonard de Vinci\\\"\"\n                },\n                \"name\": {\n                    \"fr\": \"Ravo Mattoni invité du Château Royal d' Amboise\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"\\\">Andrea Mattoni alias <b>RAVO</b>, artiste-graffeur italien de son état, a débuté en 2016 un ambitieux projet visant à reproduire, in situ et en très grand format, des chefs-d’œuvre de la peinture classique signés du Caravage, de Delacroix, de Delatour… Profondeur des couleurs, puissance des lignes et de l’échelle, l’hommage de RAVO aux grands maîtres est d’une modernité réjouissante… Le résultat est bluffant.</p><p class=\\\"\\\">De manière à prolonger l’exposition « La Mort de Léonard de Vinci : la construction d’un mythe » préparée avec la BNF, le château royal d’Amboise a demandé à RAVO de réaliser 5 toiles de grandes dimensions (4.5m X 3m). Celles-ci prendront pour sujet des détails du monumental tableau de François-Guillaume Ménageot « La Mort de Léonard de Vinci », et trouveront place sur les murs de la tour cavalière des Minimes, du 2 mai au 2 septembre 2019. Pour honorer cette commande, l’artiste sera en résidence au château royal d’Amboise durant une dizaine de jours, en avril 2019. Il réalisera ses peintures en public.</p><p class=\\\"\\\">Cette exposition est organisée avec le concours de l’association des Ateliers de l’Etoile.</p><p class=\\\"\\\"><span style=\\\"font-size: 1em; font-family: ProximaNova, Helvetica, Arial, &quot;Sans Serif&quot;;\\\"><b>\\\"Exposition « La Mort de Léonard de Vinci : la construction d’un mythe » - Partenariat BNF (Bibliothèque Nationale de France)</b></span><br></p><p class=\\\"\\\">Tous les jours, du 2 mai au 2 septembre 2019.</p><p class=\\\"\\\">La grande exposition intitulée « La Mort de Léonard de Vinci : la construction d’un mythe », articulée autour du monumental tableau (280 cm X 357 cm) de François-Guillaume Ménageot La mort de Léonard de Vinci, et d’une collection de gravures issues des collections nationales, nous éclairera sur la manière dont les contours de l’amitié entre le roi François Ier et Léonard ont été progressivement réécrits par l’Histoire, et assimilés par elle jusqu’à la construction d’un mythe mis au service de l’image de la monarchie française au XVIII<sup>ème</sup> siècle.</p><p>Au cœur de la riche programmation des célébrations du 5ème centenaire, cette exposition majeure viendra aussi rappeler à un public venu des quatre coins du monde la place éternelle qu’occupe Léonard de Vinci en Val de Loire, et à Amboise en particulier où il repose pour l’éternité dans la quiétude de la chapelle du château.\\\"</p>\"\n                },\n                \"start_at\": \"2019-05-02T09:00:00Z\",\n                \"end_at\": \"2019-09-02T18:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"items\": 9,\n        \"count\": 9,\n        \"page\": 1\n    },\n    \"links\": {\n        \"self\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events?page=1\",\n        \"pagination\": {\n            \"first\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events?page=1\",\n            \"last\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events?page=1\"\n        }\n    }\n}"}],"_postman_id":"022c5020-5924-4208-9d25-0620c097cf39"},{"name":"Show","id":"32252620-d990-41d4-b16f-9cb032d60339","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/{{instance_id}}/event_groups/:id","description":"<p>Détail d'un événement</p>\n","urlObject":{"path":["v2","{{instance_id}}","event_groups",":id"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"string","value":"y7KpS6Dgxv","key":"id"}]}},"response":[{"id":"2e43820c-9b9f-47ff-b760-b4ee7977f406","name":"✅ Show","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.publidata.io/v2/{{instance_id}}/events/:id","host":["https://api.publidata.io"],"path":["v2","{{instance_id}}","events",":id"],"variable":[{"key":"id","value":"y7KpS6Dgxv"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Tue, 06 Nov 2018 14:50:05 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"811c246d37cc926cc75bf582cd364fb3\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"d619c237-6f78-4100-9d77-b11aa3b6dc53"},{"key":"X-Runtime","value":"0.051868"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"y7KpS6Dgxv\",\n        \"type\": \"event\",\n        \"attributes\": {\n            \"id\": \"y7KpS6Dgxv\",\n            \"created_at\": \"2018-10-31T11:26:32Z\",\n            \"updated_at\": \"2018-11-06T10:56:29Z\",\n            \"cancelled\": false,\n            \"cancellation_reason\": null,\n            \"free_admission\": null,\n            \"free_admission_condition\": null,\n            \"punchline\": {\n                \"fr\": \"62eme Colloque International d'études humanistes du centre d'études supérieures de la Renaissance\"\n            },\n            \"name\": {\n                \"fr\": \"Léonard de Vinci création et innovations \"\n            },\n            \"blurb\": {\n                \"fr\": \"<p class=\\\"is-active\\\">Le 62ème colloque international d’études humanistes du Centre d’études supérieures de la Renaissance de Tours sera consacré à Léonard de Vinci en 2019.&nbsp;</p><p class=\\\"is-active\\\">Cet événement rassemblera les plus grands spécialistes internationaux du sujet et proposera d’aborder toutes les facettes de l’oeuvre de Léonard sous le prisme de l’invention et de l’innovation : mécanique, médecine, architecture, biomimétisme, etc. Une partie de ce colloque se tiendra dans des lieux marqués par la figure de Léonard de Vinci : le Château du Clos Lucé à Amboise et le Château de Chambord.</p>\"\n            },\n            \"start_at\": \"2019-06-01T00:00:00Z\",\n            \"end_at\": \"2019-06-30T00:00:00Z\"\n        },\n        \"relationships\": {},\n        \"links\": {\n            \"self\": {\n                \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv\"\n            },\n            \"relations\": {\n                \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/cities\",\n                \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/companies\",\n                \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/departments\",\n                \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/elects\",\n                \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/etablissement_publics\",\n                \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/event_groups\",\n                \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/events\",\n                \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/facilities\",\n                \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/news\",\n                \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/non_profits\",\n                \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/performers\",\n                \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/projects\",\n                \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/regions\",\n                \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/skills\"\n            },\n            \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/images\",\n            \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/documents\",\n            \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates\",\n            \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/type\",\n            \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/types\"\n        },\n        \"meta\": {\n            \"licenses\": [\n                {\n                    \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                    \"SPDX\": \"ODbL-1.0\",\n                    \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                    \"targets\": [\n                        \"cancelled\",\n                        \"cancellation_reason\",\n                        \"free_admission\",\n                        \"free_admission_condition\",\n                        \"punchline\",\n                        \"name\",\n                        \"blurb\",\n                        \"start_at\",\n                        \"end_at\"\n                    ]\n                }\n            ],\n            \"instances\": {\n                \"500-ans-renaissances\": [\n                    \"fr\"\n                ]\n            }\n        }\n    }\n}"}],"_postman_id":"32252620-d990-41d4-b16f-9cb032d60339"},{"name":"Search","id":"5cf9bd2f-8b3b-43bb-8b62-105a1a9537a1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/event_groups/?q=Sénart&size=10&page=1&marker=false&instances[]=2&types[]=Event&performers[]=Nakht&facilities[]=8&events[]=1&event_groups[]=1&news[]=1&projects[]=1&cities[]=7&etablissement_publics[]=1&departments[]=1&regions[]=1&skills[]=1&elects[]=1&bbox[]","description":"<p>Recherche d'événements : 🚧 à venir... </p>\n","urlObject":{"path":["v2",":instance","event_groups",""],"host":["https://api.publidata.io"],"query":[{"description":{"content":"<p>Filtre textuel</p>\n","type":"text/plain"},"key":"q","value":"Sénart"},{"description":{"content":"<p>Nombre de résultats retournés (defaut: 10)</p>\n","type":"text/plain"},"key":"size","value":"10"},{"description":{"content":"<p>Pagination (defaut: 1)</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>Filtre booléen pour ne retourner que les locations (default: false)</p>\n","type":"text/plain"},"key":"marker","value":"false"},{"description":{"content":"<p>Filtre par instance (array d'id)</p>\n","type":"text/plain"},"key":"instances[]","value":"2"},{"description":{"content":"<p>Filtre par type de ressource (array de type parmi la liste suivante : News Event Facility Project City Epci Department Region EventGroup Skill Elect Performer Company NonProfit EtablissementPublic)</p>\n","type":"text/plain"},"key":"types[]","value":"Event"},{"description":{"content":"<p>Filtre par artiste lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"performers[]","value":"Nakht"},{"description":{"content":"<p>Filtre par équipement lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"facilities[]","value":"8"},{"description":{"content":"<p>Filtre par événement lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"events[]","value":"1"},{"description":{"content":"<p>Filtre par groupe d'événements lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"event_groups[]","value":"1"},{"description":{"content":"<p>Filtre par actualité liée (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"news[]","value":"1"},{"description":{"content":"<p>Filtre par projet lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"projects[]","value":"1"},{"description":{"content":"<p>Filtre par ville et location liées (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"cities[]","value":"7"},{"description":{"content":"<p>Filtre par établissement public lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"etablissement_publics[]","value":"1"},{"description":{"content":"<p>Filtre par departement lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"departments[]","value":"1"},{"description":{"content":"<p>Filtre par region liée (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"regions[]","value":"1"},{"description":{"content":"<p>Filtre par compétence liée (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"skills[]","value":"1"},{"description":{"content":"<p>Filtre par élu lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"elects[]","value":"1"},{"description":{"content":"<p>Filtre géographique (array de latitudes, longitudes dans l'ordre suivant minX, minY, maxX, maxY)</p>\n","type":"text/plain"},"key":"bbox[]","value":null}],"variable":[{"type":"string","value":"500-ans-renaissances","key":"instance"}]}},"response":[{"id":"67b39f55-c66e-4706-9871-f984f568ab75","name":"Search events","originalRequest":{"method":"GET","header":[],"url":{"raw":"www.publidata.io/api/v1/events?q=&options[geo][top_left][lat]=49.05965195372349&options[geo][top_left][lon]=2.1371613664061897&options[geo][bottom_right][lat]=48.21570798955211&options[geo][bottom_right][lon]=2.7688752335936897&options[city]=Combs-la-Ville&options[paging][from]=0&options[event_types][]=Concert&options[dates][start_date]=1521812100000&options[dates][end_date]=1522499700000&options[instances][]=2","host":["www","publidata","io"],"path":["api","v1","events"],"query":[{"key":"q","value":"","description":"Recherche (full-text)"},{"key":"options[geo][top_left][lat]","value":"49.05965195372349","description":"Latitude coin supérieur gauche geo-box (lat)"},{"key":"options[geo][top_left][lon]","value":"2.1371613664061897","description":"Longitude coin supérieur gauche geo-box (lon)"},{"key":"options[geo][bottom_right][lat]","value":"48.21570798955211","description":"Latitude coin inférieur droit geo-box (lat)"},{"key":"options[geo][bottom_right][lon]","value":"2.7688752335936897","description":"Longitude coin inférieur droit geo-box (lon)"},{"key":"options[city]","value":"Combs-la-Ville","description":"Ville (full-text ou code postal)"},{"key":"options[paging][from]","value":"0","description":"Début de la pagination (integer)"},{"key":"options[event_types][]","value":"Concert","description":"Types d'événement (array de string)"},{"key":"options[dates][start_date]","value":"1521812100000","description":"Date de début (format timestamp unix 1508267068688)"},{"key":"options[dates][end_date]","value":"1522499700000","description":"Date de fin (format timestamp unix 1539803068688)"},{"key":"options[instances][]","value":"2"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"took\": 11,\n    \"timed_out\": false,\n    \"_shards\": {\n        \"total\": 1,\n        \"successful\": 1,\n        \"failed\": 0\n    },\n    \"hits\": {\n        \"total\": 2,\n        \"max_score\": 0.9812665,\n        \"hits\": [\n            {\n                \"_index\": \"events\",\n                \"_type\": \"event\",\n                \"_id\": \"3241\",\n                \"_score\": 0.9812665,\n                \"_source\": {\n                    \"id\": 3241,\n                    \"name\": \"Concert des orchestres\",\n                    \"slug\": \"concert-des-orchestres\",\n                    \"status\": \"published\",\n                    \"free_admission\": true,\n                    \"start_date\": \"2018-03-23T00:00:00.000+01:00\",\n                    \"end_date\": \"2018-03-23T00:00:00.000+01:00\",\n                    \"punchline\": \"Le vendredi 23 mars 2018 à 20h au Théâtre de la Coupole, les musiciens du Conservatoire Maurice Ohana de Combs-la-ville vous attendent pour leur rendez-vous annuel...\",\n                    \"blurb\": \"Cette soirée donne la possibilité à plusieurs formations orchestrales du conservatoire Maurice Ohana de se produire sur scène. \\r\\n\\r\\nProgramme musical éclectique et varié, ce concert  permet de vivre la musique ensemble et de la partager sans modération avec le public.\",\n                    \"linked_objects\": [\n                        {\n                            \"id\": 180,\n                            \"type\": \"Facility\",\n                            \"name\": \"La Coupole\"\n                        },\n                        {\n                            \"id\": 12,\n                            \"type\": \"City\",\n                            \"name\": \"Combs-la-Ville\"\n                        }\n                    ],\n                    \"cover_picture\": {\n                        \"id\": 22632,\n                        \"name\": \"image de couverture de Concert des orchestres\",\n                        \"alt\": \"image de couverture de Concert des orchestres\",\n                        \"description\": \"image de couverture de Concert des orchestres\",\n                        \"slug\": null,\n                        \"image_urls_as_json\": {\n                            \"image_original_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/632/original/open-uri20171002-4-1etqlbo?1506962457\",\n                            \"image_small_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/632/image_small/open-uri20171002-4-1etqlbo?1506962457\",\n                            \"image_medium_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/632/image_medium/open-uri20171002-4-1etqlbo?1506962457\",\n                            \"image_large_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/632/image_large/open-uri20171002-4-1etqlbo?1506962457\"\n                        }\n                    },\n                    \"instances\": [\n                        {\n                            \"id\": 2,\n                            \"slug\": \"portail-sortir-gps\"\n                        }\n                    ],\n                    \"event_type\": {\n                        \"id\": 13,\n                        \"name\": \"Concert\"\n                    },\n                    \"event_styles\": [\n                        {\n                            \"id\": 82,\n                            \"name\": \"World Music\"\n                        }\n                    ],\n                    \"event_dates\": [\n                        {\n                            \"id\": 37799,\n                            \"start_hour\": \"2000-01-01T20:00:00.000Z\",\n                            \"end_hour\": \"2000-01-01T22:00:00.000Z\",\n                            \"date\": \"2018-03-23T00:00:00.000+01:00\",\n                            \"sold_out\": false,\n                            \"start_date\": \"2018-03-23T20:00:00.000+00:00\",\n                            \"end_date\": \"2018-03-23T22:00:00.000+00:00\"\n                        }\n                    ],\n                    \"facilities\": [\n                        {\n                            \"id\": 180,\n                            \"name\": \"La Coupole\",\n                            \"slug\": \"la-coupole\",\n                            \"address\": \"Rue Jean François Millet, 77380 Combs-la-Ville, France\",\n                            \"location\": {\n                                \"lat\": 48.659695,\n                                \"lon\": 2.5662415\n                            }\n                        }\n                    ],\n                    \"locations\": [],\n                    \"fees\": [],\n                    \"tags\": [],\n                    \"pages\": [\n                        {\n                            \"id\": 7659,\n                            \"instance\": {\n                                \"id\": 2,\n                                \"slug\": \"portail-sortir-gps\"\n                            }\n                        }\n                    ]\n                }\n            },\n            {\n                \"_index\": \"events\",\n                \"_type\": \"event\",\n                \"_id\": \"3983\",\n                \"_score\": 0.9794048,\n                \"_source\": {\n                    \"id\": 3983,\n                    \"name\": \"Après-midi musicale: Claude Debussy\",\n                    \"slug\": \"apres-midi-musicale-claude-debussy\",\n                    \"status\": \"published\",\n                    \"free_admission\": true,\n                    \"start_date\": \"2018-03-24T00:00:00.000+01:00\",\n                    \"end_date\": \"2018-03-24T00:00:00.000+01:00\",\n                    \"punchline\": \"A l'occasion du centenaire de la mort de Claude Debussy, la media-ludothèque et le conservatoire Maurice Ohana vous invitent à une après-midi musical, le samedi 24 mars à partir de 15h30.\",\n                    \"blurb\": \"Claude Debussy (1862-1918) était un compositeur français. Pour célébrer son centenaire, nous vous invitons à un après-midi musical. Au programme, une conférence par Bruno Giner sur le compositeur à 15h30. \\r\\nPuis, à 18h, les élèves du conservatoire interpréteront une sélection d’œuvres de Claude Debussy.\",\n                    \"linked_objects\": [\n                        {\n                            \"id\": 42,\n                            \"type\": \"Facility\",\n                            \"name\": \"Médiathèque de Combs-la-Ville\"\n                        },\n                        {\n                            \"id\": 12,\n                            \"type\": \"City\",\n                            \"name\": \"Combs-la-Ville\"\n                        }\n                    ],\n                    \"cover_picture\": {\n                        \"id\": 24665,\n                        \"name\": \"image de couverture de Après-midi musicale: Claude Debussy\",\n                        \"alt\": \"image de couverture de Après-midi musicale: Claude Debussy\",\n                        \"description\": \"image de couverture de Après-midi musicale: Claude Debussy\",\n                        \"slug\": null,\n                        \"image_urls_as_json\": {\n                            \"image_original_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/665/original/Photo_23a_Claude_Debussy.jpg?1516441408\",\n                            \"image_small_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/665/image_small/Photo_23a_Claude_Debussy.jpg?1516441408\",\n                            \"image_medium_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/665/image_medium/Photo_23a_Claude_Debussy.jpg?1516441408\",\n                            \"image_large_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/665/image_large/Photo_23a_Claude_Debussy.jpg?1516441408\"\n                        }\n                    },\n                    \"instances\": [\n                        {\n                            \"id\": 2,\n                            \"slug\": \"portail-sortir-gps\"\n                        }\n                    ],\n                    \"event_type\": {\n                        \"id\": 13,\n                        \"name\": \"Concert\"\n                    },\n                    \"event_styles\": [\n                        {\n                            \"id\": 111,\n                            \"name\": \"Musique Classique\"\n                        }\n                    ],\n                    \"event_dates\": [\n                        {\n                            \"id\": 41100,\n                            \"start_hour\": \"2000-01-01T15:30:00.000Z\",\n                            \"end_hour\": \"2000-01-01T19:30:00.000Z\",\n                            \"date\": \"2018-03-24T00:00:00.000+01:00\",\n                            \"sold_out\": false,\n                            \"start_date\": \"2018-03-24T15:30:00.000+00:00\",\n                            \"end_date\": \"2018-03-24T19:30:00.000+00:00\"\n                        }\n                    ],\n                    \"facilities\": [\n                        {\n                            \"id\": 42,\n                            \"name\": \"Médiathèque de Combs-la-Ville\",\n                            \"slug\": \"mediatheque-de-combs-la-ville\",\n                            \"address\": \"Rue Jean François Millet, 77380 Combs-la-Ville, France\",\n                            \"location\": {\n                                \"lat\": 48.659695,\n                                \"lon\": 2.5662415\n                            }\n                        }\n                    ],\n                    \"locations\": [],\n                    \"fees\": [],\n                    \"accessibility\": {\n                        \"id\": 1766,\n                        \"deaf_lsf\": false,\n                        \"deaf_vision_based\": false,\n                        \"deaf_subtitle\": false,\n                        \"deaf_hearing_loop\": false,\n                        \"blind_audio_description\": false,\n                        \"blind_darkness_based\": false,\n                        \"blind_text_based\": false,\n                        \"blind_braille\": false,\n                        \"blind_large_print\": false,\n                        \"motor_disabled_access\": true,\n                        \"has_accessibility\": true,\n                        \"has_deaf_accessibility\": false,\n                        \"has_blind_accessibility\": false\n                    },\n                    \"tags\": [\n                        \"Culture\"\n                    ],\n                    \"pages\": [\n                        {\n                            \"id\": 8636,\n                            \"instance\": {\n                                \"id\": 2,\n                                \"slug\": \"portail-sortir-gps\"\n                            }\n                        }\n                    ]\n                }\n            }\n        ]\n    },\n    \"aggregations\": {\n        \"event_styles_terms_agg\": {\n            \"doc_count\": 2,\n            \"name\": {\n                \"doc_count_error_upper_bound\": 0,\n                \"sum_other_doc_count\": 0,\n                \"buckets\": [\n                    {\n                        \"key\": \"111\",\n                        \"doc_count\": 1,\n                        \"name\": {\n                            \"doc_count_error_upper_bound\": 0,\n                            \"sum_other_doc_count\": 0,\n                            \"buckets\": [\n                                {\n                                    \"key\": \"classique\",\n                                    \"doc_count\": 1\n                                },\n                                {\n                                    \"key\": \"musique\",\n                                    \"doc_count\": 1\n                                }\n                            ]\n                        }\n                    },\n                    {\n                        \"key\": \"82\",\n                        \"doc_count\": 1,\n                        \"name\": {\n                            \"doc_count_error_upper_bound\": 0,\n                            \"sum_other_doc_count\": 0,\n                            \"buckets\": [\n                                {\n                                    \"key\": \"music\",\n                                    \"doc_count\": 1\n                                },\n                                {\n                                    \"key\": \"world\",\n                                    \"doc_count\": 1\n                                }\n                            ]\n                        }\n                    }\n                ]\n            }\n        },\n        \"events\": {\n            \"doc_count\": 3838,\n            \"dates\": {\n                \"doc_count\": 11064,\n                \"this_month\": {\n                    \"doc_count\": 737,\n                    \"events\": {\n                        \"doc_count\": 278\n                    }\n                },\n                \"this_week_end\": {\n                    \"doc_count\": 81,\n                    \"events\": {\n                        \"doc_count\": 54\n                    }\n                },\n                \"past\": {\n                    \"doc_count\": 10070,\n                    \"events\": {\n                        \"doc_count\": 3132\n                    }\n                },\n                \"today\": {\n                    \"doc_count\": 34,\n                    \"events\": {\n                        \"doc_count\": 28\n                    }\n                },\n                \"tomorrow\": {\n                    \"doc_count\": 22,\n                    \"events\": {\n                        \"doc_count\": 19\n                    }\n                },\n                \"last_days\": {\n                    \"doc_count\": 133,\n                    \"events\": {\n                        \"doc_count\": 75\n                    }\n                },\n                \"upcoming\": {\n                    \"doc_count\": 1028,\n                    \"events\": {\n                        \"doc_count\": 390\n                    }\n                },\n                \"this_week\": {\n                    \"doc_count\": 197,\n                    \"events\": {\n                        \"doc_count\": 96\n                    }\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"5cf9bd2f-8b3b-43bb-8b62-105a1a9537a1"}],"id":"eb47d262-e696-470b-b54d-b76bd4445a15","_postman_id":"eb47d262-e696-470b-b54d-b76bd4445a15","description":""}],"id":"215036be-d3cc-4803-aa34-96f3945a950c","description":"<p>Les événements</p>\n","event":[{"listen":"prerequest","script":{"id":"768578b7-1e5d-45b7-ab56-2a8b856f2061","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"a419bb76-510b-4b2b-bc5d-608de7e9b0d3","type":"text/javascript","exec":[""]}}],"_postman_id":"215036be-d3cc-4803-aa34-96f3945a950c"},{"name":"Actualités","item":[{"name":"Endpoints principaux","item":[{"name":"Index","id":"4ef37d93-795f-45f3-a70c-0ac0262dd33d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/news","description":"<p>Liste des événements</p>\n","urlObject":{"path":["v2",":instance","news"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"string","value":"500-ans-renaissances","key":"instance"}]}},"response":[{"id":"9c3e5c57-b3af-4bd8-9cda-6edbb52ca187","name":"✅ Index","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.publidata.io/v2/:instance/events","host":["https://api.publidata.io"],"path":["v2",":instance","events"],"variable":[{"key":"instance","value":"500-ans-renaissances"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Tue, 06 Nov 2018 14:35:32 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"e272b80759b3239cb223ac313ead9d8a\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"ef157796-c377-4ab4-b340-25fe123f51d3"},{"key":"X-Runtime","value":"0.211831"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"J7dASjXPxB\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"J7dASjXPxB\",\n                \"created_at\": \"2018-11-02T13:36:24Z\",\n                \"updated_at\": \"2018-11-06T14:11:43Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {\n                    \"fr\": \"La 28e édition du Festival International des Jardins abordera un thème cher à la Renaissance.\"\n                },\n                \"name\": {\n                    \"fr\": \"Festival International des Jardins de Chaumont-sur-Loire\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"medium-insert-active\\\"><br></p>\"\n                },\n                \"start_at\": \"2019-04-25T10:00:00Z\",\n                \"end_at\": \"2019-11-03T19:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"y7KpS6Dgxv\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"y7KpS6Dgxv\",\n                \"created_at\": \"2018-10-31T11:26:32Z\",\n                \"updated_at\": \"2018-11-06T10:56:29Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {\n                    \"fr\": \"62eme Colloque International d'études humanistes du centre d'études supérieures de la Renaissance\"\n                },\n                \"name\": {\n                    \"fr\": \"Léonard de Vinci création et innovations \"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"is-active\\\">Le 62ème colloque international d’études humanistes du Centre d’études supérieures de la Renaissance de Tours sera consacré à Léonard de Vinci en 2019.&nbsp;</p><p class=\\\"is-active\\\">Cet événement rassemblera les plus grands spécialistes internationaux du sujet et proposera d’aborder toutes les facettes de l’oeuvre de Léonard sous le prisme de l’invention et de l’innovation : mécanique, médecine, architecture, biomimétisme, etc. Une partie de ce colloque se tiendra dans des lieux marqués par la figure de Léonard de Vinci : le Château du Clos Lucé à Amboise et le Château de Chambord.</p>\"\n                },\n                \"start_at\": \"2019-06-01T00:00:00Z\",\n                \"end_at\": \"2019-06-30T00:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"G7j3SNKzxg\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"G7j3SNKzxg\",\n                \"created_at\": \"2018-10-31T09:20:00Z\",\n                \"updated_at\": \"2018-11-06T10:56:29Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {},\n                \"name\": {\n                    \"fr\": \"Les Borgia à Chinon\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"\\\">La Forteresse royale de Chinon, proposera une reconstitution historique de la venue de César Borgia, fils du pape Alexandre VI pour rencontrer le roi de France à Chinon en 1498 . Reconstitution (cortège équestre). Démonstrations de Calcio Storico (sport florentin de la Renaissance, ancêtre du football actuel…). Dégustations de mets et recettes de la Renaissance florentine. Danses et musiques Renaissance.<br></p>\"\n                },\n                \"start_at\": \"2019-07-21T00:00:00Z\",\n                \"end_at\": \"2019-07-21T00:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"jVJbSWMWVR\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"jVJbSWMWVR\",\n                \"created_at\": \"2018-10-31T08:54:32Z\",\n                \"updated_at\": \"2018-11-06T10:56:28Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {},\n                \"name\": {\n                    \"fr\": \"La renaissance en Val de Loire, en France et en Europe - Festival du film français renaissance\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p>Pour la 21ème édition des Rendez- vous de l’Histoire, le Centre d’Études Supérieures de la Renaissance sera fortement impliqué dans une programmation spécifique « La Renaissance en Val de Loire, en France et en Europe ». Dans le cadre du festival du film français « Renaissance », seront projetés des films historiques accompagnés de moments de réflexion (débats, conférences et ateliers) mettant en perspective la création cinématographique au regard de l’histoire de la peinture historiciste.<br></p>\"\n                },\n                \"start_at\": \"2019-10-01T00:00:00Z\",\n                \"end_at\": \"2019-10-31T00:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"J7dASjXwxB\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"J7dASjXwxB\",\n                \"created_at\": \"2018-10-31T08:42:55Z\",\n                \"updated_at\": \"2018-11-06T10:56:28Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {\n                    \"fr\": \"Parcours numérique, sonore et interactif\"\n                },\n                \"name\": {\n                    \"fr\": \"Renaissance comme Rabelais\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<h3>Parcours numérique, sonore et interactif combinant des moyens techniques innovants capables d’allier  géographie littéraire et géographie réelle. Création d’un parcours sonore géolocalisé à partir d’une application mobile entre La Devinière, maison natale de Rabelais, et l’Abbaye de Seuilly.<br></h3>\"\n                },\n                \"start_at\": \"2019-07-01T00:00:00Z\",\n                \"end_at\": \"2019-10-31T00:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"DVAWS3NQxX\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"DVAWS3NQxX\",\n                \"created_at\": \"2018-10-31T08:34:25Z\",\n                \"updated_at\": \"2018-11-06T10:56:28Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {},\n                \"name\": {\n                    \"fr\": \"Spectacle numérique itinérant Renaissance(S)\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p>Ce spectacle numérique invite le public à s’immerger par le biais des dernières technologies dans un environnement visuel et sonore en plusieurs dimensions. Diverses technologies, de réalité augmentée ou de réalité virtuelle peuvent être détournées par le biais d’une immersion sensori-motrice grâce à une ou plusieurs interfaces visuelles. Ce spectacle proposera une narration dans l’esprit humaniste et novateur de la Renaissance.</p><p>Il évoquera les dimensions créatives, anticipatrices, pluridisciplinaires de Léonard de Vinci, les acteurs, oeuvres, sites patrimoniaux et culturels majeurs du territoire à la Renaissance, le Centre-Val de Loire aujourd’hui et sa projection dans le futur.</p>\"\n                },\n                \"start_at\": \"2019-08-15T19:00:00Z\",\n                \"end_at\": \"2019-09-15T23:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"8VvZS1y0Vv\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"8VvZS1y0Vv\",\n                \"created_at\": \"2018-10-31T08:29:42Z\",\n                \"updated_at\": \"2018-11-06T10:56:28Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {},\n                \"name\": {\n                    \"fr\": \"Magnificences à la cour de France\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"is-active\\\">Ce spectacle de l’ensemble Doulce Mémoire, recrée l’univers d’une fête à la cour de François I<sup>er</sup>, autour de 1515, celles qui virent l’arrivée en France de Léonard de Vinci à l’invitation du roi français. Peintre, inventeur de génie, Léonard était aussi organisateur de fêtes fameuses, dont l’inventivité et la puissance créatrice étaient appréciées les puissants.<br></p>\"\n                },\n                \"start_at\": \"2019-07-23T19:00:00Z\",\n                \"end_at\": \"2019-07-23T23:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"NLwlSvmaVD\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"NLwlSvmaVD\",\n                \"created_at\": \"2018-10-30T16:51:07Z\",\n                \"updated_at\": \"2018-11-06T10:56:27Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {\n                    \"fr\": \"Exposition regroupant des artistes contemporains influencés par Léonard de Vinci et la Renaissance.\"\n                },\n                \"name\": {\n                    \"fr\": \"Hommage contemporain à la Renaissance\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"is-active\\\">Exposition d’artistes contemporains ayant été influencés par Léonard de Vinci et la Renaissance, sur l’exemple de Fabien Merelle, établi à Tours et travaillant sur la scène internationale.&nbsp;</p><p class=\\\"is-active\\\">L’exposition « Hommage à Léonard » transpose dans l’art contemporain l’héritage du maître du Cinquecento mort en Val de Loire il y a 500 ans. Vaste cabinet de curiosités, l’exposition présentée dans les salles historiques du château fait écho au système de pensée&nbsp;<span style=\\\"font-size: 1em; font-family: ProximaNova, Helvetica, Arial, &quot;Sans Serif&quot;;\\\">du Maitre, génie polyvalent où la réalisation ne constitue pas la fin mais le moyen de la réflexion. Conçue comme une sorte de « mise en curiosité » envers les différents apports de Léonard, homme d’esprit universel à l’histoire des arts en Europe, interprétés ou prolongés par différents artistes de notre temps travaillant sur la scène internationale ; l’exposition montre aussi que les échanges entre Italie et France vers 1500, l’italianisme dans les&nbsp;</span><span style=\\\"font-size: 1em; font-family: ProximaNova, Helvetica, Arial, &quot;Sans Serif&quot;;\\\">arts amorcé sous Charles VIII et Louis XII se perpétuent de nos jours, avec les travaux des artistes florentines Antonella Bussanich, Alessandra Capodacqua et Alessandra Ragionier. Comme dans les chapitres d’un livre, chaque salle illustre l’un des thèmes étudiés par Léonard. L’autoportrait / Le portrait / La peinture d’histoire /&nbsp;</span><span style=\\\"font-size: 1em; font-family: ProximaNova, Helvetica, Arial, &quot;Sans Serif&quot;;\\\">Le Paysage / Le codex / La nature morte / Le Portrait féminin / Le Drapé.</span></p>\"\n                },\n                \"start_at\": \"2019-04-01T10:00:00Z\",\n                \"end_at\": \"2019-11-30T18:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"8VOeS416xY\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"8VOeS416xY\",\n                \"created_at\": \"2018-10-29T16:47:42Z\",\n                \"updated_at\": \"2018-11-06T10:56:30Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {\n                    \"fr\": \"Dans le cadre de l'anniversaire des 500ans de la Renaissance, l'artiste Ravo revisite l'oeuvre de François-Guillaume Ménageot \\\"La mort de Léonard de Vinci\\\"\"\n                },\n                \"name\": {\n                    \"fr\": \"Ravo Mattoni invité du Château Royal d' Amboise\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"\\\">Andrea Mattoni alias <b>RAVO</b>, artiste-graffeur italien de son état, a débuté en 2016 un ambitieux projet visant à reproduire, in situ et en très grand format, des chefs-d’œuvre de la peinture classique signés du Caravage, de Delacroix, de Delatour… Profondeur des couleurs, puissance des lignes et de l’échelle, l’hommage de RAVO aux grands maîtres est d’une modernité réjouissante… Le résultat est bluffant.</p><p class=\\\"\\\">De manière à prolonger l’exposition « La Mort de Léonard de Vinci : la construction d’un mythe » préparée avec la BNF, le château royal d’Amboise a demandé à RAVO de réaliser 5 toiles de grandes dimensions (4.5m X 3m). Celles-ci prendront pour sujet des détails du monumental tableau de François-Guillaume Ménageot « La Mort de Léonard de Vinci », et trouveront place sur les murs de la tour cavalière des Minimes, du 2 mai au 2 septembre 2019. Pour honorer cette commande, l’artiste sera en résidence au château royal d’Amboise durant une dizaine de jours, en avril 2019. Il réalisera ses peintures en public.</p><p class=\\\"\\\">Cette exposition est organisée avec le concours de l’association des Ateliers de l’Etoile.</p><p class=\\\"\\\"><span style=\\\"font-size: 1em; font-family: ProximaNova, Helvetica, Arial, &quot;Sans Serif&quot;;\\\"><b>\\\"Exposition « La Mort de Léonard de Vinci : la construction d’un mythe » - Partenariat BNF (Bibliothèque Nationale de France)</b></span><br></p><p class=\\\"\\\">Tous les jours, du 2 mai au 2 septembre 2019.</p><p class=\\\"\\\">La grande exposition intitulée « La Mort de Léonard de Vinci : la construction d’un mythe », articulée autour du monumental tableau (280 cm X 357 cm) de François-Guillaume Ménageot La mort de Léonard de Vinci, et d’une collection de gravures issues des collections nationales, nous éclairera sur la manière dont les contours de l’amitié entre le roi François Ier et Léonard ont été progressivement réécrits par l’Histoire, et assimilés par elle jusqu’à la construction d’un mythe mis au service de l’image de la monarchie française au XVIII<sup>ème</sup> siècle.</p><p>Au cœur de la riche programmation des célébrations du 5ème centenaire, cette exposition majeure viendra aussi rappeler à un public venu des quatre coins du monde la place éternelle qu’occupe Léonard de Vinci en Val de Loire, et à Amboise en particulier où il repose pour l’éternité dans la quiétude de la chapelle du château.\\\"</p>\"\n                },\n                \"start_at\": \"2019-05-02T09:00:00Z\",\n                \"end_at\": \"2019-09-02T18:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"items\": 9,\n        \"count\": 9,\n        \"page\": 1\n    },\n    \"links\": {\n        \"self\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events?page=1\",\n        \"pagination\": {\n            \"first\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events?page=1\",\n            \"last\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events?page=1\"\n        }\n    }\n}"}],"_postman_id":"4ef37d93-795f-45f3-a70c-0ac0262dd33d"},{"name":"Show","id":"044d713d-82a6-41b7-a80d-41faaebb4522","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/{{instance_id}}/news/:id","description":"<p>Détail d'un événement</p>\n","urlObject":{"path":["v2","{{instance_id}}","news",":id"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"string","value":"y7KpS6Dgxv","key":"id"}]}},"response":[{"id":"416e5216-8d8b-439c-bb5f-ba34d61ab197","name":"✅ Show","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.publidata.io/v2/{{instance_id}}/events/:id","host":["https://api.publidata.io"],"path":["v2","{{instance_id}}","events",":id"],"variable":[{"key":"id","value":"y7KpS6Dgxv"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Tue, 06 Nov 2018 14:50:05 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"811c246d37cc926cc75bf582cd364fb3\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"d619c237-6f78-4100-9d77-b11aa3b6dc53"},{"key":"X-Runtime","value":"0.051868"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"y7KpS6Dgxv\",\n        \"type\": \"event\",\n        \"attributes\": {\n            \"id\": \"y7KpS6Dgxv\",\n            \"created_at\": \"2018-10-31T11:26:32Z\",\n            \"updated_at\": \"2018-11-06T10:56:29Z\",\n            \"cancelled\": false,\n            \"cancellation_reason\": null,\n            \"free_admission\": null,\n            \"free_admission_condition\": null,\n            \"punchline\": {\n                \"fr\": \"62eme Colloque International d'études humanistes du centre d'études supérieures de la Renaissance\"\n            },\n            \"name\": {\n                \"fr\": \"Léonard de Vinci création et innovations \"\n            },\n            \"blurb\": {\n                \"fr\": \"<p class=\\\"is-active\\\">Le 62ème colloque international d’études humanistes du Centre d’études supérieures de la Renaissance de Tours sera consacré à Léonard de Vinci en 2019.&nbsp;</p><p class=\\\"is-active\\\">Cet événement rassemblera les plus grands spécialistes internationaux du sujet et proposera d’aborder toutes les facettes de l’oeuvre de Léonard sous le prisme de l’invention et de l’innovation : mécanique, médecine, architecture, biomimétisme, etc. Une partie de ce colloque se tiendra dans des lieux marqués par la figure de Léonard de Vinci : le Château du Clos Lucé à Amboise et le Château de Chambord.</p>\"\n            },\n            \"start_at\": \"2019-06-01T00:00:00Z\",\n            \"end_at\": \"2019-06-30T00:00:00Z\"\n        },\n        \"relationships\": {},\n        \"links\": {\n            \"self\": {\n                \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv\"\n            },\n            \"relations\": {\n                \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/cities\",\n                \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/companies\",\n                \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/departments\",\n                \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/elects\",\n                \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/etablissement_publics\",\n                \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/event_groups\",\n                \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/events\",\n                \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/facilities\",\n                \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/news\",\n                \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/non_profits\",\n                \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/performers\",\n                \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/projects\",\n                \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/regions\",\n                \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/skills\"\n            },\n            \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/images\",\n            \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/documents\",\n            \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates\",\n            \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/type\",\n            \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/types\"\n        },\n        \"meta\": {\n            \"licenses\": [\n                {\n                    \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                    \"SPDX\": \"ODbL-1.0\",\n                    \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                    \"targets\": [\n                        \"cancelled\",\n                        \"cancellation_reason\",\n                        \"free_admission\",\n                        \"free_admission_condition\",\n                        \"punchline\",\n                        \"name\",\n                        \"blurb\",\n                        \"start_at\",\n                        \"end_at\"\n                    ]\n                }\n            ],\n            \"instances\": {\n                \"500-ans-renaissances\": [\n                    \"fr\"\n                ]\n            }\n        }\n    }\n}"}],"_postman_id":"044d713d-82a6-41b7-a80d-41faaebb4522"},{"name":"Show with included resources","id":"1dbf3872-b1b5-4c6c-9ded-0fae2969a9d4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/news/:id?include=images","description":"<p>Avec le paramètre <code>include</code> vous avez la possibilité d'insérer dans la vue principale des ressources liées, vous évitant des requêtes supplémentaires.</p>\n","urlObject":{"path":["v2",":instance","news",":id"],"host":["https://api.publidata.io"],"query":[{"description":{"content":"<p>Liste des ressources à insérer</p>\n","type":"text/plain"},"key":"include","value":"images"}],"variable":[{"type":"string","value":"500-ans-renaissances","key":"instance"},{"type":"string","value":"y7KpS6Dgxv","key":"id"}]}},"response":[{"id":"e69539e7-d000-46cb-8e25-1d8009713f95","name":"✅ Show with included resources","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.publidata.io/v2/:instance/events/:id?include=dates,types","host":["https://api.publidata.io"],"path":["v2",":instance","events",":id"],"query":[{"key":"include","value":"dates,types","description":"Liste des ressources à insérer"}],"variable":[{"key":"instance","value":"500-ans-renaissances"},{"key":"id","value":"y7KpS6Dgxv"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Tue, 06 Nov 2018 14:54:52 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"2c566edafdfca2fe7ed4fc7f8ef3e15b\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"b8d67f08-016a-4d6c-b10e-7d6467c5bcdf"},{"key":"X-Runtime","value":"0.483946"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"y7KpS6Dgxv\",\n        \"type\": \"event\",\n        \"attributes\": {\n            \"id\": \"y7KpS6Dgxv\",\n            \"created_at\": \"2018-10-31T11:26:32Z\",\n            \"updated_at\": \"2018-11-06T10:56:29Z\",\n            \"cancelled\": false,\n            \"cancellation_reason\": null,\n            \"free_admission\": null,\n            \"free_admission_condition\": null,\n            \"punchline\": {\n                \"fr\": \"62eme Colloque International d'études humanistes du centre d'études supérieures de la Renaissance\"\n            },\n            \"name\": {\n                \"fr\": \"Léonard de Vinci création et innovations \"\n            },\n            \"blurb\": {\n                \"fr\": \"<p class=\\\"is-active\\\">Le 62ème colloque international d’études humanistes du Centre d’études supérieures de la Renaissance de Tours sera consacré à Léonard de Vinci en 2019.&nbsp;</p><p class=\\\"is-active\\\">Cet événement rassemblera les plus grands spécialistes internationaux du sujet et proposera d’aborder toutes les facettes de l’oeuvre de Léonard sous le prisme de l’invention et de l’innovation : mécanique, médecine, architecture, biomimétisme, etc. Une partie de ce colloque se tiendra dans des lieux marqués par la figure de Léonard de Vinci : le Château du Clos Lucé à Amboise et le Château de Chambord.</p>\"\n            },\n            \"start_at\": \"2019-06-01T00:00:00Z\",\n            \"end_at\": \"2019-06-30T00:00:00Z\"\n        },\n        \"relationships\": {\n            \"types\": {\n                \"data\": []\n            },\n            \"dates\": {\n                \"data\": [\n                    {\n                        \"id\": \"axGeikm1VN\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"8VZZiNZ8Vd\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"eVgRimO4Lo\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"E79OiqZQLM\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"YVYgiW4lxD\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"87oei8vYLQ\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"gLb4iOga7J\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"o7EMiQDr75\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"B72ZiYOv7O\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"y7KAiEO4Lv\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"d7DzidZMLB\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"DLkqijMy7a\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"G7jaiXOoVg\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"jVJvi2nyVR\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"J7d3igMRVB\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"2VX9iOjl7N\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"DVA6ivYn7X\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"8VvJieDWVv\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"D744i3N078\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"NLwjibKKxD\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"Q7BaiA1AVb\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"Kx09iEraLX\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"y7KAiEOMLv\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"d7DzidZmLB\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"DLkqijM67a\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"G7jaiXOAVg\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"jVJvi2nXVR\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"J7d3igMbVB\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"2VX9iOjd7N\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"DVA6ivYR7X\",\n                        \"type\": \"date\"\n                    }\n                ]\n            }\n        },\n        \"links\": {\n            \"self\": {\n                \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv\"\n            },\n            \"relations\": {\n                \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/cities\",\n                \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/companies\",\n                \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/departments\",\n                \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/elects\",\n                \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/etablissement_publics\",\n                \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/event_groups\",\n                \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/events\",\n                \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/facilities\",\n                \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/news\",\n                \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/non_profits\",\n                \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/performers\",\n                \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/projects\",\n                \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/regions\",\n                \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/skills\"\n            },\n            \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/images\",\n            \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/documents\",\n            \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates\",\n            \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/type\",\n            \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/types\"\n        },\n        \"meta\": {\n            \"included\": [\n                \"dates\",\n                \"types\"\n            ],\n            \"licenses\": [\n                {\n                    \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                    \"SPDX\": \"ODbL-1.0\",\n                    \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                    \"targets\": [\n                        \"cancelled\",\n                        \"cancellation_reason\",\n                        \"free_admission\",\n                        \"free_admission_condition\",\n                        \"punchline\",\n                        \"name\",\n                        \"blurb\",\n                        \"start_at\",\n                        \"end_at\"\n                    ]\n                }\n            ],\n            \"instances\": {\n                \"500-ans-renaissances\": [\n                    \"fr\"\n                ]\n            }\n        }\n    },\n    \"included\": [\n        {\n            \"id\": \"axGeikm1VN\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"axGeikm1VN\",\n                \"created_at\": \"2018-10-31T11:33:15Z\",\n                \"updated_at\": \"2018-10-31T11:33:15Z\",\n                \"start_at\": \"2019-06-30T00:00:00Z\",\n                \"end_at\": \"2019-06-30T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 30 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"8VZZiNZ8Vd\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"8VZZiNZ8Vd\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-29T00:00:00Z\",\n                \"end_at\": \"2019-06-29T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 29 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"eVgRimO4Lo\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"eVgRimO4Lo\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-28T00:00:00Z\",\n                \"end_at\": \"2019-06-28T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 28 Fr 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"E79OiqZQLM\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"E79OiqZQLM\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-27T00:00:00Z\",\n                \"end_at\": \"2019-06-27T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 27 Th 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"YVYgiW4lxD\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"YVYgiW4lxD\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-26T00:00:00Z\",\n                \"end_at\": \"2019-06-26T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 26 We 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"87oei8vYLQ\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"87oei8vYLQ\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-25T00:00:00Z\",\n                \"end_at\": \"2019-06-25T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 25 Tu 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"gLb4iOga7J\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"gLb4iOga7J\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-24T00:00:00Z\",\n                \"end_at\": \"2019-06-24T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 24 Mo 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"o7EMiQDr75\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"o7EMiQDr75\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-23T00:00:00Z\",\n                \"end_at\": \"2019-06-23T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 23 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"B72ZiYOv7O\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"B72ZiYOv7O\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-22T00:00:00Z\",\n                \"end_at\": \"2019-06-22T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 22 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"y7KAiEO4Lv\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"y7KAiEO4Lv\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-21T00:00:00Z\",\n                \"end_at\": \"2019-06-21T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 21 Fr 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"d7DzidZMLB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"d7DzidZMLB\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-20T00:00:00Z\",\n                \"end_at\": \"2019-06-20T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 20 Th 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DLkqijMy7a\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DLkqijMy7a\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-19T00:00:00Z\",\n                \"end_at\": \"2019-06-19T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 19 We 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"G7jaiXOoVg\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"G7jaiXOoVg\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-18T00:00:00Z\",\n                \"end_at\": \"2019-06-18T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 18 Tu 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"jVJvi2nyVR\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"jVJvi2nyVR\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-17T00:00:00Z\",\n                \"end_at\": \"2019-06-17T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 17 Mo 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"J7d3igMRVB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"J7d3igMRVB\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-16T00:00:00Z\",\n                \"end_at\": \"2019-06-16T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 16 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"2VX9iOjl7N\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"2VX9iOjl7N\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-15T00:00:00Z\",\n                \"end_at\": \"2019-06-15T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 15 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DVA6ivYn7X\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DVA6ivYn7X\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-14T00:00:00Z\",\n                \"end_at\": \"2019-06-14T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 14 Fr 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"8VvJieDWVv\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"8VvJieDWVv\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-13T00:00:00Z\",\n                \"end_at\": \"2019-06-13T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 13 Th 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"D744i3N078\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"D744i3N078\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-12T00:00:00Z\",\n                \"end_at\": \"2019-06-12T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 12 We 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"NLwjibKKxD\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"NLwjibKKxD\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-11T00:00:00Z\",\n                \"end_at\": \"2019-06-11T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 11 Tu 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"Q7BaiA1AVb\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"Q7BaiA1AVb\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-10T00:00:00Z\",\n                \"end_at\": \"2019-06-10T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 10 Mo 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"Kx09iEraLX\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"Kx09iEraLX\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-09T00:00:00Z\",\n                \"end_at\": \"2019-06-09T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 09 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"y7KAiEOMLv\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"y7KAiEOMLv\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-08T00:00:00Z\",\n                \"end_at\": \"2019-06-08T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 08 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"d7DzidZmLB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"d7DzidZmLB\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-07T00:00:00Z\",\n                \"end_at\": \"2019-06-07T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 07 Fr 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DLkqijM67a\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DLkqijM67a\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-06T00:00:00Z\",\n                \"end_at\": \"2019-06-06T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 06 Th 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"G7jaiXOAVg\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"G7jaiXOAVg\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-05T00:00:00Z\",\n                \"end_at\": \"2019-06-05T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 05 We 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"jVJvi2nXVR\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"jVJvi2nXVR\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-04T00:00:00Z\",\n                \"end_at\": \"2019-06-04T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 04 Tu 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"J7d3igMbVB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"J7d3igMbVB\",\n                \"created_at\": \"2018-10-31T11:33:11Z\",\n                \"updated_at\": \"2018-10-31T11:33:11Z\",\n                \"start_at\": \"2019-06-03T00:00:00Z\",\n                \"end_at\": \"2019-06-03T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 03 Mo 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"2VX9iOjd7N\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"2VX9iOjd7N\",\n                \"created_at\": \"2018-10-31T11:33:11Z\",\n                \"updated_at\": \"2018-10-31T11:33:11Z\",\n                \"start_at\": \"2019-06-02T00:00:00Z\",\n                \"end_at\": \"2019-06-02T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 02 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DVA6ivYR7X\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DVA6ivYR7X\",\n                \"created_at\": \"2018-10-31T11:33:11Z\",\n                \"updated_at\": \"2018-10-31T11:33:11Z\",\n                \"start_at\": \"2019-06-01T00:00:00Z\",\n                \"end_at\": \"2019-06-01T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 01 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"wo7NbcKj7n\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"wo7NbcKj7n\",\n                \"created_at\": \"2018-10-23T01:23:57Z\",\n                \"updated_at\": \"2018-10-23T01:24:19Z\",\n                \"name\": {\n                    \"fr\": \"Rassemblement\"\n                }\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": \"https://publidata-staging.herokuapp.com/api/v2/event_types/wo7NbcKj7n\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"Wn7lQcrKxm\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"Wn7lQcrKxm\",\n                \"created_at\": \"2018-10-23T01:23:57Z\",\n                \"updated_at\": \"2018-10-23T01:24:19Z\",\n                \"name\": {\n                    \"fr\": \"Colloque\"\n                }\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": \"https://publidata-staging.herokuapp.com/api/v2/event_types/Wn7lQcrKxm\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        }\n    ]\n}"}],"_postman_id":"1dbf3872-b1b5-4c6c-9ded-0fae2969a9d4"},{"name":"Search","id":"a60a8a79-60a1-45f4-9a9f-a5a3f01256ba","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/news/?q=Sénart&size=10&page=1&marker=false&instances[]=2&types[]=Event&performers[]=Nakht&facilities[]=8&events[]=1&event_groups[]=1&news[]=1&projects[]=1&cities[]=7&etablissement_publics[]=1&departments[]=1&regions[]=1&skills[]=1&elects[]=1&bbox[]","description":"<p>Recherche d'événements : 🚧 à venir... </p>\n","urlObject":{"path":["v2",":instance","news",""],"host":["https://api.publidata.io"],"query":[{"description":{"content":"<p>Filtre textuel</p>\n","type":"text/plain"},"key":"q","value":"Sénart"},{"description":{"content":"<p>Nombre de résultats retournés (defaut: 10)</p>\n","type":"text/plain"},"key":"size","value":"10"},{"description":{"content":"<p>Pagination (defaut: 1)</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>Filtre booléen pour ne retourner que les locations (default: false)</p>\n","type":"text/plain"},"key":"marker","value":"false"},{"description":{"content":"<p>Filtre par instance (array d'id)</p>\n","type":"text/plain"},"key":"instances[]","value":"2"},{"description":{"content":"<p>Filtre par type de ressource (array de type parmi la liste suivante : News Event Facility Project City Epci Department Region EventGroup Skill Elect Performer Company NonProfit EtablissementPublic)</p>\n","type":"text/plain"},"key":"types[]","value":"Event"},{"description":{"content":"<p>Filtre par artiste lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"performers[]","value":"Nakht"},{"description":{"content":"<p>Filtre par équipement lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"facilities[]","value":"8"},{"description":{"content":"<p>Filtre par événement lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"events[]","value":"1"},{"description":{"content":"<p>Filtre par groupe d'événements lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"event_groups[]","value":"1"},{"description":{"content":"<p>Filtre par actualité liée (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"news[]","value":"1"},{"description":{"content":"<p>Filtre par projet lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"projects[]","value":"1"},{"description":{"content":"<p>Filtre par ville et location liées (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"cities[]","value":"7"},{"description":{"content":"<p>Filtre par établissement public lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"etablissement_publics[]","value":"1"},{"description":{"content":"<p>Filtre par departement lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"departments[]","value":"1"},{"description":{"content":"<p>Filtre par region liée (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"regions[]","value":"1"},{"description":{"content":"<p>Filtre par compétence liée (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"skills[]","value":"1"},{"description":{"content":"<p>Filtre par élu lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"elects[]","value":"1"},{"description":{"content":"<p>Filtre géographique (array de latitudes, longitudes dans l'ordre suivant minX, minY, maxX, maxY)</p>\n","type":"text/plain"},"key":"bbox[]","value":null}],"variable":[{"type":"string","value":"500-ans-renaissances","key":"instance"}]}},"response":[{"id":"b9701575-6370-4872-9b44-cebb08463c9d","name":"Search events","originalRequest":{"method":"GET","header":[],"url":{"raw":"www.publidata.io/api/v1/events?q=&options[geo][top_left][lat]=49.05965195372349&options[geo][top_left][lon]=2.1371613664061897&options[geo][bottom_right][lat]=48.21570798955211&options[geo][bottom_right][lon]=2.7688752335936897&options[city]=Combs-la-Ville&options[paging][from]=0&options[event_types][]=Concert&options[dates][start_date]=1521812100000&options[dates][end_date]=1522499700000&options[instances][]=2","host":["www","publidata","io"],"path":["api","v1","events"],"query":[{"key":"q","value":"","description":"Recherche (full-text)"},{"key":"options[geo][top_left][lat]","value":"49.05965195372349","description":"Latitude coin supérieur gauche geo-box (lat)"},{"key":"options[geo][top_left][lon]","value":"2.1371613664061897","description":"Longitude coin supérieur gauche geo-box (lon)"},{"key":"options[geo][bottom_right][lat]","value":"48.21570798955211","description":"Latitude coin inférieur droit geo-box (lat)"},{"key":"options[geo][bottom_right][lon]","value":"2.7688752335936897","description":"Longitude coin inférieur droit geo-box (lon)"},{"key":"options[city]","value":"Combs-la-Ville","description":"Ville (full-text ou code postal)"},{"key":"options[paging][from]","value":"0","description":"Début de la pagination (integer)"},{"key":"options[event_types][]","value":"Concert","description":"Types d'événement (array de string)"},{"key":"options[dates][start_date]","value":"1521812100000","description":"Date de début (format timestamp unix 1508267068688)"},{"key":"options[dates][end_date]","value":"1522499700000","description":"Date de fin (format timestamp unix 1539803068688)"},{"key":"options[instances][]","value":"2"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"took\": 11,\n    \"timed_out\": false,\n    \"_shards\": {\n        \"total\": 1,\n        \"successful\": 1,\n        \"failed\": 0\n    },\n    \"hits\": {\n        \"total\": 2,\n        \"max_score\": 0.9812665,\n        \"hits\": [\n            {\n                \"_index\": \"events\",\n                \"_type\": \"event\",\n                \"_id\": \"3241\",\n                \"_score\": 0.9812665,\n                \"_source\": {\n                    \"id\": 3241,\n                    \"name\": \"Concert des orchestres\",\n                    \"slug\": \"concert-des-orchestres\",\n                    \"status\": \"published\",\n                    \"free_admission\": true,\n                    \"start_date\": \"2018-03-23T00:00:00.000+01:00\",\n                    \"end_date\": \"2018-03-23T00:00:00.000+01:00\",\n                    \"punchline\": \"Le vendredi 23 mars 2018 à 20h au Théâtre de la Coupole, les musiciens du Conservatoire Maurice Ohana de Combs-la-ville vous attendent pour leur rendez-vous annuel...\",\n                    \"blurb\": \"Cette soirée donne la possibilité à plusieurs formations orchestrales du conservatoire Maurice Ohana de se produire sur scène. \\r\\n\\r\\nProgramme musical éclectique et varié, ce concert  permet de vivre la musique ensemble et de la partager sans modération avec le public.\",\n                    \"linked_objects\": [\n                        {\n                            \"id\": 180,\n                            \"type\": \"Facility\",\n                            \"name\": \"La Coupole\"\n                        },\n                        {\n                            \"id\": 12,\n                            \"type\": \"City\",\n                            \"name\": \"Combs-la-Ville\"\n                        }\n                    ],\n                    \"cover_picture\": {\n                        \"id\": 22632,\n                        \"name\": \"image de couverture de Concert des orchestres\",\n                        \"alt\": \"image de couverture de Concert des orchestres\",\n                        \"description\": \"image de couverture de Concert des orchestres\",\n                        \"slug\": null,\n                        \"image_urls_as_json\": {\n                            \"image_original_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/632/original/open-uri20171002-4-1etqlbo?1506962457\",\n                            \"image_small_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/632/image_small/open-uri20171002-4-1etqlbo?1506962457\",\n                            \"image_medium_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/632/image_medium/open-uri20171002-4-1etqlbo?1506962457\",\n                            \"image_large_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/632/image_large/open-uri20171002-4-1etqlbo?1506962457\"\n                        }\n                    },\n                    \"instances\": [\n                        {\n                            \"id\": 2,\n                            \"slug\": \"portail-sortir-gps\"\n                        }\n                    ],\n                    \"event_type\": {\n                        \"id\": 13,\n                        \"name\": \"Concert\"\n                    },\n                    \"event_styles\": [\n                        {\n                            \"id\": 82,\n                            \"name\": \"World Music\"\n                        }\n                    ],\n                    \"event_dates\": [\n                        {\n                            \"id\": 37799,\n                            \"start_hour\": \"2000-01-01T20:00:00.000Z\",\n                            \"end_hour\": \"2000-01-01T22:00:00.000Z\",\n                            \"date\": \"2018-03-23T00:00:00.000+01:00\",\n                            \"sold_out\": false,\n                            \"start_date\": \"2018-03-23T20:00:00.000+00:00\",\n                            \"end_date\": \"2018-03-23T22:00:00.000+00:00\"\n                        }\n                    ],\n                    \"facilities\": [\n                        {\n                            \"id\": 180,\n                            \"name\": \"La Coupole\",\n                            \"slug\": \"la-coupole\",\n                            \"address\": \"Rue Jean François Millet, 77380 Combs-la-Ville, France\",\n                            \"location\": {\n                                \"lat\": 48.659695,\n                                \"lon\": 2.5662415\n                            }\n                        }\n                    ],\n                    \"locations\": [],\n                    \"fees\": [],\n                    \"tags\": [],\n                    \"pages\": [\n                        {\n                            \"id\": 7659,\n                            \"instance\": {\n                                \"id\": 2,\n                                \"slug\": \"portail-sortir-gps\"\n                            }\n                        }\n                    ]\n                }\n            },\n            {\n                \"_index\": \"events\",\n                \"_type\": \"event\",\n                \"_id\": \"3983\",\n                \"_score\": 0.9794048,\n                \"_source\": {\n                    \"id\": 3983,\n                    \"name\": \"Après-midi musicale: Claude Debussy\",\n                    \"slug\": \"apres-midi-musicale-claude-debussy\",\n                    \"status\": \"published\",\n                    \"free_admission\": true,\n                    \"start_date\": \"2018-03-24T00:00:00.000+01:00\",\n                    \"end_date\": \"2018-03-24T00:00:00.000+01:00\",\n                    \"punchline\": \"A l'occasion du centenaire de la mort de Claude Debussy, la media-ludothèque et le conservatoire Maurice Ohana vous invitent à une après-midi musical, le samedi 24 mars à partir de 15h30.\",\n                    \"blurb\": \"Claude Debussy (1862-1918) était un compositeur français. Pour célébrer son centenaire, nous vous invitons à un après-midi musical. Au programme, une conférence par Bruno Giner sur le compositeur à 15h30. \\r\\nPuis, à 18h, les élèves du conservatoire interpréteront une sélection d’œuvres de Claude Debussy.\",\n                    \"linked_objects\": [\n                        {\n                            \"id\": 42,\n                            \"type\": \"Facility\",\n                            \"name\": \"Médiathèque de Combs-la-Ville\"\n                        },\n                        {\n                            \"id\": 12,\n                            \"type\": \"City\",\n                            \"name\": \"Combs-la-Ville\"\n                        }\n                    ],\n                    \"cover_picture\": {\n                        \"id\": 24665,\n                        \"name\": \"image de couverture de Après-midi musicale: Claude Debussy\",\n                        \"alt\": \"image de couverture de Après-midi musicale: Claude Debussy\",\n                        \"description\": \"image de couverture de Après-midi musicale: Claude Debussy\",\n                        \"slug\": null,\n                        \"image_urls_as_json\": {\n                            \"image_original_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/665/original/Photo_23a_Claude_Debussy.jpg?1516441408\",\n                            \"image_small_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/665/image_small/Photo_23a_Claude_Debussy.jpg?1516441408\",\n                            \"image_medium_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/665/image_medium/Photo_23a_Claude_Debussy.jpg?1516441408\",\n                            \"image_large_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/665/image_large/Photo_23a_Claude_Debussy.jpg?1516441408\"\n                        }\n                    },\n                    \"instances\": [\n                        {\n                            \"id\": 2,\n                            \"slug\": \"portail-sortir-gps\"\n                        }\n                    ],\n                    \"event_type\": {\n                        \"id\": 13,\n                        \"name\": \"Concert\"\n                    },\n                    \"event_styles\": [\n                        {\n                            \"id\": 111,\n                            \"name\": \"Musique Classique\"\n                        }\n                    ],\n                    \"event_dates\": [\n                        {\n                            \"id\": 41100,\n                            \"start_hour\": \"2000-01-01T15:30:00.000Z\",\n                            \"end_hour\": \"2000-01-01T19:30:00.000Z\",\n                            \"date\": \"2018-03-24T00:00:00.000+01:00\",\n                            \"sold_out\": false,\n                            \"start_date\": \"2018-03-24T15:30:00.000+00:00\",\n                            \"end_date\": \"2018-03-24T19:30:00.000+00:00\"\n                        }\n                    ],\n                    \"facilities\": [\n                        {\n                            \"id\": 42,\n                            \"name\": \"Médiathèque de Combs-la-Ville\",\n                            \"slug\": \"mediatheque-de-combs-la-ville\",\n                            \"address\": \"Rue Jean François Millet, 77380 Combs-la-Ville, France\",\n                            \"location\": {\n                                \"lat\": 48.659695,\n                                \"lon\": 2.5662415\n                            }\n                        }\n                    ],\n                    \"locations\": [],\n                    \"fees\": [],\n                    \"accessibility\": {\n                        \"id\": 1766,\n                        \"deaf_lsf\": false,\n                        \"deaf_vision_based\": false,\n                        \"deaf_subtitle\": false,\n                        \"deaf_hearing_loop\": false,\n                        \"blind_audio_description\": false,\n                        \"blind_darkness_based\": false,\n                        \"blind_text_based\": false,\n                        \"blind_braille\": false,\n                        \"blind_large_print\": false,\n                        \"motor_disabled_access\": true,\n                        \"has_accessibility\": true,\n                        \"has_deaf_accessibility\": false,\n                        \"has_blind_accessibility\": false\n                    },\n                    \"tags\": [\n                        \"Culture\"\n                    ],\n                    \"pages\": [\n                        {\n                            \"id\": 8636,\n                            \"instance\": {\n                                \"id\": 2,\n                                \"slug\": \"portail-sortir-gps\"\n                            }\n                        }\n                    ]\n                }\n            }\n        ]\n    },\n    \"aggregations\": {\n        \"event_styles_terms_agg\": {\n            \"doc_count\": 2,\n            \"name\": {\n                \"doc_count_error_upper_bound\": 0,\n                \"sum_other_doc_count\": 0,\n                \"buckets\": [\n                    {\n                        \"key\": \"111\",\n                        \"doc_count\": 1,\n                        \"name\": {\n                            \"doc_count_error_upper_bound\": 0,\n                            \"sum_other_doc_count\": 0,\n                            \"buckets\": [\n                                {\n                                    \"key\": \"classique\",\n                                    \"doc_count\": 1\n                                },\n                                {\n                                    \"key\": \"musique\",\n                                    \"doc_count\": 1\n                                }\n                            ]\n                        }\n                    },\n                    {\n                        \"key\": \"82\",\n                        \"doc_count\": 1,\n                        \"name\": {\n                            \"doc_count_error_upper_bound\": 0,\n                            \"sum_other_doc_count\": 0,\n                            \"buckets\": [\n                                {\n                                    \"key\": \"music\",\n                                    \"doc_count\": 1\n                                },\n                                {\n                                    \"key\": \"world\",\n                                    \"doc_count\": 1\n                                }\n                            ]\n                        }\n                    }\n                ]\n            }\n        },\n        \"events\": {\n            \"doc_count\": 3838,\n            \"dates\": {\n                \"doc_count\": 11064,\n                \"this_month\": {\n                    \"doc_count\": 737,\n                    \"events\": {\n                        \"doc_count\": 278\n                    }\n                },\n                \"this_week_end\": {\n                    \"doc_count\": 81,\n                    \"events\": {\n                        \"doc_count\": 54\n                    }\n                },\n                \"past\": {\n                    \"doc_count\": 10070,\n                    \"events\": {\n                        \"doc_count\": 3132\n                    }\n                },\n                \"today\": {\n                    \"doc_count\": 34,\n                    \"events\": {\n                        \"doc_count\": 28\n                    }\n                },\n                \"tomorrow\": {\n                    \"doc_count\": 22,\n                    \"events\": {\n                        \"doc_count\": 19\n                    }\n                },\n                \"last_days\": {\n                    \"doc_count\": 133,\n                    \"events\": {\n                        \"doc_count\": 75\n                    }\n                },\n                \"upcoming\": {\n                    \"doc_count\": 1028,\n                    \"events\": {\n                        \"doc_count\": 390\n                    }\n                },\n                \"this_week\": {\n                    \"doc_count\": 197,\n                    \"events\": {\n                        \"doc_count\": 96\n                    }\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"a60a8a79-60a1-45f4-9a9f-a5a3f01256ba"}],"id":"4162e2de-6aa4-4b61-b353-484be4d09a99","_postman_id":"4162e2de-6aa4-4b61-b353-484be4d09a99","description":""}],"id":"451b037d-6fbb-421a-b3d7-d9faad04aa32","description":"<p>Les événements</p>\n","event":[{"listen":"prerequest","script":{"id":"768578b7-1e5d-45b7-ab56-2a8b856f2061","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"a419bb76-510b-4b2b-bc5d-608de7e9b0d3","type":"text/javascript","exec":[""]}}],"_postman_id":"451b037d-6fbb-421a-b3d7-d9faad04aa32"},{"name":"Projets","item":[{"name":"Endpoints principaux","item":[{"name":"Index","id":"ec667f6d-7b66-4bec-94b2-0f73dbe461c7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/projects","description":"<p>Liste des événements</p>\n","urlObject":{"path":["v2",":instance","projects"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"string","value":"500-ans-renaissances","key":"instance"}]}},"response":[{"id":"85598a72-6c08-4e14-b2a2-2c9b5a8e1134","name":"✅ Index","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.publidata.io/v2/:instance/events","host":["https://api.publidata.io"],"path":["v2",":instance","events"],"variable":[{"key":"instance","value":"500-ans-renaissances"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Tue, 06 Nov 2018 14:35:32 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"e272b80759b3239cb223ac313ead9d8a\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"ef157796-c377-4ab4-b340-25fe123f51d3"},{"key":"X-Runtime","value":"0.211831"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"J7dASjXPxB\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"J7dASjXPxB\",\n                \"created_at\": \"2018-11-02T13:36:24Z\",\n                \"updated_at\": \"2018-11-06T14:11:43Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {\n                    \"fr\": \"La 28e édition du Festival International des Jardins abordera un thème cher à la Renaissance.\"\n                },\n                \"name\": {\n                    \"fr\": \"Festival International des Jardins de Chaumont-sur-Loire\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"medium-insert-active\\\"><br></p>\"\n                },\n                \"start_at\": \"2019-04-25T10:00:00Z\",\n                \"end_at\": \"2019-11-03T19:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"y7KpS6Dgxv\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"y7KpS6Dgxv\",\n                \"created_at\": \"2018-10-31T11:26:32Z\",\n                \"updated_at\": \"2018-11-06T10:56:29Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {\n                    \"fr\": \"62eme Colloque International d'études humanistes du centre d'études supérieures de la Renaissance\"\n                },\n                \"name\": {\n                    \"fr\": \"Léonard de Vinci création et innovations \"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"is-active\\\">Le 62ème colloque international d’études humanistes du Centre d’études supérieures de la Renaissance de Tours sera consacré à Léonard de Vinci en 2019.&nbsp;</p><p class=\\\"is-active\\\">Cet événement rassemblera les plus grands spécialistes internationaux du sujet et proposera d’aborder toutes les facettes de l’oeuvre de Léonard sous le prisme de l’invention et de l’innovation : mécanique, médecine, architecture, biomimétisme, etc. Une partie de ce colloque se tiendra dans des lieux marqués par la figure de Léonard de Vinci : le Château du Clos Lucé à Amboise et le Château de Chambord.</p>\"\n                },\n                \"start_at\": \"2019-06-01T00:00:00Z\",\n                \"end_at\": \"2019-06-30T00:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"G7j3SNKzxg\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"G7j3SNKzxg\",\n                \"created_at\": \"2018-10-31T09:20:00Z\",\n                \"updated_at\": \"2018-11-06T10:56:29Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {},\n                \"name\": {\n                    \"fr\": \"Les Borgia à Chinon\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"\\\">La Forteresse royale de Chinon, proposera une reconstitution historique de la venue de César Borgia, fils du pape Alexandre VI pour rencontrer le roi de France à Chinon en 1498 . Reconstitution (cortège équestre). Démonstrations de Calcio Storico (sport florentin de la Renaissance, ancêtre du football actuel…). Dégustations de mets et recettes de la Renaissance florentine. Danses et musiques Renaissance.<br></p>\"\n                },\n                \"start_at\": \"2019-07-21T00:00:00Z\",\n                \"end_at\": \"2019-07-21T00:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"jVJbSWMWVR\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"jVJbSWMWVR\",\n                \"created_at\": \"2018-10-31T08:54:32Z\",\n                \"updated_at\": \"2018-11-06T10:56:28Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {},\n                \"name\": {\n                    \"fr\": \"La renaissance en Val de Loire, en France et en Europe - Festival du film français renaissance\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p>Pour la 21ème édition des Rendez- vous de l’Histoire, le Centre d’Études Supérieures de la Renaissance sera fortement impliqué dans une programmation spécifique « La Renaissance en Val de Loire, en France et en Europe ». Dans le cadre du festival du film français « Renaissance », seront projetés des films historiques accompagnés de moments de réflexion (débats, conférences et ateliers) mettant en perspective la création cinématographique au regard de l’histoire de la peinture historiciste.<br></p>\"\n                },\n                \"start_at\": \"2019-10-01T00:00:00Z\",\n                \"end_at\": \"2019-10-31T00:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"J7dASjXwxB\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"J7dASjXwxB\",\n                \"created_at\": \"2018-10-31T08:42:55Z\",\n                \"updated_at\": \"2018-11-06T10:56:28Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {\n                    \"fr\": \"Parcours numérique, sonore et interactif\"\n                },\n                \"name\": {\n                    \"fr\": \"Renaissance comme Rabelais\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<h3>Parcours numérique, sonore et interactif combinant des moyens techniques innovants capables d’allier  géographie littéraire et géographie réelle. Création d’un parcours sonore géolocalisé à partir d’une application mobile entre La Devinière, maison natale de Rabelais, et l’Abbaye de Seuilly.<br></h3>\"\n                },\n                \"start_at\": \"2019-07-01T00:00:00Z\",\n                \"end_at\": \"2019-10-31T00:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"DVAWS3NQxX\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"DVAWS3NQxX\",\n                \"created_at\": \"2018-10-31T08:34:25Z\",\n                \"updated_at\": \"2018-11-06T10:56:28Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {},\n                \"name\": {\n                    \"fr\": \"Spectacle numérique itinérant Renaissance(S)\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p>Ce spectacle numérique invite le public à s’immerger par le biais des dernières technologies dans un environnement visuel et sonore en plusieurs dimensions. Diverses technologies, de réalité augmentée ou de réalité virtuelle peuvent être détournées par le biais d’une immersion sensori-motrice grâce à une ou plusieurs interfaces visuelles. Ce spectacle proposera une narration dans l’esprit humaniste et novateur de la Renaissance.</p><p>Il évoquera les dimensions créatives, anticipatrices, pluridisciplinaires de Léonard de Vinci, les acteurs, oeuvres, sites patrimoniaux et culturels majeurs du territoire à la Renaissance, le Centre-Val de Loire aujourd’hui et sa projection dans le futur.</p>\"\n                },\n                \"start_at\": \"2019-08-15T19:00:00Z\",\n                \"end_at\": \"2019-09-15T23:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"8VvZS1y0Vv\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"8VvZS1y0Vv\",\n                \"created_at\": \"2018-10-31T08:29:42Z\",\n                \"updated_at\": \"2018-11-06T10:56:28Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {},\n                \"name\": {\n                    \"fr\": \"Magnificences à la cour de France\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"is-active\\\">Ce spectacle de l’ensemble Doulce Mémoire, recrée l’univers d’une fête à la cour de François I<sup>er</sup>, autour de 1515, celles qui virent l’arrivée en France de Léonard de Vinci à l’invitation du roi français. Peintre, inventeur de génie, Léonard était aussi organisateur de fêtes fameuses, dont l’inventivité et la puissance créatrice étaient appréciées les puissants.<br></p>\"\n                },\n                \"start_at\": \"2019-07-23T19:00:00Z\",\n                \"end_at\": \"2019-07-23T23:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"NLwlSvmaVD\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"NLwlSvmaVD\",\n                \"created_at\": \"2018-10-30T16:51:07Z\",\n                \"updated_at\": \"2018-11-06T10:56:27Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {\n                    \"fr\": \"Exposition regroupant des artistes contemporains influencés par Léonard de Vinci et la Renaissance.\"\n                },\n                \"name\": {\n                    \"fr\": \"Hommage contemporain à la Renaissance\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"is-active\\\">Exposition d’artistes contemporains ayant été influencés par Léonard de Vinci et la Renaissance, sur l’exemple de Fabien Merelle, établi à Tours et travaillant sur la scène internationale.&nbsp;</p><p class=\\\"is-active\\\">L’exposition « Hommage à Léonard » transpose dans l’art contemporain l’héritage du maître du Cinquecento mort en Val de Loire il y a 500 ans. Vaste cabinet de curiosités, l’exposition présentée dans les salles historiques du château fait écho au système de pensée&nbsp;<span style=\\\"font-size: 1em; font-family: ProximaNova, Helvetica, Arial, &quot;Sans Serif&quot;;\\\">du Maitre, génie polyvalent où la réalisation ne constitue pas la fin mais le moyen de la réflexion. Conçue comme une sorte de « mise en curiosité » envers les différents apports de Léonard, homme d’esprit universel à l’histoire des arts en Europe, interprétés ou prolongés par différents artistes de notre temps travaillant sur la scène internationale ; l’exposition montre aussi que les échanges entre Italie et France vers 1500, l’italianisme dans les&nbsp;</span><span style=\\\"font-size: 1em; font-family: ProximaNova, Helvetica, Arial, &quot;Sans Serif&quot;;\\\">arts amorcé sous Charles VIII et Louis XII se perpétuent de nos jours, avec les travaux des artistes florentines Antonella Bussanich, Alessandra Capodacqua et Alessandra Ragionier. Comme dans les chapitres d’un livre, chaque salle illustre l’un des thèmes étudiés par Léonard. L’autoportrait / Le portrait / La peinture d’histoire /&nbsp;</span><span style=\\\"font-size: 1em; font-family: ProximaNova, Helvetica, Arial, &quot;Sans Serif&quot;;\\\">Le Paysage / Le codex / La nature morte / Le Portrait féminin / Le Drapé.</span></p>\"\n                },\n                \"start_at\": \"2019-04-01T10:00:00Z\",\n                \"end_at\": \"2019-11-30T18:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"8VOeS416xY\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"8VOeS416xY\",\n                \"created_at\": \"2018-10-29T16:47:42Z\",\n                \"updated_at\": \"2018-11-06T10:56:30Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {\n                    \"fr\": \"Dans le cadre de l'anniversaire des 500ans de la Renaissance, l'artiste Ravo revisite l'oeuvre de François-Guillaume Ménageot \\\"La mort de Léonard de Vinci\\\"\"\n                },\n                \"name\": {\n                    \"fr\": \"Ravo Mattoni invité du Château Royal d' Amboise\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"\\\">Andrea Mattoni alias <b>RAVO</b>, artiste-graffeur italien de son état, a débuté en 2016 un ambitieux projet visant à reproduire, in situ et en très grand format, des chefs-d’œuvre de la peinture classique signés du Caravage, de Delacroix, de Delatour… Profondeur des couleurs, puissance des lignes et de l’échelle, l’hommage de RAVO aux grands maîtres est d’une modernité réjouissante… Le résultat est bluffant.</p><p class=\\\"\\\">De manière à prolonger l’exposition « La Mort de Léonard de Vinci : la construction d’un mythe » préparée avec la BNF, le château royal d’Amboise a demandé à RAVO de réaliser 5 toiles de grandes dimensions (4.5m X 3m). Celles-ci prendront pour sujet des détails du monumental tableau de François-Guillaume Ménageot « La Mort de Léonard de Vinci », et trouveront place sur les murs de la tour cavalière des Minimes, du 2 mai au 2 septembre 2019. Pour honorer cette commande, l’artiste sera en résidence au château royal d’Amboise durant une dizaine de jours, en avril 2019. Il réalisera ses peintures en public.</p><p class=\\\"\\\">Cette exposition est organisée avec le concours de l’association des Ateliers de l’Etoile.</p><p class=\\\"\\\"><span style=\\\"font-size: 1em; font-family: ProximaNova, Helvetica, Arial, &quot;Sans Serif&quot;;\\\"><b>\\\"Exposition « La Mort de Léonard de Vinci : la construction d’un mythe » - Partenariat BNF (Bibliothèque Nationale de France)</b></span><br></p><p class=\\\"\\\">Tous les jours, du 2 mai au 2 septembre 2019.</p><p class=\\\"\\\">La grande exposition intitulée « La Mort de Léonard de Vinci : la construction d’un mythe », articulée autour du monumental tableau (280 cm X 357 cm) de François-Guillaume Ménageot La mort de Léonard de Vinci, et d’une collection de gravures issues des collections nationales, nous éclairera sur la manière dont les contours de l’amitié entre le roi François Ier et Léonard ont été progressivement réécrits par l’Histoire, et assimilés par elle jusqu’à la construction d’un mythe mis au service de l’image de la monarchie française au XVIII<sup>ème</sup> siècle.</p><p>Au cœur de la riche programmation des célébrations du 5ème centenaire, cette exposition majeure viendra aussi rappeler à un public venu des quatre coins du monde la place éternelle qu’occupe Léonard de Vinci en Val de Loire, et à Amboise en particulier où il repose pour l’éternité dans la quiétude de la chapelle du château.\\\"</p>\"\n                },\n                \"start_at\": \"2019-05-02T09:00:00Z\",\n                \"end_at\": \"2019-09-02T18:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"items\": 9,\n        \"count\": 9,\n        \"page\": 1\n    },\n    \"links\": {\n        \"self\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events?page=1\",\n        \"pagination\": {\n            \"first\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events?page=1\",\n            \"last\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events?page=1\"\n        }\n    }\n}"}],"_postman_id":"ec667f6d-7b66-4bec-94b2-0f73dbe461c7"},{"name":"Show","id":"df5ea80e-ad25-4efe-819f-aa6dc533178c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/{{instance_id}}/projects/:id","description":"<p>Détail d'un événement</p>\n","urlObject":{"path":["v2","{{instance_id}}","projects",":id"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"string","value":"y7KpS6Dgxv","key":"id"}]}},"response":[{"id":"c524ff7e-b496-4787-81e3-5a5d1c2fb316","name":"✅ Show","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.publidata.io/v2/{{instance_id}}/events/:id","host":["https://api.publidata.io"],"path":["v2","{{instance_id}}","events",":id"],"variable":[{"key":"id","value":"y7KpS6Dgxv"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Tue, 06 Nov 2018 14:50:05 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"811c246d37cc926cc75bf582cd364fb3\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"d619c237-6f78-4100-9d77-b11aa3b6dc53"},{"key":"X-Runtime","value":"0.051868"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"y7KpS6Dgxv\",\n        \"type\": \"event\",\n        \"attributes\": {\n            \"id\": \"y7KpS6Dgxv\",\n            \"created_at\": \"2018-10-31T11:26:32Z\",\n            \"updated_at\": \"2018-11-06T10:56:29Z\",\n            \"cancelled\": false,\n            \"cancellation_reason\": null,\n            \"free_admission\": null,\n            \"free_admission_condition\": null,\n            \"punchline\": {\n                \"fr\": \"62eme Colloque International d'études humanistes du centre d'études supérieures de la Renaissance\"\n            },\n            \"name\": {\n                \"fr\": \"Léonard de Vinci création et innovations \"\n            },\n            \"blurb\": {\n                \"fr\": \"<p class=\\\"is-active\\\">Le 62ème colloque international d’études humanistes du Centre d’études supérieures de la Renaissance de Tours sera consacré à Léonard de Vinci en 2019.&nbsp;</p><p class=\\\"is-active\\\">Cet événement rassemblera les plus grands spécialistes internationaux du sujet et proposera d’aborder toutes les facettes de l’oeuvre de Léonard sous le prisme de l’invention et de l’innovation : mécanique, médecine, architecture, biomimétisme, etc. Une partie de ce colloque se tiendra dans des lieux marqués par la figure de Léonard de Vinci : le Château du Clos Lucé à Amboise et le Château de Chambord.</p>\"\n            },\n            \"start_at\": \"2019-06-01T00:00:00Z\",\n            \"end_at\": \"2019-06-30T00:00:00Z\"\n        },\n        \"relationships\": {},\n        \"links\": {\n            \"self\": {\n                \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv\"\n            },\n            \"relations\": {\n                \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/cities\",\n                \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/companies\",\n                \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/departments\",\n                \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/elects\",\n                \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/etablissement_publics\",\n                \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/event_groups\",\n                \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/events\",\n                \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/facilities\",\n                \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/news\",\n                \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/non_profits\",\n                \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/performers\",\n                \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/projects\",\n                \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/regions\",\n                \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/skills\"\n            },\n            \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/images\",\n            \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/documents\",\n            \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates\",\n            \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/type\",\n            \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/types\"\n        },\n        \"meta\": {\n            \"licenses\": [\n                {\n                    \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                    \"SPDX\": \"ODbL-1.0\",\n                    \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                    \"targets\": [\n                        \"cancelled\",\n                        \"cancellation_reason\",\n                        \"free_admission\",\n                        \"free_admission_condition\",\n                        \"punchline\",\n                        \"name\",\n                        \"blurb\",\n                        \"start_at\",\n                        \"end_at\"\n                    ]\n                }\n            ],\n            \"instances\": {\n                \"500-ans-renaissances\": [\n                    \"fr\"\n                ]\n            }\n        }\n    }\n}"}],"_postman_id":"df5ea80e-ad25-4efe-819f-aa6dc533178c"},{"name":"Search","id":"e0271768-d86c-4f00-9191-af53a8a58254","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.publidata.io/v2/:instance/events/?q=Sénart&size=10&page=1&marker=false&instances[]=2&types[]=Event&performers[]=Nakht&facilities[]=8&events[]=1&event_groups[]=1&news[]=1&projects[]=1&cities[]=7&etablissement_publics[]=1&departments[]=1&regions[]=1&skills[]=1&elects[]=1&bbox[]&event_types[]=Oeuvre d'art&event_styles[]=Gymnastique&date[start]=1526054400&date[end]=1526083199&price[min]=10&price[max]=50&free_admission=true&accessibilities[]=has_deaf_accessibility","description":"<p>Recherche d'événements : 🚧 à venir... </p>\n","urlObject":{"path":["v2",":instance","events",""],"host":["https://api.publidata.io"],"query":[{"description":{"content":"<p>Filtre textuel</p>\n","type":"text/plain"},"key":"q","value":"Sénart"},{"description":{"content":"<p>Nombre de résultats retournés (defaut: 10)</p>\n","type":"text/plain"},"key":"size","value":"10"},{"description":{"content":"<p>Pagination (defaut: 1)</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>Filtre booléen pour ne retourner que les locations (default: false)</p>\n","type":"text/plain"},"key":"marker","value":"false"},{"description":{"content":"<p>Filtre par instance (array d'id)</p>\n","type":"text/plain"},"key":"instances[]","value":"2"},{"description":{"content":"<p>Filtre par type de ressource (array de type parmi la liste suivante : News Event Facility Project City Epci Department Region EventGroup Skill Elect Performer Company NonProfit EtablissementPublic)</p>\n","type":"text/plain"},"key":"types[]","value":"Event"},{"description":{"content":"<p>Filtre par artiste lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"performers[]","value":"Nakht"},{"description":{"content":"<p>Filtre par équipement lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"facilities[]","value":"8"},{"description":{"content":"<p>Filtre par événement lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"events[]","value":"1"},{"description":{"content":"<p>Filtre par groupe d'événements lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"event_groups[]","value":"1"},{"description":{"content":"<p>Filtre par actualité liée (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"news[]","value":"1"},{"description":{"content":"<p>Filtre par projet lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"projects[]","value":"1"},{"description":{"content":"<p>Filtre par ville et location liées (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"cities[]","value":"7"},{"description":{"content":"<p>Filtre par établissement public lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"etablissement_publics[]","value":"1"},{"description":{"content":"<p>Filtre par departement lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"departments[]","value":"1"},{"description":{"content":"<p>Filtre par region liée (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"regions[]","value":"1"},{"description":{"content":"<p>Filtre par compétence liée (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"skills[]","value":"1"},{"description":{"content":"<p>Filtre par élu lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"elects[]","value":"1"},{"description":{"content":"<p>Filtre géographique (array de latitudes, longitudes dans l'ordre suivant minX, minY, maxX, maxY)</p>\n","type":"text/plain"},"key":"bbox[]","value":null},{"description":{"content":"<p>Filtre par type d'événement (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"event_types[]","value":"Oeuvre d'art"},{"description":{"content":"<p>Filtre par style d'événement (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"event_styles[]","value":"Gymnastique"},{"description":{"content":"<p>Filtre par date/heure de début (timestamp en seconde)</p>\n","type":"text/plain"},"key":"date[start]","value":"1526054400"},{"description":{"content":"<p>Filtre par date/heure de fin (timestamp en seconde)</p>\n","type":"text/plain"},"key":"date[end]","value":"1526083199"},{"description":{"content":"<p>Filtre de prix minimum</p>\n","type":"text/plain"},"key":"price[min]","value":"10"},{"description":{"content":"<p>Filtre de prix maximum</p>\n","type":"text/plain"},"key":"price[max]","value":"50"},{"description":{"content":"<p>Filtre de gratuité (boolean)</p>\n","type":"text/plain"},"key":"free_admission","value":"true"},{"description":{"content":"<p>Filtre d'accessibilité (array de string)</p>\n","type":"text/plain"},"key":"accessibilities[]","value":"has_deaf_accessibility"}],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"}]}},"response":[{"id":"0f106d08-532a-4b2a-876a-62ceca7e79ee","name":"Search events","originalRequest":{"method":"GET","header":[],"url":{"raw":"www.publidata.io/api/v1/events?q=&options[geo][top_left][lat]=49.05965195372349&options[geo][top_left][lon]=2.1371613664061897&options[geo][bottom_right][lat]=48.21570798955211&options[geo][bottom_right][lon]=2.7688752335936897&options[city]=Combs-la-Ville&options[paging][from]=0&options[event_types][]=Concert&options[dates][start_date]=1521812100000&options[dates][end_date]=1522499700000&options[instances][]=2","host":["www","publidata","io"],"path":["api","v1","events"],"query":[{"key":"q","value":"","description":"Recherche (full-text)"},{"key":"options[geo][top_left][lat]","value":"49.05965195372349","description":"Latitude coin supérieur gauche geo-box (lat)"},{"key":"options[geo][top_left][lon]","value":"2.1371613664061897","description":"Longitude coin supérieur gauche geo-box (lon)"},{"key":"options[geo][bottom_right][lat]","value":"48.21570798955211","description":"Latitude coin inférieur droit geo-box (lat)"},{"key":"options[geo][bottom_right][lon]","value":"2.7688752335936897","description":"Longitude coin inférieur droit geo-box (lon)"},{"key":"options[city]","value":"Combs-la-Ville","description":"Ville (full-text ou code postal)"},{"key":"options[paging][from]","value":"0","description":"Début de la pagination (integer)"},{"key":"options[event_types][]","value":"Concert","description":"Types d'événement (array de string)"},{"key":"options[dates][start_date]","value":"1521812100000","description":"Date de début (format timestamp unix 1508267068688)"},{"key":"options[dates][end_date]","value":"1522499700000","description":"Date de fin (format timestamp unix 1539803068688)"},{"key":"options[instances][]","value":"2"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"took\": 11,\n    \"timed_out\": false,\n    \"_shards\": {\n        \"total\": 1,\n        \"successful\": 1,\n        \"failed\": 0\n    },\n    \"hits\": {\n        \"total\": 2,\n        \"max_score\": 0.9812665,\n        \"hits\": [\n            {\n                \"_index\": \"events\",\n                \"_type\": \"event\",\n                \"_id\": \"3241\",\n                \"_score\": 0.9812665,\n                \"_source\": {\n                    \"id\": 3241,\n                    \"name\": \"Concert des orchestres\",\n                    \"slug\": \"concert-des-orchestres\",\n                    \"status\": \"published\",\n                    \"free_admission\": true,\n                    \"start_date\": \"2018-03-23T00:00:00.000+01:00\",\n                    \"end_date\": \"2018-03-23T00:00:00.000+01:00\",\n                    \"punchline\": \"Le vendredi 23 mars 2018 à 20h au Théâtre de la Coupole, les musiciens du Conservatoire Maurice Ohana de Combs-la-ville vous attendent pour leur rendez-vous annuel...\",\n                    \"blurb\": \"Cette soirée donne la possibilité à plusieurs formations orchestrales du conservatoire Maurice Ohana de se produire sur scène. \\r\\n\\r\\nProgramme musical éclectique et varié, ce concert  permet de vivre la musique ensemble et de la partager sans modération avec le public.\",\n                    \"linked_objects\": [\n                        {\n                            \"id\": 180,\n                            \"type\": \"Facility\",\n                            \"name\": \"La Coupole\"\n                        },\n                        {\n                            \"id\": 12,\n                            \"type\": \"City\",\n                            \"name\": \"Combs-la-Ville\"\n                        }\n                    ],\n                    \"cover_picture\": {\n                        \"id\": 22632,\n                        \"name\": \"image de couverture de Concert des orchestres\",\n                        \"alt\": \"image de couverture de Concert des orchestres\",\n                        \"description\": \"image de couverture de Concert des orchestres\",\n                        \"slug\": null,\n                        \"image_urls_as_json\": {\n                            \"image_original_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/632/original/open-uri20171002-4-1etqlbo?1506962457\",\n                            \"image_small_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/632/image_small/open-uri20171002-4-1etqlbo?1506962457\",\n                            \"image_medium_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/632/image_medium/open-uri20171002-4-1etqlbo?1506962457\",\n                            \"image_large_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/632/image_large/open-uri20171002-4-1etqlbo?1506962457\"\n                        }\n                    },\n                    \"instances\": [\n                        {\n                            \"id\": 2,\n                            \"slug\": \"portail-sortir-gps\"\n                        }\n                    ],\n                    \"event_type\": {\n                        \"id\": 13,\n                        \"name\": \"Concert\"\n                    },\n                    \"event_styles\": [\n                        {\n                            \"id\": 82,\n                            \"name\": \"World Music\"\n                        }\n                    ],\n                    \"event_dates\": [\n                        {\n                            \"id\": 37799,\n                            \"start_hour\": \"2000-01-01T20:00:00.000Z\",\n                            \"end_hour\": \"2000-01-01T22:00:00.000Z\",\n                            \"date\": \"2018-03-23T00:00:00.000+01:00\",\n                            \"sold_out\": false,\n                            \"start_date\": \"2018-03-23T20:00:00.000+00:00\",\n                            \"end_date\": \"2018-03-23T22:00:00.000+00:00\"\n                        }\n                    ],\n                    \"facilities\": [\n                        {\n                            \"id\": 180,\n                            \"name\": \"La Coupole\",\n                            \"slug\": \"la-coupole\",\n                            \"address\": \"Rue Jean François Millet, 77380 Combs-la-Ville, France\",\n                            \"location\": {\n                                \"lat\": 48.659695,\n                                \"lon\": 2.5662415\n                            }\n                        }\n                    ],\n                    \"locations\": [],\n                    \"fees\": [],\n                    \"tags\": [],\n                    \"pages\": [\n                        {\n                            \"id\": 7659,\n                            \"instance\": {\n                                \"id\": 2,\n                                \"slug\": \"portail-sortir-gps\"\n                            }\n                        }\n                    ]\n                }\n            },\n            {\n                \"_index\": \"events\",\n                \"_type\": \"event\",\n                \"_id\": \"3983\",\n                \"_score\": 0.9794048,\n                \"_source\": {\n                    \"id\": 3983,\n                    \"name\": \"Après-midi musicale: Claude Debussy\",\n                    \"slug\": \"apres-midi-musicale-claude-debussy\",\n                    \"status\": \"published\",\n                    \"free_admission\": true,\n                    \"start_date\": \"2018-03-24T00:00:00.000+01:00\",\n                    \"end_date\": \"2018-03-24T00:00:00.000+01:00\",\n                    \"punchline\": \"A l'occasion du centenaire de la mort de Claude Debussy, la media-ludothèque et le conservatoire Maurice Ohana vous invitent à une après-midi musical, le samedi 24 mars à partir de 15h30.\",\n                    \"blurb\": \"Claude Debussy (1862-1918) était un compositeur français. Pour célébrer son centenaire, nous vous invitons à un après-midi musical. Au programme, une conférence par Bruno Giner sur le compositeur à 15h30. \\r\\nPuis, à 18h, les élèves du conservatoire interpréteront une sélection d’œuvres de Claude Debussy.\",\n                    \"linked_objects\": [\n                        {\n                            \"id\": 42,\n                            \"type\": \"Facility\",\n                            \"name\": \"Médiathèque de Combs-la-Ville\"\n                        },\n                        {\n                            \"id\": 12,\n                            \"type\": \"City\",\n                            \"name\": \"Combs-la-Ville\"\n                        }\n                    ],\n                    \"cover_picture\": {\n                        \"id\": 24665,\n                        \"name\": \"image de couverture de Après-midi musicale: Claude Debussy\",\n                        \"alt\": \"image de couverture de Après-midi musicale: Claude Debussy\",\n                        \"description\": \"image de couverture de Après-midi musicale: Claude Debussy\",\n                        \"slug\": null,\n                        \"image_urls_as_json\": {\n                            \"image_original_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/665/original/Photo_23a_Claude_Debussy.jpg?1516441408\",\n                            \"image_small_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/665/image_small/Photo_23a_Claude_Debussy.jpg?1516441408\",\n                            \"image_medium_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/665/image_medium/Photo_23a_Claude_Debussy.jpg?1516441408\",\n                            \"image_large_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/665/image_large/Photo_23a_Claude_Debussy.jpg?1516441408\"\n                        }\n                    },\n                    \"instances\": [\n                        {\n                            \"id\": 2,\n                            \"slug\": \"portail-sortir-gps\"\n                        }\n                    ],\n                    \"event_type\": {\n                        \"id\": 13,\n                        \"name\": \"Concert\"\n                    },\n                    \"event_styles\": [\n                        {\n                            \"id\": 111,\n                            \"name\": \"Musique Classique\"\n                        }\n                    ],\n                    \"event_dates\": [\n                        {\n                            \"id\": 41100,\n                            \"start_hour\": \"2000-01-01T15:30:00.000Z\",\n                            \"end_hour\": \"2000-01-01T19:30:00.000Z\",\n                            \"date\": \"2018-03-24T00:00:00.000+01:00\",\n                            \"sold_out\": false,\n                            \"start_date\": \"2018-03-24T15:30:00.000+00:00\",\n                            \"end_date\": \"2018-03-24T19:30:00.000+00:00\"\n                        }\n                    ],\n                    \"facilities\": [\n                        {\n                            \"id\": 42,\n                            \"name\": \"Médiathèque de Combs-la-Ville\",\n                            \"slug\": \"mediatheque-de-combs-la-ville\",\n                            \"address\": \"Rue Jean François Millet, 77380 Combs-la-Ville, France\",\n                            \"location\": {\n                                \"lat\": 48.659695,\n                                \"lon\": 2.5662415\n                            }\n                        }\n                    ],\n                    \"locations\": [],\n                    \"fees\": [],\n                    \"accessibility\": {\n                        \"id\": 1766,\n                        \"deaf_lsf\": false,\n                        \"deaf_vision_based\": false,\n                        \"deaf_subtitle\": false,\n                        \"deaf_hearing_loop\": false,\n                        \"blind_audio_description\": false,\n                        \"blind_darkness_based\": false,\n                        \"blind_text_based\": false,\n                        \"blind_braille\": false,\n                        \"blind_large_print\": false,\n                        \"motor_disabled_access\": true,\n                        \"has_accessibility\": true,\n                        \"has_deaf_accessibility\": false,\n                        \"has_blind_accessibility\": false\n                    },\n                    \"tags\": [\n                        \"Culture\"\n                    ],\n                    \"pages\": [\n                        {\n                            \"id\": 8636,\n                            \"instance\": {\n                                \"id\": 2,\n                                \"slug\": \"portail-sortir-gps\"\n                            }\n                        }\n                    ]\n                }\n            }\n        ]\n    },\n    \"aggregations\": {\n        \"event_styles_terms_agg\": {\n            \"doc_count\": 2,\n            \"name\": {\n                \"doc_count_error_upper_bound\": 0,\n                \"sum_other_doc_count\": 0,\n                \"buckets\": [\n                    {\n                        \"key\": \"111\",\n                        \"doc_count\": 1,\n                        \"name\": {\n                            \"doc_count_error_upper_bound\": 0,\n                            \"sum_other_doc_count\": 0,\n                            \"buckets\": [\n                                {\n                                    \"key\": \"classique\",\n                                    \"doc_count\": 1\n                                },\n                                {\n                                    \"key\": \"musique\",\n                                    \"doc_count\": 1\n                                }\n                            ]\n                        }\n                    },\n                    {\n                        \"key\": \"82\",\n                        \"doc_count\": 1,\n                        \"name\": {\n                            \"doc_count_error_upper_bound\": 0,\n                            \"sum_other_doc_count\": 0,\n                            \"buckets\": [\n                                {\n                                    \"key\": \"music\",\n                                    \"doc_count\": 1\n                                },\n                                {\n                                    \"key\": \"world\",\n                                    \"doc_count\": 1\n                                }\n                            ]\n                        }\n                    }\n                ]\n            }\n        },\n        \"events\": {\n            \"doc_count\": 3838,\n            \"dates\": {\n                \"doc_count\": 11064,\n                \"this_month\": {\n                    \"doc_count\": 737,\n                    \"events\": {\n                        \"doc_count\": 278\n                    }\n                },\n                \"this_week_end\": {\n                    \"doc_count\": 81,\n                    \"events\": {\n                        \"doc_count\": 54\n                    }\n                },\n                \"past\": {\n                    \"doc_count\": 10070,\n                    \"events\": {\n                        \"doc_count\": 3132\n                    }\n                },\n                \"today\": {\n                    \"doc_count\": 34,\n                    \"events\": {\n                        \"doc_count\": 28\n                    }\n                },\n                \"tomorrow\": {\n                    \"doc_count\": 22,\n                    \"events\": {\n                        \"doc_count\": 19\n                    }\n                },\n                \"last_days\": {\n                    \"doc_count\": 133,\n                    \"events\": {\n                        \"doc_count\": 75\n                    }\n                },\n                \"upcoming\": {\n                    \"doc_count\": 1028,\n                    \"events\": {\n                        \"doc_count\": 390\n                    }\n                },\n                \"this_week\": {\n                    \"doc_count\": 197,\n                    \"events\": {\n                        \"doc_count\": 96\n                    }\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"e0271768-d86c-4f00-9191-af53a8a58254"}],"id":"570367f0-8d6d-4fd7-a293-9e24cd20919b","_postman_id":"570367f0-8d6d-4fd7-a293-9e24cd20919b","description":""}],"id":"3dd32b67-8e47-4cb3-ad17-c3368c5c7cfb","description":"<p>Les événements</p>\n","event":[{"listen":"prerequest","script":{"id":"768578b7-1e5d-45b7-ab56-2a8b856f2061","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"a419bb76-510b-4b2b-bc5d-608de7e9b0d3","type":"text/javascript","exec":[""]}}],"_postman_id":"3dd32b67-8e47-4cb3-ad17-c3368c5c7cfb"},{"name":"Équipements","item":[{"name":"Endpoints principaux","item":[{"name":"Index","id":"9d632f94-f9cb-4fc5-9c12-9fb7ac3beebb","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/facilities","description":"<p>Liste des événements</p>\n","urlObject":{"path":["v2",":instance","facilities"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"}]}},"response":[{"id":"0d78a3e2-6892-40ff-9f44-72f9d152b40d","name":"✅ Index","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.publidata.io/v2/:instance/facilities","host":["https://api.publidata.io"],"path":["v2",":instance","facilities"],"variable":[{"key":"instance","value":"500-ans-renaissances"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Fri, 16 Nov 2018 08:13:18 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"d31b22c894d74a954dec0cad1bcfc082\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"a9138223-5769-4d27-9ba5-3c564da83f00"},{"key":"X-Runtime","value":"0.689306"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"P7r1IwknVk\",\n            \"type\": \"facility\",\n            \"attributes\": {\n                \"id\": \"P7r1IwknVk\",\n                \"created_at\": \"2018-11-15T13:48:05Z\",\n                \"updated_at\": \"2018-11-15T19:58:51Z\",\n                \"address\": \"1 Rue Fernand Rabier, 45000 Orléans, France\",\n                \"metas\": {},\n                \"geo_shape\": {},\n                \"geo_point\": {\n                    \"type\": \"Point\",\n                    \"coordinates\": [\n                        47.9026567,\n                        1.909731\n                    ]\n                },\n                \"name\": {\n                    \"fr\": \"Musée des beaux-arts d'Orléans\"\n                }\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/P7r1IwknVk\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/P7r1IwknVk/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/P7r1IwknVk/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/P7r1IwknVk/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/P7r1IwknVk/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/P7r1IwknVk/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/P7r1IwknVk/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/P7r1IwknVk/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/P7r1IwknVk/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/P7r1IwknVk/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/P7r1IwknVk/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/P7r1IwknVk/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/P7r1IwknVk/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/P7r1IwknVk/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/P7r1IwknVk/skills\"\n                },\n                \"socials\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/P7r1IwknVk/socials\",\n                \"contacts\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/P7r1IwknVk/contacts\",\n                \"bookings\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/P7r1IwknVk/bookings\",\n                \"schedules\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/P7r1IwknVk/schedules\",\n                \"fees\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/P7r1IwknVk/fees\"\n            },\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [\n                    \"cities\",\n                    \"companies\",\n                    \"departments\",\n                    \"elects\",\n                    \"etablissement_publics\",\n                    \"event_groups\",\n                    \"events\",\n                    \"facilities\",\n                    \"news\",\n                    \"non_profits\",\n                    \"performers\",\n                    \"projects\",\n                    \"regions\",\n                    \"skills\",\n                    \"socials\",\n                    \"contacts\",\n                    \"bookings\",\n                    \"schedules\",\n                    \"fees\",\n                    \"images\",\n                    \"documents\",\n                    \"city\",\n                    \"facility_type\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"address\",\n                            \"metas\",\n                            \"geo_shape\",\n                            \"geo_point\",\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"0LyYIYMOLB\",\n            \"type\": \"facility\",\n            \"attributes\": {\n                \"id\": \"0LyYIYMOLB\",\n                \"created_at\": \"2018-11-14T13:33:31Z\",\n                \"updated_at\": \"2018-11-15T19:58:50Z\",\n                \"address\": \"1 Rue François 1er, 37400 Amboise, France\",\n                \"metas\": {},\n                \"geo_shape\": {},\n                \"geo_point\": {\n                    \"type\": \"Point\",\n                    \"coordinates\": [\n                        47.4129862,\n                        0.9839018\n                    ]\n                },\n                \"name\": {\n                    \"fr\": \"Église Saint-Florentin\"\n                }\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/0LyYIYMOLB\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/0LyYIYMOLB/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/0LyYIYMOLB/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/0LyYIYMOLB/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/0LyYIYMOLB/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/0LyYIYMOLB/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/0LyYIYMOLB/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/0LyYIYMOLB/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/0LyYIYMOLB/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/0LyYIYMOLB/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/0LyYIYMOLB/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/0LyYIYMOLB/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/0LyYIYMOLB/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/0LyYIYMOLB/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/0LyYIYMOLB/skills\"\n                },\n                \"socials\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/0LyYIYMOLB/socials\",\n                \"contacts\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/0LyYIYMOLB/contacts\",\n                \"bookings\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/0LyYIYMOLB/bookings\",\n                \"schedules\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/0LyYIYMOLB/schedules\",\n                \"fees\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/0LyYIYMOLB/fees\"\n            },\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [\n                    \"cities\",\n                    \"companies\",\n                    \"departments\",\n                    \"elects\",\n                    \"etablissement_publics\",\n                    \"event_groups\",\n                    \"events\",\n                    \"facilities\",\n                    \"news\",\n                    \"non_profits\",\n                    \"performers\",\n                    \"projects\",\n                    \"regions\",\n                    \"skills\",\n                    \"socials\",\n                    \"contacts\",\n                    \"bookings\",\n                    \"schedules\",\n                    \"fees\",\n                    \"images\",\n                    \"documents\",\n                    \"city\",\n                    \"facility_type\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"address\",\n                            \"metas\",\n                            \"geo_shape\",\n                            \"geo_point\",\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"4LnEI6OOxk\",\n            \"type\": \"facility\",\n            \"attributes\": {\n                \"id\": \"4LnEI6OOxk\",\n                \"created_at\": \"2018-11-09T17:09:35Z\",\n                \"updated_at\": \"2018-11-15T19:58:59Z\",\n                \"address\": \"Place Etienne Dolet, 18000 Bourges, France\",\n                \"metas\": {},\n                \"geo_shape\": {},\n                \"geo_point\": {\n                    \"type\": \"Point\",\n                    \"coordinates\": [\n                        47.082281,\n                        2.398189\n                    ]\n                },\n                \"name\": {\n                    \"fr\": \"Cathédrale de Bourges\"\n                }\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/4LnEI6OOxk\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/4LnEI6OOxk/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/4LnEI6OOxk/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/4LnEI6OOxk/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/4LnEI6OOxk/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/4LnEI6OOxk/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/4LnEI6OOxk/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/4LnEI6OOxk/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/4LnEI6OOxk/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/4LnEI6OOxk/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/4LnEI6OOxk/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/4LnEI6OOxk/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/4LnEI6OOxk/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/4LnEI6OOxk/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/4LnEI6OOxk/skills\"\n                },\n                \"socials\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/4LnEI6OOxk/socials\",\n                \"contacts\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/4LnEI6OOxk/contacts\",\n                \"bookings\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/4LnEI6OOxk/bookings\",\n                \"schedules\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/4LnEI6OOxk/schedules\",\n                \"fees\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/4LnEI6OOxk/fees\"\n            },\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [\n                    \"cities\",\n                    \"companies\",\n                    \"departments\",\n                    \"elects\",\n                    \"etablissement_publics\",\n                    \"event_groups\",\n                    \"events\",\n                    \"facilities\",\n                    \"news\",\n                    \"non_profits\",\n                    \"performers\",\n                    \"projects\",\n                    \"regions\",\n                    \"skills\",\n                    \"socials\",\n                    \"contacts\",\n                    \"bookings\",\n                    \"schedules\",\n                    \"fees\",\n                    \"images\",\n                    \"documents\",\n                    \"city\",\n                    \"facility_type\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"address\",\n                            \"metas\",\n                            \"geo_shape\",\n                            \"geo_point\",\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"3VPeIdJy7E\",\n            \"type\": \"facility\",\n            \"attributes\": {\n                \"id\": \"3VPeIdJy7E\",\n                \"created_at\": \"2018-11-09T16:16:22Z\",\n                \"updated_at\": \"2018-11-15T19:58:59Z\",\n                \"address\": \"12 Hle Saint-Bonnet, 18000 Bourges, France\",\n                \"metas\": {},\n                \"geo_shape\": {},\n                \"geo_point\": {\n                    \"type\": \"Point\",\n                    \"coordinates\": [\n                        47.0861376,\n                        2.3999908\n                    ]\n                },\n                \"name\": {\n                    \"fr\": \"Eglise Saint-Bonnet Bourges\"\n                }\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/3VPeIdJy7E\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/3VPeIdJy7E/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/3VPeIdJy7E/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/3VPeIdJy7E/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/3VPeIdJy7E/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/3VPeIdJy7E/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/3VPeIdJy7E/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/3VPeIdJy7E/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/3VPeIdJy7E/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/3VPeIdJy7E/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/3VPeIdJy7E/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/3VPeIdJy7E/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/3VPeIdJy7E/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/3VPeIdJy7E/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/3VPeIdJy7E/skills\"\n                },\n                \"socials\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/3VPeIdJy7E/socials\",\n                \"contacts\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/3VPeIdJy7E/contacts\",\n                \"bookings\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/3VPeIdJy7E/bookings\",\n                \"schedules\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/3VPeIdJy7E/schedules\",\n                \"fees\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/3VPeIdJy7E/fees\"\n            },\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [\n                    \"cities\",\n                    \"companies\",\n                    \"departments\",\n                    \"elects\",\n                    \"etablissement_publics\",\n                    \"event_groups\",\n                    \"events\",\n                    \"facilities\",\n                    \"news\",\n                    \"non_profits\",\n                    \"performers\",\n                    \"projects\",\n                    \"regions\",\n                    \"skills\",\n                    \"socials\",\n                    \"contacts\",\n                    \"bookings\",\n                    \"schedules\",\n                    \"fees\",\n                    \"images\",\n                    \"documents\",\n                    \"city\",\n                    \"facility_type\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"address\",\n                            \"metas\",\n                            \"geo_shape\",\n                            \"geo_point\",\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"axGaIKqXVN\",\n            \"type\": \"facility\",\n            \"attributes\": {\n                \"id\": \"axGaIKqXVN\",\n                \"created_at\": \"2018-11-09T16:11:14Z\",\n                \"updated_at\": \"2018-11-15T19:58:59Z\",\n                \"address\": \"9 Rue des 3 Bourses, 18000 Bourges, France\",\n                \"metas\": {},\n                \"geo_shape\": {},\n                \"geo_point\": {\n                    \"type\": \"Point\",\n                    \"coordinates\": [\n                        47.0820839,\n                        2.3925398\n                    ]\n                },\n                \"name\": {\n                    \"fr\": \"Eglise Saint-Pierre-le-Guillard Bourges\"\n                }\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/axGaIKqXVN\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/axGaIKqXVN/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/axGaIKqXVN/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/axGaIKqXVN/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/axGaIKqXVN/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/axGaIKqXVN/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/axGaIKqXVN/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/axGaIKqXVN/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/axGaIKqXVN/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/axGaIKqXVN/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/axGaIKqXVN/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/axGaIKqXVN/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/axGaIKqXVN/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/axGaIKqXVN/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/axGaIKqXVN/skills\"\n                },\n                \"socials\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/axGaIKqXVN/socials\",\n                \"contacts\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/axGaIKqXVN/contacts\",\n                \"bookings\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/axGaIKqXVN/bookings\",\n                \"schedules\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/axGaIKqXVN/schedules\",\n                \"fees\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/axGaIKqXVN/fees\"\n            },\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [\n                    \"cities\",\n                    \"companies\",\n                    \"departments\",\n                    \"elects\",\n                    \"etablissement_publics\",\n                    \"event_groups\",\n                    \"events\",\n                    \"facilities\",\n                    \"news\",\n                    \"non_profits\",\n                    \"performers\",\n                    \"projects\",\n                    \"regions\",\n                    \"skills\",\n                    \"socials\",\n                    \"contacts\",\n                    \"bookings\",\n                    \"schedules\",\n                    \"fees\",\n                    \"images\",\n                    \"documents\",\n                    \"city\",\n                    \"facility_type\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"address\",\n                            \"metas\",\n                            \"geo_shape\",\n                            \"geo_point\",\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"8VZoI8z47d\",\n            \"type\": \"facility\",\n            \"attributes\": {\n                \"id\": \"8VZoI8z47d\",\n                \"created_at\": \"2018-11-09T16:07:06Z\",\n                \"updated_at\": \"2018-11-15T19:58:58Z\",\n                \"address\": null,\n                \"metas\": {},\n                \"geo_shape\": {},\n                \"geo_point\": {},\n                \"name\": {\n                    \"fr\": \"Eglise Notre-Dame\"\n                }\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/8VZoI8z47d\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/8VZoI8z47d/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/8VZoI8z47d/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/8VZoI8z47d/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/8VZoI8z47d/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/8VZoI8z47d/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/8VZoI8z47d/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/8VZoI8z47d/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/8VZoI8z47d/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/8VZoI8z47d/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/8VZoI8z47d/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/8VZoI8z47d/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/8VZoI8z47d/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/8VZoI8z47d/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/8VZoI8z47d/skills\"\n                },\n                \"socials\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/8VZoI8z47d/socials\",\n                \"contacts\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/8VZoI8z47d/contacts\",\n                \"bookings\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/8VZoI8z47d/bookings\",\n                \"schedules\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/8VZoI8z47d/schedules\",\n                \"fees\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/8VZoI8z47d/fees\"\n            },\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [\n                    \"cities\",\n                    \"companies\",\n                    \"departments\",\n                    \"elects\",\n                    \"etablissement_publics\",\n                    \"event_groups\",\n                    \"events\",\n                    \"facilities\",\n                    \"news\",\n                    \"non_profits\",\n                    \"performers\",\n                    \"projects\",\n                    \"regions\",\n                    \"skills\",\n                    \"socials\",\n                    \"contacts\",\n                    \"bookings\",\n                    \"schedules\",\n                    \"fees\",\n                    \"images\",\n                    \"documents\",\n                    \"city\",\n                    \"facility_type\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"address\",\n                            \"metas\",\n                            \"geo_shape\",\n                            \"geo_point\",\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"eVgWI2njVo\",\n            \"type\": \"facility\",\n            \"attributes\": {\n                \"id\": \"eVgWI2njVo\",\n                \"created_at\": \"2018-11-09T13:48:46Z\",\n                \"updated_at\": \"2018-11-15T19:58:58Z\",\n                \"address\": \"108 Rue Jean Baffier, 18000 Bourges, France\",\n                \"metas\": {},\n                \"geo_shape\": {},\n                \"geo_point\": {\n                    \"type\": \"Point\",\n                    \"coordinates\": [\n                        47.0734487,\n                        2.4086062\n                    ]\n                },\n                \"name\": {\n                    \"fr\": \"Lycée Jacques Cœur\"\n                }\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/eVgWI2njVo\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/eVgWI2njVo/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/eVgWI2njVo/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/eVgWI2njVo/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/eVgWI2njVo/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/eVgWI2njVo/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/eVgWI2njVo/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/eVgWI2njVo/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/eVgWI2njVo/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/eVgWI2njVo/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/eVgWI2njVo/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/eVgWI2njVo/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/eVgWI2njVo/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/eVgWI2njVo/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/eVgWI2njVo/skills\"\n                },\n                \"socials\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/eVgWI2njVo/socials\",\n                \"contacts\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/eVgWI2njVo/contacts\",\n                \"bookings\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/eVgWI2njVo/bookings\",\n                \"schedules\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/eVgWI2njVo/schedules\",\n                \"fees\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/eVgWI2njVo/fees\"\n            },\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [\n                    \"cities\",\n                    \"companies\",\n                    \"departments\",\n                    \"elects\",\n                    \"etablissement_publics\",\n                    \"event_groups\",\n                    \"events\",\n                    \"facilities\",\n                    \"news\",\n                    \"non_profits\",\n                    \"performers\",\n                    \"projects\",\n                    \"regions\",\n                    \"skills\",\n                    \"socials\",\n                    \"contacts\",\n                    \"bookings\",\n                    \"schedules\",\n                    \"fees\",\n                    \"images\",\n                    \"documents\",\n                    \"city\",\n                    \"facility_type\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"address\",\n                            \"metas\",\n                            \"geo_shape\",\n                            \"geo_point\",\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"E79JIeOpxM\",\n            \"type\": \"facility\",\n            \"attributes\": {\n                \"id\": \"E79JIeOpxM\",\n                \"created_at\": \"2018-11-09T13:43:04Z\",\n                \"updated_at\": \"2018-11-15T19:58:58Z\",\n                \"address\": \"21 Rue Victor Hugo, 18000 Bourges, France\",\n                \"metas\": {},\n                \"geo_shape\": {},\n                \"geo_point\": {\n                    \"type\": \"Point\",\n                    \"coordinates\": [\n                        47.0816575,\n                        2.3983875\n                    ]\n                },\n                \"name\": {\n                    \"fr\": \"Office de tourisme de Bourges\"\n                }\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/E79JIeOpxM\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/E79JIeOpxM/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/E79JIeOpxM/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/E79JIeOpxM/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/E79JIeOpxM/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/E79JIeOpxM/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/E79JIeOpxM/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/E79JIeOpxM/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/E79JIeOpxM/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/E79JIeOpxM/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/E79JIeOpxM/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/E79JIeOpxM/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/E79JIeOpxM/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/E79JIeOpxM/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/E79JIeOpxM/skills\"\n                },\n                \"socials\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/E79JIeOpxM/socials\",\n                \"contacts\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/E79JIeOpxM/contacts\",\n                \"bookings\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/E79JIeOpxM/bookings\",\n                \"schedules\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/E79JIeOpxM/schedules\",\n                \"fees\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/E79JIeOpxM/fees\"\n            },\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [\n                    \"cities\",\n                    \"companies\",\n                    \"departments\",\n                    \"elects\",\n                    \"etablissement_publics\",\n                    \"event_groups\",\n                    \"events\",\n                    \"facilities\",\n                    \"news\",\n                    \"non_profits\",\n                    \"performers\",\n                    \"projects\",\n                    \"regions\",\n                    \"skills\",\n                    \"socials\",\n                    \"contacts\",\n                    \"bookings\",\n                    \"schedules\",\n                    \"fees\",\n                    \"images\",\n                    \"documents\",\n                    \"city\",\n                    \"facility_type\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"address\",\n                            \"metas\",\n                            \"geo_shape\",\n                            \"geo_point\",\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"YVYaIqYbVD\",\n            \"type\": \"facility\",\n            \"attributes\": {\n                \"id\": \"YVYaIqYbVD\",\n                \"created_at\": \"2018-11-09T13:27:44Z\",\n                \"updated_at\": \"2018-11-15T19:58:57Z\",\n                \"address\": \"4 Rue des Arènes, 18000 Bourges, France\",\n                \"metas\": {},\n                \"geo_shape\": {},\n                \"geo_point\": {\n                    \"type\": \"Point\",\n                    \"coordinates\": [\n                        47.085454,\n                        2.3932\n                    ]\n                },\n                \"name\": {\n                    \"fr\": \"Musée du Berry / Hôtel Cujas\"\n                }\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/YVYaIqYbVD\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/YVYaIqYbVD/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/YVYaIqYbVD/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/YVYaIqYbVD/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/YVYaIqYbVD/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/YVYaIqYbVD/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/YVYaIqYbVD/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/YVYaIqYbVD/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/YVYaIqYbVD/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/YVYaIqYbVD/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/YVYaIqYbVD/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/YVYaIqYbVD/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/YVYaIqYbVD/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/YVYaIqYbVD/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/YVYaIqYbVD/skills\"\n                },\n                \"socials\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/YVYaIqYbVD/socials\",\n                \"contacts\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/YVYaIqYbVD/contacts\",\n                \"bookings\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/YVYaIqYbVD/bookings\",\n                \"schedules\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/YVYaIqYbVD/schedules\",\n                \"fees\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/YVYaIqYbVD/fees\"\n            },\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [\n                    \"cities\",\n                    \"companies\",\n                    \"departments\",\n                    \"elects\",\n                    \"etablissement_publics\",\n                    \"event_groups\",\n                    \"events\",\n                    \"facilities\",\n                    \"news\",\n                    \"non_profits\",\n                    \"performers\",\n                    \"projects\",\n                    \"regions\",\n                    \"skills\",\n                    \"socials\",\n                    \"contacts\",\n                    \"bookings\",\n                    \"schedules\",\n                    \"fees\",\n                    \"images\",\n                    \"documents\",\n                    \"city\",\n                    \"facility_type\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"address\",\n                            \"metas\",\n                            \"geo_shape\",\n                            \"geo_point\",\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"87oOI6D07Q\",\n            \"type\": \"facility\",\n            \"attributes\": {\n                \"id\": \"87oOI6D07Q\",\n                \"created_at\": \"2018-11-09T11:19:11Z\",\n                \"updated_at\": \"2018-11-15T19:58:57Z\",\n                \"address\": \"26 Route de la Chapelle, 18000 Bourges, France\",\n                \"metas\": {},\n                \"geo_shape\": {},\n                \"geo_point\": {\n                    \"type\": \"Point\",\n                    \"coordinates\": [\n                        47.0759418,\n                        2.3823336\n                    ]\n                },\n                \"name\": {\n                    \"fr\": \"Transpalette Centre d'art contemporain\"\n                }\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/87oOI6D07Q\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/87oOI6D07Q/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/87oOI6D07Q/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/87oOI6D07Q/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/87oOI6D07Q/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/87oOI6D07Q/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/87oOI6D07Q/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/87oOI6D07Q/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/87oOI6D07Q/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/87oOI6D07Q/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/87oOI6D07Q/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/87oOI6D07Q/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/87oOI6D07Q/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/87oOI6D07Q/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/87oOI6D07Q/skills\"\n                },\n                \"socials\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/87oOI6D07Q/socials\",\n                \"contacts\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/87oOI6D07Q/contacts\",\n                \"bookings\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/87oOI6D07Q/bookings\",\n                \"schedules\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/87oOI6D07Q/schedules\",\n                \"fees\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/87oOI6D07Q/fees\"\n            },\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [\n                    \"cities\",\n                    \"companies\",\n                    \"departments\",\n                    \"elects\",\n                    \"etablissement_publics\",\n                    \"event_groups\",\n                    \"events\",\n                    \"facilities\",\n                    \"news\",\n                    \"non_profits\",\n                    \"performers\",\n                    \"projects\",\n                    \"regions\",\n                    \"skills\",\n                    \"socials\",\n                    \"contacts\",\n                    \"bookings\",\n                    \"schedules\",\n                    \"fees\",\n                    \"images\",\n                    \"documents\",\n                    \"city\",\n                    \"facility_type\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"address\",\n                            \"metas\",\n                            \"geo_shape\",\n                            \"geo_point\",\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"gLb8I3qJ7J\",\n            \"type\": \"facility\",\n            \"attributes\": {\n                \"id\": \"gLb8I3qJ7J\",\n                \"created_at\": \"2018-11-09T11:10:40Z\",\n                \"updated_at\": \"2018-11-15T19:58:56Z\",\n                \"address\": \"10Bis Rue Jacques Cœur, 18000 Bourges, France\",\n                \"metas\": {},\n                \"geo_shape\": {},\n                \"geo_point\": {\n                    \"type\": \"Point\",\n                    \"coordinates\": [\n                        47.0845181,\n                        2.3935103\n                    ]\n                },\n                \"name\": {\n                    \"fr\": \"Palais Jacques Cœur\"\n                }\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/gLb8I3qJ7J\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/gLb8I3qJ7J/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/gLb8I3qJ7J/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/gLb8I3qJ7J/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/gLb8I3qJ7J/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/gLb8I3qJ7J/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/gLb8I3qJ7J/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/gLb8I3qJ7J/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/gLb8I3qJ7J/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/gLb8I3qJ7J/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/gLb8I3qJ7J/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/gLb8I3qJ7J/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/gLb8I3qJ7J/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/gLb8I3qJ7J/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/gLb8I3qJ7J/skills\"\n                },\n                \"socials\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/gLb8I3qJ7J/socials\",\n                \"contacts\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/gLb8I3qJ7J/contacts\",\n                \"bookings\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/gLb8I3qJ7J/bookings\",\n                \"schedules\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/gLb8I3qJ7J/schedules\",\n                \"fees\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/gLb8I3qJ7J/fees\"\n            },\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [\n                    \"cities\",\n                    \"companies\",\n                    \"departments\",\n                    \"elects\",\n                    \"etablissement_publics\",\n                    \"event_groups\",\n                    \"events\",\n                    \"facilities\",\n                    \"news\",\n                    \"non_profits\",\n                    \"performers\",\n                    \"projects\",\n                    \"regions\",\n                    \"skills\",\n                    \"socials\",\n                    \"contacts\",\n                    \"bookings\",\n                    \"schedules\",\n                    \"fees\",\n                    \"images\",\n                    \"documents\",\n                    \"city\",\n                    \"facility_type\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"address\",\n                            \"metas\",\n                            \"geo_shape\",\n                            \"geo_point\",\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"o7EEIoan75\",\n            \"type\": \"facility\",\n            \"attributes\": {\n                \"id\": \"o7EEIoan75\",\n                \"created_at\": \"2018-11-09T10:47:03Z\",\n                \"updated_at\": \"2018-11-15T19:58:56Z\",\n                \"address\": \"5 Rue de l'Hôtel Lallemant, 18000 Bourges, France\",\n                \"metas\": {},\n                \"geo_shape\": {},\n                \"geo_point\": {\n                    \"type\": \"Point\",\n                    \"coordinates\": [\n                        47.085072,\n                        2.3979375\n                    ]\n                },\n                \"name\": {\n                    \"fr\": \"Hôtel Lallemant - Musée des arts décoratifs\"\n                }\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/o7EEIoan75\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/o7EEIoan75/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/o7EEIoan75/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/o7EEIoan75/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/o7EEIoan75/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/o7EEIoan75/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/o7EEIoan75/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/o7EEIoan75/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/o7EEIoan75/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/o7EEIoan75/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/o7EEIoan75/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/o7EEIoan75/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/o7EEIoan75/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/o7EEIoan75/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/o7EEIoan75/skills\"\n                },\n                \"socials\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/o7EEIoan75/socials\",\n                \"contacts\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/o7EEIoan75/contacts\",\n                \"bookings\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/o7EEIoan75/bookings\",\n                \"schedules\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/o7EEIoan75/schedules\",\n                \"fees\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/o7EEIoan75/fees\"\n            },\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [\n                    \"cities\",\n                    \"companies\",\n                    \"departments\",\n                    \"elects\",\n                    \"etablissement_publics\",\n                    \"event_groups\",\n                    \"events\",\n                    \"facilities\",\n                    \"news\",\n                    \"non_profits\",\n                    \"performers\",\n                    \"projects\",\n                    \"regions\",\n                    \"skills\",\n                    \"socials\",\n                    \"contacts\",\n                    \"bookings\",\n                    \"schedules\",\n                    \"fees\",\n                    \"images\",\n                    \"documents\",\n                    \"city\",\n                    \"facility_type\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"address\",\n                            \"metas\",\n                            \"geo_shape\",\n                            \"geo_point\",\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"y7KGIaW67v\",\n            \"type\": \"facility\",\n            \"attributes\": {\n                \"id\": \"y7KGIaW67v\",\n                \"created_at\": \"2018-11-08T17:26:50Z\",\n                \"updated_at\": \"2018-11-15T19:58:55Z\",\n                \"address\": \"8 Place des 4 Piliers, 18000 Bourges, France\",\n                \"metas\": {},\n                \"geo_shape\": {},\n                \"geo_point\": {\n                    \"type\": \"Point\",\n                    \"coordinates\": [\n                        47.0832753,\n                        2.3948147\n                    ]\n                },\n                \"name\": {\n                    \"fr\": \"Bibliothèque patrimoniale des Quatre Piliers\"\n                }\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/y7KGIaW67v\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/y7KGIaW67v/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/y7KGIaW67v/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/y7KGIaW67v/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/y7KGIaW67v/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/y7KGIaW67v/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/y7KGIaW67v/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/y7KGIaW67v/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/y7KGIaW67v/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/y7KGIaW67v/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/y7KGIaW67v/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/y7KGIaW67v/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/y7KGIaW67v/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/y7KGIaW67v/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/y7KGIaW67v/skills\"\n                },\n                \"socials\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/y7KGIaW67v/socials\",\n                \"contacts\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/y7KGIaW67v/contacts\",\n                \"bookings\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/y7KGIaW67v/bookings\",\n                \"schedules\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/y7KGIaW67v/schedules\",\n                \"fees\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/y7KGIaW67v/fees\"\n            },\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [\n                    \"cities\",\n                    \"companies\",\n                    \"departments\",\n                    \"elects\",\n                    \"etablissement_publics\",\n                    \"event_groups\",\n                    \"events\",\n                    \"facilities\",\n                    \"news\",\n                    \"non_profits\",\n                    \"performers\",\n                    \"projects\",\n                    \"regions\",\n                    \"skills\",\n                    \"socials\",\n                    \"contacts\",\n                    \"bookings\",\n                    \"schedules\",\n                    \"fees\",\n                    \"images\",\n                    \"documents\",\n                    \"city\",\n                    \"facility_type\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"address\",\n                            \"metas\",\n                            \"geo_shape\",\n                            \"geo_point\",\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"d7DWIRJRVB\",\n            \"type\": \"facility\",\n            \"attributes\": {\n                \"id\": \"d7DWIRJRVB\",\n                \"created_at\": \"2018-11-08T17:18:03Z\",\n                \"updated_at\": \"2018-11-15T19:58:54Z\",\n                \"address\": \"46 Boulevard Lamarck, 18000 Bourges, France\",\n                \"metas\": {},\n                \"geo_shape\": {},\n                \"geo_point\": {\n                    \"type\": \"Point\",\n                    \"coordinates\": [\n                        47.0781299,\n                        2.39286\n                    ]\n                },\n                \"name\": {\n                    \"fr\": \"Médiathèque de Bourges\"\n                }\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/d7DWIRJRVB\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/d7DWIRJRVB/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/d7DWIRJRVB/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/d7DWIRJRVB/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/d7DWIRJRVB/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/d7DWIRJRVB/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/d7DWIRJRVB/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/d7DWIRJRVB/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/d7DWIRJRVB/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/d7DWIRJRVB/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/d7DWIRJRVB/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/d7DWIRJRVB/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/d7DWIRJRVB/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/d7DWIRJRVB/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/d7DWIRJRVB/skills\"\n                },\n                \"socials\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/d7DWIRJRVB/socials\",\n                \"contacts\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/d7DWIRJRVB/contacts\",\n                \"bookings\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/d7DWIRJRVB/bookings\",\n                \"schedules\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/d7DWIRJRVB/schedules\",\n                \"fees\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/d7DWIRJRVB/fees\"\n            },\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [\n                    \"cities\",\n                    \"companies\",\n                    \"departments\",\n                    \"elects\",\n                    \"etablissement_publics\",\n                    \"event_groups\",\n                    \"events\",\n                    \"facilities\",\n                    \"news\",\n                    \"non_profits\",\n                    \"performers\",\n                    \"projects\",\n                    \"regions\",\n                    \"skills\",\n                    \"socials\",\n                    \"contacts\",\n                    \"bookings\",\n                    \"schedules\",\n                    \"fees\",\n                    \"images\",\n                    \"documents\",\n                    \"city\",\n                    \"facility_type\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"address\",\n                            \"metas\",\n                            \"geo_shape\",\n                            \"geo_point\",\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DLkmIYG37a\",\n            \"type\": \"facility\",\n            \"attributes\": {\n                \"id\": \"DLkmIYG37a\",\n                \"created_at\": \"2018-11-08T16:57:41Z\",\n                \"updated_at\": \"2018-11-15T19:58:53Z\",\n                \"address\": \"9 Allée René Ménard, 18000 Bourges, France\",\n                \"metas\": {},\n                \"geo_shape\": {},\n                \"geo_point\": {\n                    \"type\": \"Point\",\n                    \"coordinates\": [\n                        47.077729,\n                        2.3944301\n                    ]\n                },\n                \"name\": {\n                    \"fr\": \"Muséum d’Histoire naturelle\"\n                }\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/DLkmIYG37a\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/DLkmIYG37a/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/DLkmIYG37a/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/DLkmIYG37a/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/DLkmIYG37a/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/DLkmIYG37a/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/DLkmIYG37a/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/DLkmIYG37a/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/DLkmIYG37a/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/DLkmIYG37a/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/DLkmIYG37a/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/DLkmIYG37a/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/DLkmIYG37a/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/DLkmIYG37a/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/DLkmIYG37a/skills\"\n                },\n                \"socials\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/DLkmIYG37a/socials\",\n                \"contacts\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/DLkmIYG37a/contacts\",\n                \"bookings\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/DLkmIYG37a/bookings\",\n                \"schedules\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/DLkmIYG37a/schedules\",\n                \"fees\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/DLkmIYG37a/fees\"\n            },\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [\n                    \"cities\",\n                    \"companies\",\n                    \"departments\",\n                    \"elects\",\n                    \"etablissement_publics\",\n                    \"event_groups\",\n                    \"events\",\n                    \"facilities\",\n                    \"news\",\n                    \"non_profits\",\n                    \"performers\",\n                    \"projects\",\n                    \"regions\",\n                    \"skills\",\n                    \"socials\",\n                    \"contacts\",\n                    \"bookings\",\n                    \"schedules\",\n                    \"fees\",\n                    \"images\",\n                    \"documents\",\n                    \"city\",\n                    \"facility_type\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"address\",\n                            \"metas\",\n                            \"geo_shape\",\n                            \"geo_point\",\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"J7d9IwdKxB\",\n            \"type\": \"facility\",\n            \"attributes\": {\n                \"id\": \"J7d9IwdKxB\",\n                \"created_at\": \"2018-11-08T11:18:06Z\",\n                \"updated_at\": \"2018-11-15T19:58:50Z\",\n                \"address\": \"6 Place du Château, 41000 Blois, France\",\n                \"metas\": {},\n                \"geo_shape\": {},\n                \"geo_point\": {\n                    \"type\": \"Point\",\n                    \"coordinates\": [\n                        47.5855296,\n                        1.3316839\n                    ]\n                },\n                \"name\": {\n                    \"fr\": \"Château royal de Blois\"\n                }\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/J7d9IwdKxB\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/J7d9IwdKxB/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/J7d9IwdKxB/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/J7d9IwdKxB/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/J7d9IwdKxB/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/J7d9IwdKxB/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/J7d9IwdKxB/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/J7d9IwdKxB/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/J7d9IwdKxB/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/J7d9IwdKxB/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/J7d9IwdKxB/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/J7d9IwdKxB/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/J7d9IwdKxB/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/J7d9IwdKxB/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/J7d9IwdKxB/skills\"\n                },\n                \"socials\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/J7d9IwdKxB/socials\",\n                \"contacts\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/J7d9IwdKxB/contacts\",\n                \"bookings\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/J7d9IwdKxB/bookings\",\n                \"schedules\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/J7d9IwdKxB/schedules\",\n                \"fees\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/J7d9IwdKxB/fees\"\n            },\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [\n                    \"cities\",\n                    \"companies\",\n                    \"departments\",\n                    \"elects\",\n                    \"etablissement_publics\",\n                    \"event_groups\",\n                    \"events\",\n                    \"facilities\",\n                    \"news\",\n                    \"non_profits\",\n                    \"performers\",\n                    \"projects\",\n                    \"regions\",\n                    \"skills\",\n                    \"socials\",\n                    \"contacts\",\n                    \"bookings\",\n                    \"schedules\",\n                    \"fees\",\n                    \"images\",\n                    \"documents\",\n                    \"city\",\n                    \"facility_type\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"address\",\n                            \"metas\",\n                            \"geo_shape\",\n                            \"geo_point\",\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DVAXIB08LX\",\n            \"type\": \"facility\",\n            \"attributes\": {\n                \"id\": \"DVAXIB08LX\",\n                \"created_at\": \"2018-11-08T09:36:32Z\",\n                \"updated_at\": \"2018-11-15T19:58:49Z\",\n                \"address\": \"Rue du Château, 37120 Lémeré, France\",\n                \"metas\": {},\n                \"geo_shape\": {},\n                \"geo_point\": {\n                    \"type\": \"Point\",\n                    \"coordinates\": [\n                        47.101999,\n                        0.318886\n                    ]\n                },\n                \"name\": {\n                    \"fr\": \"Château du Rivau\"\n                }\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/DVAXIB08LX\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/DVAXIB08LX/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/DVAXIB08LX/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/DVAXIB08LX/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/DVAXIB08LX/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/DVAXIB08LX/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/DVAXIB08LX/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/DVAXIB08LX/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/DVAXIB08LX/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/DVAXIB08LX/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/DVAXIB08LX/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/DVAXIB08LX/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/DVAXIB08LX/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/DVAXIB08LX/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/DVAXIB08LX/skills\"\n                },\n                \"socials\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/DVAXIB08LX/socials\",\n                \"contacts\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/DVAXIB08LX/contacts\",\n                \"bookings\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/DVAXIB08LX/bookings\",\n                \"schedules\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/DVAXIB08LX/schedules\",\n                \"fees\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/DVAXIB08LX/fees\"\n            },\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [\n                    \"cities\",\n                    \"companies\",\n                    \"departments\",\n                    \"elects\",\n                    \"etablissement_publics\",\n                    \"event_groups\",\n                    \"events\",\n                    \"facilities\",\n                    \"news\",\n                    \"non_profits\",\n                    \"performers\",\n                    \"projects\",\n                    \"regions\",\n                    \"skills\",\n                    \"socials\",\n                    \"contacts\",\n                    \"bookings\",\n                    \"schedules\",\n                    \"fees\",\n                    \"images\",\n                    \"documents\",\n                    \"city\",\n                    \"facility_type\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"address\",\n                            \"metas\",\n                            \"geo_shape\",\n                            \"geo_point\",\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"o7EEIobn75\",\n            \"type\": \"facility\",\n            \"attributes\": {\n                \"id\": \"o7EEIobn75\",\n                \"created_at\": \"2018-11-05T16:02:45Z\",\n                \"updated_at\": \"2018-11-15T19:59:00Z\",\n                \"address\": \"37500 Chinon, France\",\n                \"metas\": {},\n                \"geo_shape\": {},\n                \"geo_point\": {\n                    \"type\": \"Point\",\n                    \"coordinates\": [\n                        47.167296,\n                        0.240385\n                    ]\n                },\n                \"name\": {\n                    \"fr\": \"Forteresse royale de Chinon\"\n                }\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/o7EEIobn75\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/o7EEIobn75/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/o7EEIobn75/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/o7EEIobn75/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/o7EEIobn75/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/o7EEIobn75/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/o7EEIobn75/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/o7EEIobn75/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/o7EEIobn75/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/o7EEIobn75/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/o7EEIobn75/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/o7EEIobn75/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/o7EEIobn75/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/o7EEIobn75/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/o7EEIobn75/skills\"\n                },\n                \"socials\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/o7EEIobn75/socials\",\n                \"contacts\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/o7EEIobn75/contacts\",\n                \"bookings\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/o7EEIobn75/bookings\",\n                \"schedules\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/o7EEIobn75/schedules\",\n                \"fees\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/o7EEIobn75/fees\"\n            },\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [\n                    \"cities\",\n                    \"companies\",\n                    \"departments\",\n                    \"elects\",\n                    \"etablissement_publics\",\n                    \"event_groups\",\n                    \"events\",\n                    \"facilities\",\n                    \"news\",\n                    \"non_profits\",\n                    \"performers\",\n                    \"projects\",\n                    \"regions\",\n                    \"skills\",\n                    \"socials\",\n                    \"contacts\",\n                    \"bookings\",\n                    \"schedules\",\n                    \"fees\",\n                    \"images\",\n                    \"documents\",\n                    \"city\",\n                    \"facility_type\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"address\",\n                            \"metas\",\n                            \"geo_shape\",\n                            \"geo_point\",\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"B722Igjo7O\",\n            \"type\": \"facility\",\n            \"attributes\": {\n                \"id\": \"B722Igjo7O\",\n                \"created_at\": \"2018-11-05T13:47:19Z\",\n                \"updated_at\": \"2018-11-15T19:58:59Z\",\n                \"address\": \"Musee Rabelais, 4 Rue de la Devinière, 37500 Seuilly, France\",\n                \"metas\": {},\n                \"geo_shape\": {},\n                \"geo_point\": {\n                    \"type\": \"Point\",\n                    \"coordinates\": [\n                        47.1404279,\n                        0.178479\n                    ]\n                },\n                \"name\": {\n                    \"fr\": \"Musée Rabelais, Maison La Devinière\"\n                }\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/B722Igjo7O\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/B722Igjo7O/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/B722Igjo7O/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/B722Igjo7O/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/B722Igjo7O/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/B722Igjo7O/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/B722Igjo7O/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/B722Igjo7O/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/B722Igjo7O/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/B722Igjo7O/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/B722Igjo7O/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/B722Igjo7O/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/B722Igjo7O/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/B722Igjo7O/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/B722Igjo7O/skills\"\n                },\n                \"socials\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/B722Igjo7O/socials\",\n                \"contacts\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/B722Igjo7O/contacts\",\n                \"bookings\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/B722Igjo7O/bookings\",\n                \"schedules\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/B722Igjo7O/schedules\",\n                \"fees\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/B722Igjo7O/fees\"\n            },\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [\n                    \"cities\",\n                    \"companies\",\n                    \"departments\",\n                    \"elects\",\n                    \"etablissement_publics\",\n                    \"event_groups\",\n                    \"events\",\n                    \"facilities\",\n                    \"news\",\n                    \"non_profits\",\n                    \"performers\",\n                    \"projects\",\n                    \"regions\",\n                    \"skills\",\n                    \"socials\",\n                    \"contacts\",\n                    \"bookings\",\n                    \"schedules\",\n                    \"fees\",\n                    \"images\",\n                    \"documents\",\n                    \"city\",\n                    \"facility_type\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"address\",\n                            \"metas\",\n                            \"geo_shape\",\n                            \"geo_point\",\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DLkmIYE37a\",\n            \"type\": \"facility\",\n            \"attributes\": {\n                \"id\": \"DLkmIYE37a\",\n                \"created_at\": \"2018-10-30T10:53:12Z\",\n                \"updated_at\": \"2018-11-15T19:59:02Z\",\n                \"address\": \"478 Le Château, 41150 Chaumont-sur-Loire, France\",\n                \"metas\": {},\n                \"geo_shape\": {},\n                \"geo_point\": {\n                    \"type\": \"Point\",\n                    \"coordinates\": [\n                        47.4769525,\n                        1.1831631\n                    ]\n                },\n                \"name\": {\n                    \"fr\": \"Domaine régional de Chaumont-sur-Loire\"\n                }\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/DLkmIYE37a\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/DLkmIYE37a/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/DLkmIYE37a/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/DLkmIYE37a/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/DLkmIYE37a/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/DLkmIYE37a/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/DLkmIYE37a/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/DLkmIYE37a/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/DLkmIYE37a/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/DLkmIYE37a/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/DLkmIYE37a/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/DLkmIYE37a/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/DLkmIYE37a/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/DLkmIYE37a/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/DLkmIYE37a/skills\"\n                },\n                \"socials\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/DLkmIYE37a/socials\",\n                \"contacts\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/DLkmIYE37a/contacts\",\n                \"bookings\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/DLkmIYE37a/bookings\",\n                \"schedules\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/DLkmIYE37a/schedules\",\n                \"fees\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/DLkmIYE37a/fees\"\n            },\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [\n                    \"cities\",\n                    \"companies\",\n                    \"departments\",\n                    \"elects\",\n                    \"etablissement_publics\",\n                    \"event_groups\",\n                    \"events\",\n                    \"facilities\",\n                    \"news\",\n                    \"non_profits\",\n                    \"performers\",\n                    \"projects\",\n                    \"regions\",\n                    \"skills\",\n                    \"socials\",\n                    \"contacts\",\n                    \"bookings\",\n                    \"schedules\",\n                    \"fees\",\n                    \"images\",\n                    \"documents\",\n                    \"city\",\n                    \"facility_type\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"address\",\n                            \"metas\",\n                            \"geo_shape\",\n                            \"geo_point\",\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        }\n    ],\n    \"meta\": {\n        \"items\": 20,\n        \"count\": 24,\n        \"page\": 1\n    },\n    \"links\": {\n        \"self\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities?page=1\",\n        \"pagination\": {\n            \"first\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities?page=1\",\n            \"next\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities?page=2\",\n            \"last\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities?page=2\"\n        }\n    }\n}"}],"_postman_id":"9d632f94-f9cb-4fc5-9c12-9fb7ac3beebb"},{"name":"Show","id":"63b081fd-ebb4-4939-8044-f793213c5fac","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/facilities/:id","description":"<p>Détail d'un événement</p>\n","urlObject":{"path":["v2",":instance","facilities",":id"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"0LyYIYMOLB","key":"id"}]}},"response":[{"id":"14449e7a-6ee3-4c72-9661-8879a7065d35","name":"✅ Show","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.publidata.io/v2/{{instance_id}}/facilities/:id","host":["https://api.publidata.io"],"path":["v2","{{instance_id}}","facilities",":id"],"variable":[{"key":"id","value":"P7r1IwknVk"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Fri, 16 Nov 2018 08:13:57 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"414749d6b87e7d43ab3cedd1ab40bd9f\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"b34e0573-0226-4500-8edc-fddff3ab028f"},{"key":"X-Runtime","value":"0.182458"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"P7r1IwknVk\",\n        \"type\": \"facility\",\n        \"attributes\": {\n            \"id\": \"P7r1IwknVk\",\n            \"created_at\": \"2018-11-15T13:48:05Z\",\n            \"updated_at\": \"2018-11-15T19:58:51Z\",\n            \"address\": \"1 Rue Fernand Rabier, 45000 Orléans, France\",\n            \"metas\": {},\n            \"geo_shape\": {},\n            \"geo_point\": {\n                \"type\": \"Point\",\n                \"coordinates\": [\n                    47.9026567,\n                    1.909731\n                ]\n            },\n            \"name\": {\n                \"fr\": \"Musée des beaux-arts d'Orléans\"\n            }\n        },\n        \"relationships\": {},\n        \"links\": {\n            \"self\": {\n                \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/P7r1IwknVk\"\n            },\n            \"relations\": {\n                \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/P7r1IwknVk/cities\",\n                \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/P7r1IwknVk/companies\",\n                \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/P7r1IwknVk/departments\",\n                \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/P7r1IwknVk/elects\",\n                \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/P7r1IwknVk/etablissement_publics\",\n                \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/P7r1IwknVk/event_groups\",\n                \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/P7r1IwknVk/events\",\n                \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/P7r1IwknVk/facilities\",\n                \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/P7r1IwknVk/news\",\n                \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/P7r1IwknVk/non_profits\",\n                \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/P7r1IwknVk/performers\",\n                \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/P7r1IwknVk/projects\",\n                \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/P7r1IwknVk/regions\",\n                \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/P7r1IwknVk/skills\"\n            },\n            \"socials\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/P7r1IwknVk/socials\",\n            \"contacts\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/P7r1IwknVk/contacts\",\n            \"bookings\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/P7r1IwknVk/bookings\",\n            \"schedules\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/P7r1IwknVk/schedules\",\n            \"fees\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/P7r1IwknVk/fees\"\n        },\n        \"meta\": {\n            \"included\": [],\n            \"includable\": [\n                \"cities\",\n                \"companies\",\n                \"departments\",\n                \"elects\",\n                \"etablissement_publics\",\n                \"event_groups\",\n                \"events\",\n                \"facilities\",\n                \"news\",\n                \"non_profits\",\n                \"performers\",\n                \"projects\",\n                \"regions\",\n                \"skills\",\n                \"socials\",\n                \"contacts\",\n                \"bookings\",\n                \"schedules\",\n                \"fees\",\n                \"images\",\n                \"documents\",\n                \"city\",\n                \"facility_type\"\n            ],\n            \"licenses\": [\n                {\n                    \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                    \"SPDX\": \"ODbL-1.0\",\n                    \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                    \"targets\": [\n                        \"address\",\n                        \"metas\",\n                        \"geo_shape\",\n                        \"geo_point\",\n                        \"name\"\n                    ]\n                }\n            ]\n        }\n    }\n}"}],"_postman_id":"63b081fd-ebb4-4939-8044-f793213c5fac"},{"name":"Show with included resources","id":"cab16dbd-c6c3-4d86-a33f-2a0838f540f7","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/facilities/:id?include=images","description":"<p>Avec le paramètre <code>include</code> vous avez la possibilité d'insérer dans la vue principale des ressources liées, vous évitant des requêtes supplémentaires.</p>\n","urlObject":{"path":["v2",":instance","facilities",":id"],"host":["https://api.publidata.io"],"query":[{"description":{"content":"<p>Liste des ressources à insérer</p>\n","type":"text/plain"},"key":"include","value":"images"}],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"P7r1IwknVk","key":"id"}]}},"response":[{"id":"28c05f7c-1d64-4ee4-8935-4ef1a13a97da","name":"✅ Show with included resources","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.publidata.io/v2/:instance/facilities/:id?include=images","host":["https://api.publidata.io"],"path":["v2",":instance","facilities",":id"],"query":[{"key":"include","value":"images","description":"Liste des ressources à insérer"}],"variable":[{"key":"instance","value":"500-ans-renaissances"},{"key":"id","value":"P7r1IwknVk"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Fri, 16 Nov 2018 08:15:52 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"cd76c81cdf3e2534444aef5774cfed92\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"0be52eb5-c3dd-4950-9bf6-70ff2f7bfcec"},{"key":"X-Runtime","value":"0.142280"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"P7r1IwknVk\",\n        \"type\": \"facility\",\n        \"attributes\": {\n            \"id\": \"P7r1IwknVk\",\n            \"created_at\": \"2018-11-15T13:48:05Z\",\n            \"updated_at\": \"2018-11-15T19:58:51Z\",\n            \"address\": \"1 Rue Fernand Rabier, 45000 Orléans, France\",\n            \"metas\": {},\n            \"geo_shape\": {},\n            \"geo_point\": {\n                \"type\": \"Point\",\n                \"coordinates\": [\n                    47.9026567,\n                    1.909731\n                ]\n            },\n            \"name\": {\n                \"fr\": \"Musée des beaux-arts d'Orléans\"\n            }\n        },\n        \"relationships\": {\n            \"images\": {\n                \"data\": []\n            }\n        },\n        \"links\": {\n            \"self\": {\n                \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/P7r1IwknVk\"\n            },\n            \"relations\": {\n                \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/P7r1IwknVk/cities\",\n                \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/P7r1IwknVk/companies\",\n                \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/P7r1IwknVk/departments\",\n                \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/P7r1IwknVk/elects\",\n                \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/P7r1IwknVk/etablissement_publics\",\n                \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/P7r1IwknVk/event_groups\",\n                \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/P7r1IwknVk/events\",\n                \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/P7r1IwknVk/facilities\",\n                \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/P7r1IwknVk/news\",\n                \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/P7r1IwknVk/non_profits\",\n                \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/P7r1IwknVk/performers\",\n                \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/P7r1IwknVk/projects\",\n                \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/P7r1IwknVk/regions\",\n                \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/P7r1IwknVk/skills\"\n            },\n            \"socials\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/P7r1IwknVk/socials\",\n            \"contacts\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/P7r1IwknVk/contacts\",\n            \"bookings\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/P7r1IwknVk/bookings\",\n            \"schedules\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/P7r1IwknVk/schedules\",\n            \"fees\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/P7r1IwknVk/fees\"\n        },\n        \"meta\": {\n            \"included\": [\n                \"images\"\n            ],\n            \"includable\": [\n                \"cities\",\n                \"companies\",\n                \"departments\",\n                \"elects\",\n                \"etablissement_publics\",\n                \"event_groups\",\n                \"events\",\n                \"facilities\",\n                \"news\",\n                \"non_profits\",\n                \"performers\",\n                \"projects\",\n                \"regions\",\n                \"skills\",\n                \"socials\",\n                \"contacts\",\n                \"bookings\",\n                \"schedules\",\n                \"fees\",\n                \"images\",\n                \"documents\",\n                \"city\",\n                \"facility_type\"\n            ],\n            \"licenses\": [\n                {\n                    \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                    \"SPDX\": \"ODbL-1.0\",\n                    \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                    \"targets\": [\n                        \"address\",\n                        \"metas\",\n                        \"geo_shape\",\n                        \"geo_point\",\n                        \"name\"\n                    ]\n                }\n            ]\n        }\n    },\n    \"included\": []\n}"}],"_postman_id":"cab16dbd-c6c3-4d86-a33f-2a0838f540f7"},{"name":"Show translated","id":"d882b283-fa8c-4d15-9067-8955659ec038","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/facilities/:id?lang=en","description":"<p>Le paramètre <code>lang</code> vous permet de récupérer les contenus éditoriaux d'une ressource dans une langue donnée.</p>\n","urlObject":{"path":["v2",":instance","facilities",":id"],"host":["https://api.publidata.io"],"query":[{"description":{"content":"<p>Langue désirée</p>\n","type":"text/plain"},"key":"lang","value":"en"}],"variable":[{"type":"string","value":"500-ans-renaissances","key":"instance"},{"type":"string","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"d882b283-fa8c-4d15-9067-8955659ec038"},{"name":"Search","id":"0714a25d-710f-4a6d-acd6-ebdb4d5bab84","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/facilities/?q=Sénart&size=10&page=1&marker=false&instances[]=2&types[]=Facility&performers[]=Nakht&facilities[]=8&events[]=1&event_groups[]=1&news[]=1&projects[]=1&cities[]=7&etablissement_publics[]=1&departments[]=1&regions[]=1&skills[]=1&elects[]=1&bbox[]&facility_types[]=Piscine&date[start]=1526054400&date[end]=1526083199&price[min]=10&price[max]=50&free_admission=true&accessibilities[]=has_deaf_accessibility&housing_room_count[max]=0&housing_room_count[min]=6&housing_delivery_date[start]=1575158200&housing_delivery_date[end]=1575158900&housing_type[]=bedroom&housing_secured_access=false&housing_reduced_tva=true&housing_area[min]=200&housing_area[max]=2000&housing_contract_type[]=sell&facility_status=broken","urlObject":{"path":["v2",":instance","facilities",""],"host":["https://api.publidata.io"],"query":[{"description":{"content":"<p>Filtre textuel</p>\n","type":"text/plain"},"key":"q","value":"Sénart"},{"description":{"content":"<p>Nombre de résultats retournés (defaut: 10)</p>\n","type":"text/plain"},"key":"size","value":"10"},{"description":{"content":"<p>Pagination (defaut: 1)</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>Filtre booléen pour ne retourner que les locations (default: false)</p>\n","type":"text/plain"},"key":"marker","value":"false"},{"description":{"content":"<p>Filtre par instance (array d'id)</p>\n","type":"text/plain"},"key":"instances[]","value":"2"},{"description":{"content":"<p>Filtre par type de ressource (array de type parmi la liste suivante : News Event Facility Project City Epci Department Region EventGroup Skill Elect Performer Company NonProfit EtablissementPublic)</p>\n","type":"text/plain"},"key":"types[]","value":"Facility"},{"description":{"content":"<p>Filtre par artiste lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"performers[]","value":"Nakht"},{"description":{"content":"<p>Filtre par équipement lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"facilities[]","value":"8"},{"description":{"content":"<p>Filtre par événement lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"events[]","value":"1"},{"description":{"content":"<p>Filtre par groupe d'événements lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"event_groups[]","value":"1"},{"description":{"content":"<p>Filtre par actualité liée (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"news[]","value":"1"},{"description":{"content":"<p>Filtre par projet lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"projects[]","value":"1"},{"description":{"content":"<p>Filtre par ville et location liées (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"cities[]","value":"7"},{"description":{"content":"<p>Filtre par établissement public lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"etablissement_publics[]","value":"1"},{"description":{"content":"<p>Filtre par departement lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"departments[]","value":"1"},{"description":{"content":"<p>Filtre par region liée (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"regions[]","value":"1"},{"description":{"content":"<p>Filtre par compétence liée (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"skills[]","value":"1"},{"description":{"content":"<p>Filtre par élu lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"elects[]","value":"1"},{"description":{"content":"<p>Filtre géographique (array de latitudes, longitudes dans l'ordre suivant minX, minY, maxX, maxY)</p>\n","type":"text/plain"},"key":"bbox[]","value":null},{"description":{"content":"<p>Filtre par type d'événement (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"facility_types[]","value":"Piscine"},{"description":{"content":"<p>Filtre par date/heure de début (timestamp en seconde)</p>\n","type":"text/plain"},"key":"date[start]","value":"1526054400"},{"description":{"content":"<p>Filtre par date/heure de fin (timestamp en seconde)</p>\n","type":"text/plain"},"key":"date[end]","value":"1526083199"},{"description":{"content":"<p>Filtre de prix minimum</p>\n","type":"text/plain"},"key":"price[min]","value":"10"},{"description":{"content":"<p>Filtre de prix maximum</p>\n","type":"text/plain"},"key":"price[max]","value":"50"},{"description":{"content":"<p>Filtre de gratuité (boolean)</p>\n","type":"text/plain"},"key":"free_admission","value":"true"},{"description":{"content":"<p>Filtre d'accessibilité (array de string)</p>\n","type":"text/plain"},"key":"accessibilities[]","value":"has_deaf_accessibility"},{"description":{"content":"<p>0..6</p>\n","type":"text/plain"},"key":"housing_room_count[max]","value":"0"},{"description":{"content":"<p>0..6</p>\n","type":"text/plain"},"key":"housing_room_count[min]","value":"6"},{"description":{"content":"<p>timestamp</p>\n","type":"text/plain"},"key":"housing_delivery_date[start]","value":"1575158200"},{"description":{"content":"<p>timestamp</p>\n","type":"text/plain"},"key":"housing_delivery_date[end]","value":"1575158900"},{"description":{"content":"<p>one of </p>\n<ul>\n<li>house</li>\n<li>appartment</li>\n<li>bedroom</li>\n</ul>\n","type":"text/plain"},"key":"housing_type[]","value":"bedroom"},{"description":{"content":"<p>boolean</p>\n","type":"text/plain"},"key":"housing_secured_access","value":"false"},{"description":{"content":"<p>boolean</p>\n","type":"text/plain"},"key":"housing_reduced_tva","value":"true"},{"description":{"content":"<p>integer</p>\n","type":"text/plain"},"key":"housing_area[min]","value":"200"},{"description":{"content":"<p>integer</p>\n","type":"text/plain"},"key":"housing_area[max]","value":"2000"},{"description":{"content":"<p>one of</p>\n<ul>\n<li>sell</li>\n<li>rent</li>\n</ul>\n","type":"text/plain"},"key":"housing_contract_type[]","value":"sell"},{"description":{"content":"<p>one of</p>\n<ul>\n<li>opened</li>\n<li>broken</li>\n<li>closed</li>\n<li>commercialized</li>\n<li>planified</li>\n<li>under_construction</li>\n<li>suspended</li>\n</ul>\n","type":"text/plain"},"key":"facility_status","value":"broken"}],"variable":[{"type":"string","value":"500-ans-renaissances","key":"instance"}]}},"response":[{"id":"0ff5fd5c-823f-4d7f-865a-90ab6d1e8c2b","name":"Search events","originalRequest":{"method":"GET","header":[],"url":{"raw":"www.publidata.io/api/v1/events?q=&options[geo][top_left][lat]=49.05965195372349&options[geo][top_left][lon]=2.1371613664061897&options[geo][bottom_right][lat]=48.21570798955211&options[geo][bottom_right][lon]=2.7688752335936897&options[city]=Combs-la-Ville&options[paging][from]=0&options[event_types][]=Concert&options[dates][start_date]=1521812100000&options[dates][end_date]=1522499700000&options[instances][]=2","host":["www","publidata","io"],"path":["api","v1","events"],"query":[{"key":"q","value":"","description":"Recherche (full-text)"},{"key":"options[geo][top_left][lat]","value":"49.05965195372349","description":"Latitude coin supérieur gauche geo-box (lat)"},{"key":"options[geo][top_left][lon]","value":"2.1371613664061897","description":"Longitude coin supérieur gauche geo-box (lon)"},{"key":"options[geo][bottom_right][lat]","value":"48.21570798955211","description":"Latitude coin inférieur droit geo-box (lat)"},{"key":"options[geo][bottom_right][lon]","value":"2.7688752335936897","description":"Longitude coin inférieur droit geo-box (lon)"},{"key":"options[city]","value":"Combs-la-Ville","description":"Ville (full-text ou code postal)"},{"key":"options[paging][from]","value":"0","description":"Début de la pagination (integer)"},{"key":"options[event_types][]","value":"Concert","description":"Types d'événement (array de string)"},{"key":"options[dates][start_date]","value":"1521812100000","description":"Date de début (format timestamp unix 1508267068688)"},{"key":"options[dates][end_date]","value":"1522499700000","description":"Date de fin (format timestamp unix 1539803068688)"},{"key":"options[instances][]","value":"2"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"took\": 11,\n    \"timed_out\": false,\n    \"_shards\": {\n        \"total\": 1,\n        \"successful\": 1,\n        \"failed\": 0\n    },\n    \"hits\": {\n        \"total\": 2,\n        \"max_score\": 0.9812665,\n        \"hits\": [\n            {\n                \"_index\": \"events\",\n                \"_type\": \"event\",\n                \"_id\": \"3241\",\n                \"_score\": 0.9812665,\n                \"_source\": {\n                    \"id\": 3241,\n                    \"name\": \"Concert des orchestres\",\n                    \"slug\": \"concert-des-orchestres\",\n                    \"status\": \"published\",\n                    \"free_admission\": true,\n                    \"start_date\": \"2018-03-23T00:00:00.000+01:00\",\n                    \"end_date\": \"2018-03-23T00:00:00.000+01:00\",\n                    \"punchline\": \"Le vendredi 23 mars 2018 à 20h au Théâtre de la Coupole, les musiciens du Conservatoire Maurice Ohana de Combs-la-ville vous attendent pour leur rendez-vous annuel...\",\n                    \"blurb\": \"Cette soirée donne la possibilité à plusieurs formations orchestrales du conservatoire Maurice Ohana de se produire sur scène. \\r\\n\\r\\nProgramme musical éclectique et varié, ce concert  permet de vivre la musique ensemble et de la partager sans modération avec le public.\",\n                    \"linked_objects\": [\n                        {\n                            \"id\": 180,\n                            \"type\": \"Facility\",\n                            \"name\": \"La Coupole\"\n                        },\n                        {\n                            \"id\": 12,\n                            \"type\": \"City\",\n                            \"name\": \"Combs-la-Ville\"\n                        }\n                    ],\n                    \"cover_picture\": {\n                        \"id\": 22632,\n                        \"name\": \"image de couverture de Concert des orchestres\",\n                        \"alt\": \"image de couverture de Concert des orchestres\",\n                        \"description\": \"image de couverture de Concert des orchestres\",\n                        \"slug\": null,\n                        \"image_urls_as_json\": {\n                            \"image_original_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/632/original/open-uri20171002-4-1etqlbo?1506962457\",\n                            \"image_small_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/632/image_small/open-uri20171002-4-1etqlbo?1506962457\",\n                            \"image_medium_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/632/image_medium/open-uri20171002-4-1etqlbo?1506962457\",\n                            \"image_large_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/632/image_large/open-uri20171002-4-1etqlbo?1506962457\"\n                        }\n                    },\n                    \"instances\": [\n                        {\n                            \"id\": 2,\n                            \"slug\": \"portail-sortir-gps\"\n                        }\n                    ],\n                    \"event_type\": {\n                        \"id\": 13,\n                        \"name\": \"Concert\"\n                    },\n                    \"event_styles\": [\n                        {\n                            \"id\": 82,\n                            \"name\": \"World Music\"\n                        }\n                    ],\n                    \"event_dates\": [\n                        {\n                            \"id\": 37799,\n                            \"start_hour\": \"2000-01-01T20:00:00.000Z\",\n                            \"end_hour\": \"2000-01-01T22:00:00.000Z\",\n                            \"date\": \"2018-03-23T00:00:00.000+01:00\",\n                            \"sold_out\": false,\n                            \"start_date\": \"2018-03-23T20:00:00.000+00:00\",\n                            \"end_date\": \"2018-03-23T22:00:00.000+00:00\"\n                        }\n                    ],\n                    \"facilities\": [\n                        {\n                            \"id\": 180,\n                            \"name\": \"La Coupole\",\n                            \"slug\": \"la-coupole\",\n                            \"address\": \"Rue Jean François Millet, 77380 Combs-la-Ville, France\",\n                            \"location\": {\n                                \"lat\": 48.659695,\n                                \"lon\": 2.5662415\n                            }\n                        }\n                    ],\n                    \"locations\": [],\n                    \"fees\": [],\n                    \"tags\": [],\n                    \"pages\": [\n                        {\n                            \"id\": 7659,\n                            \"instance\": {\n                                \"id\": 2,\n                                \"slug\": \"portail-sortir-gps\"\n                            }\n                        }\n                    ]\n                }\n            },\n            {\n                \"_index\": \"events\",\n                \"_type\": \"event\",\n                \"_id\": \"3983\",\n                \"_score\": 0.9794048,\n                \"_source\": {\n                    \"id\": 3983,\n                    \"name\": \"Après-midi musicale: Claude Debussy\",\n                    \"slug\": \"apres-midi-musicale-claude-debussy\",\n                    \"status\": \"published\",\n                    \"free_admission\": true,\n                    \"start_date\": \"2018-03-24T00:00:00.000+01:00\",\n                    \"end_date\": \"2018-03-24T00:00:00.000+01:00\",\n                    \"punchline\": \"A l'occasion du centenaire de la mort de Claude Debussy, la media-ludothèque et le conservatoire Maurice Ohana vous invitent à une après-midi musical, le samedi 24 mars à partir de 15h30.\",\n                    \"blurb\": \"Claude Debussy (1862-1918) était un compositeur français. Pour célébrer son centenaire, nous vous invitons à un après-midi musical. Au programme, une conférence par Bruno Giner sur le compositeur à 15h30. \\r\\nPuis, à 18h, les élèves du conservatoire interpréteront une sélection d’œuvres de Claude Debussy.\",\n                    \"linked_objects\": [\n                        {\n                            \"id\": 42,\n                            \"type\": \"Facility\",\n                            \"name\": \"Médiathèque de Combs-la-Ville\"\n                        },\n                        {\n                            \"id\": 12,\n                            \"type\": \"City\",\n                            \"name\": \"Combs-la-Ville\"\n                        }\n                    ],\n                    \"cover_picture\": {\n                        \"id\": 24665,\n                        \"name\": \"image de couverture de Après-midi musicale: Claude Debussy\",\n                        \"alt\": \"image de couverture de Après-midi musicale: Claude Debussy\",\n                        \"description\": \"image de couverture de Après-midi musicale: Claude Debussy\",\n                        \"slug\": null,\n                        \"image_urls_as_json\": {\n                            \"image_original_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/665/original/Photo_23a_Claude_Debussy.jpg?1516441408\",\n                            \"image_small_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/665/image_small/Photo_23a_Claude_Debussy.jpg?1516441408\",\n                            \"image_medium_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/665/image_medium/Photo_23a_Claude_Debussy.jpg?1516441408\",\n                            \"image_large_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/665/image_large/Photo_23a_Claude_Debussy.jpg?1516441408\"\n                        }\n                    },\n                    \"instances\": [\n                        {\n                            \"id\": 2,\n                            \"slug\": \"portail-sortir-gps\"\n                        }\n                    ],\n                    \"event_type\": {\n                        \"id\": 13,\n                        \"name\": \"Concert\"\n                    },\n                    \"event_styles\": [\n                        {\n                            \"id\": 111,\n                            \"name\": \"Musique Classique\"\n                        }\n                    ],\n                    \"event_dates\": [\n                        {\n                            \"id\": 41100,\n                            \"start_hour\": \"2000-01-01T15:30:00.000Z\",\n                            \"end_hour\": \"2000-01-01T19:30:00.000Z\",\n                            \"date\": \"2018-03-24T00:00:00.000+01:00\",\n                            \"sold_out\": false,\n                            \"start_date\": \"2018-03-24T15:30:00.000+00:00\",\n                            \"end_date\": \"2018-03-24T19:30:00.000+00:00\"\n                        }\n                    ],\n                    \"facilities\": [\n                        {\n                            \"id\": 42,\n                            \"name\": \"Médiathèque de Combs-la-Ville\",\n                            \"slug\": \"mediatheque-de-combs-la-ville\",\n                            \"address\": \"Rue Jean François Millet, 77380 Combs-la-Ville, France\",\n                            \"location\": {\n                                \"lat\": 48.659695,\n                                \"lon\": 2.5662415\n                            }\n                        }\n                    ],\n                    \"locations\": [],\n                    \"fees\": [],\n                    \"accessibility\": {\n                        \"id\": 1766,\n                        \"deaf_lsf\": false,\n                        \"deaf_vision_based\": false,\n                        \"deaf_subtitle\": false,\n                        \"deaf_hearing_loop\": false,\n                        \"blind_audio_description\": false,\n                        \"blind_darkness_based\": false,\n                        \"blind_text_based\": false,\n                        \"blind_braille\": false,\n                        \"blind_large_print\": false,\n                        \"motor_disabled_access\": true,\n                        \"has_accessibility\": true,\n                        \"has_deaf_accessibility\": false,\n                        \"has_blind_accessibility\": false\n                    },\n                    \"tags\": [\n                        \"Culture\"\n                    ],\n                    \"pages\": [\n                        {\n                            \"id\": 8636,\n                            \"instance\": {\n                                \"id\": 2,\n                                \"slug\": \"portail-sortir-gps\"\n                            }\n                        }\n                    ]\n                }\n            }\n        ]\n    },\n    \"aggregations\": {\n        \"event_styles_terms_agg\": {\n            \"doc_count\": 2,\n            \"name\": {\n                \"doc_count_error_upper_bound\": 0,\n                \"sum_other_doc_count\": 0,\n                \"buckets\": [\n                    {\n                        \"key\": \"111\",\n                        \"doc_count\": 1,\n                        \"name\": {\n                            \"doc_count_error_upper_bound\": 0,\n                            \"sum_other_doc_count\": 0,\n                            \"buckets\": [\n                                {\n                                    \"key\": \"classique\",\n                                    \"doc_count\": 1\n                                },\n                                {\n                                    \"key\": \"musique\",\n                                    \"doc_count\": 1\n                                }\n                            ]\n                        }\n                    },\n                    {\n                        \"key\": \"82\",\n                        \"doc_count\": 1,\n                        \"name\": {\n                            \"doc_count_error_upper_bound\": 0,\n                            \"sum_other_doc_count\": 0,\n                            \"buckets\": [\n                                {\n                                    \"key\": \"music\",\n                                    \"doc_count\": 1\n                                },\n                                {\n                                    \"key\": \"world\",\n                                    \"doc_count\": 1\n                                }\n                            ]\n                        }\n                    }\n                ]\n            }\n        },\n        \"events\": {\n            \"doc_count\": 3838,\n            \"dates\": {\n                \"doc_count\": 11064,\n                \"this_month\": {\n                    \"doc_count\": 737,\n                    \"events\": {\n                        \"doc_count\": 278\n                    }\n                },\n                \"this_week_end\": {\n                    \"doc_count\": 81,\n                    \"events\": {\n                        \"doc_count\": 54\n                    }\n                },\n                \"past\": {\n                    \"doc_count\": 10070,\n                    \"events\": {\n                        \"doc_count\": 3132\n                    }\n                },\n                \"today\": {\n                    \"doc_count\": 34,\n                    \"events\": {\n                        \"doc_count\": 28\n                    }\n                },\n                \"tomorrow\": {\n                    \"doc_count\": 22,\n                    \"events\": {\n                        \"doc_count\": 19\n                    }\n                },\n                \"last_days\": {\n                    \"doc_count\": 133,\n                    \"events\": {\n                        \"doc_count\": 75\n                    }\n                },\n                \"upcoming\": {\n                    \"doc_count\": 1028,\n                    \"events\": {\n                        \"doc_count\": 390\n                    }\n                },\n                \"this_week\": {\n                    \"doc_count\": 197,\n                    \"events\": {\n                        \"doc_count\": 96\n                    }\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"0714a25d-710f-4a6d-acd6-ebdb4d5bab84"}],"id":"f0bdef3e-5d46-40e2-b75d-b14518ccd94c","_postman_id":"f0bdef3e-5d46-40e2-b75d-b14518ccd94c","description":""},{"name":"Ressources liées","item":[{"name":"Type","id":"38320a8a-cb56-4811-99a3-4b6145f461a3","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/facilities/:id/type","description":"<p>Type(s) de la ressource courante</p>\n","urlObject":{"path":["v2",":instance","facilities",":id","type"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[{"id":"432c0906-67a6-40c0-9f94-7a21287569cd","name":"✅ Types","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.publidata.io/v2/:instance/events/:id/types","host":["https://api.publidata.io"],"path":["v2",":instance","events",":id","types"],"variable":[{"key":"instance","value":"500-ans-renaissances"},{"key":"id","value":"y7KpS6Dgxv"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Tue, 06 Nov 2018 14:56:10 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"aca7a58992ce54decfd0aa1309558bf9\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"d9a108a9-5d7c-486f-9b8f-620b97ceecb4"},{"key":"X-Runtime","value":"0.137086"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"wo7NbcKj7n\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"wo7NbcKj7n\",\n                \"created_at\": \"2018-10-23T01:23:57Z\",\n                \"updated_at\": \"2018-10-23T01:24:19Z\",\n                \"name\": {\n                    \"fr\": \"Rassemblement\"\n                }\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": \"https://publidata-staging.herokuapp.com/api/v2/event_types/wo7NbcKj7n\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"Wn7lQcrKxm\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"Wn7lQcrKxm\",\n                \"created_at\": \"2018-10-23T01:23:57Z\",\n                \"updated_at\": \"2018-10-23T01:24:19Z\",\n                \"name\": {\n                    \"fr\": \"Colloque\"\n                }\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": \"https://publidata-staging.herokuapp.com/api/v2/event_types/Wn7lQcrKxm\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        }\n    ],\n    \"meta\": {\n        \"items\": 2,\n        \"count\": 2,\n        \"page\": 1\n    },\n    \"links\": {\n        \"self\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/types?page=1\",\n        \"pagination\": {\n            \"first\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/types?page=1\",\n            \"last\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/types?page=1\"\n        }\n    }\n}"}],"_postman_id":"38320a8a-cb56-4811-99a3-4b6145f461a3"},{"name":"Types","id":"d741d8cf-94c5-4eb2-acb1-0ec805cc7651","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/facilities/:id/types","description":"<p>Type(s) de la ressource courante</p>\n","urlObject":{"path":["v2",":instance","facilities",":id","types"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[{"id":"fd38eb8a-2567-4757-a402-09d48e61868a","name":"✅ Types","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.publidata.io/v2/:instance/events/:id/types","host":["https://api.publidata.io"],"path":["v2",":instance","events",":id","types"],"variable":[{"key":"instance","value":"500-ans-renaissances"},{"key":"id","value":"y7KpS6Dgxv"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Tue, 06 Nov 2018 14:56:10 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"aca7a58992ce54decfd0aa1309558bf9\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"d9a108a9-5d7c-486f-9b8f-620b97ceecb4"},{"key":"X-Runtime","value":"0.137086"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"wo7NbcKj7n\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"wo7NbcKj7n\",\n                \"created_at\": \"2018-10-23T01:23:57Z\",\n                \"updated_at\": \"2018-10-23T01:24:19Z\",\n                \"name\": {\n                    \"fr\": \"Rassemblement\"\n                }\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": \"https://publidata-staging.herokuapp.com/api/v2/event_types/wo7NbcKj7n\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"Wn7lQcrKxm\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"Wn7lQcrKxm\",\n                \"created_at\": \"2018-10-23T01:23:57Z\",\n                \"updated_at\": \"2018-10-23T01:24:19Z\",\n                \"name\": {\n                    \"fr\": \"Colloque\"\n                }\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": \"https://publidata-staging.herokuapp.com/api/v2/event_types/Wn7lQcrKxm\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        }\n    ],\n    \"meta\": {\n        \"items\": 2,\n        \"count\": 2,\n        \"page\": 1\n    },\n    \"links\": {\n        \"self\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/types?page=1\",\n        \"pagination\": {\n            \"first\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/types?page=1\",\n            \"last\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/types?page=1\"\n        }\n    }\n}"}],"_postman_id":"d741d8cf-94c5-4eb2-acb1-0ec805cc7651"},{"name":"Themes","id":"c997a8da-be99-4217-a955-95db3fdace86","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/facilities/:id/themes","description":"<p>Thème(s) associé(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","facilities",":id","themes"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"c997a8da-be99-4217-a955-95db3fdace86"},{"name":"Bookings","id":"2b612224-deb3-4e45-9be0-7f5fa2b42532","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/facilities/:id/bookings","description":"<p>Billetterie(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","facilities",":id","bookings"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"0LyYIYMOLB","key":"id"}]}},"response":[],"_postman_id":"2b612224-deb3-4e45-9be0-7f5fa2b42532"},{"name":"Fees","id":"de941776-5ed6-4c1d-ab4b-71ad97e2c2fd","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/facilities/:id/fees","description":"<p>Prix lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","facilities",":id","fees"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"0LyYIYMOLB","key":"id"}]}},"response":[],"_postman_id":"de941776-5ed6-4c1d-ab4b-71ad97e2c2fd"},{"name":"Contacts","id":"6b80f28f-2289-475d-ae7e-36bbed64e0e5","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/facilities/:id/contacts","description":"<p>Information(s) de contact liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","facilities",":id","contacts"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"0LyYIYMOLB","key":"id"}]}},"response":[{"id":"ba0c34e2-a456-40ce-8757-6338a5665c39","name":"✅ Contacts","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.publidata.io/v2/:instance/facilities/:id/contacts","host":["https://api.publidata.io"],"path":["v2",":instance","facilities",":id","contacts"],"variable":[{"key":"instance","value":"500-ans-renaissances"},{"key":"id","value":"0LyYIYMOLB"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Fri, 16 Nov 2018 09:57:14 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"658689118d649f44f17287c04e24f987\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"4ca7daa2-bda9-411f-a0a0-525485b29c1f"},{"key":"X-Runtime","value":"0.331538"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"MxQppc6eA7\",\n            \"type\": \"contact\",\n            \"attributes\": {\n                \"id\": \"MxQppc6eA7\",\n                \"created_at\": \"2018-11-15T19:00:33Z\",\n                \"updated_at\": \"2018-11-15T19:00:33Z\",\n                \"name\": null,\n                \"value\": \"02 47 23 47 23\",\n                \"opening_hours\": \"24/7\",\n                \"spoken_languages\": [\n                    \"fr\"\n                ],\n                \"contact_type\": \"phone_number\"\n            },\n            \"relationships\": {},\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\",\n                            \"value\",\n                            \"opening_hours\",\n                            \"spoken_languages\",\n                            \"contact_type\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"NLwaacq217\",\n            \"type\": \"contact\",\n            \"attributes\": {\n                \"id\": \"NLwaacq217\",\n                \"created_at\": \"2018-11-15T19:00:33Z\",\n                \"updated_at\": \"2018-11-15T19:00:33Z\",\n                \"name\": null,\n                \"value\": \"courrier@ville-amboise.fr\",\n                \"opening_hours\": \"24/7\",\n                \"spoken_languages\": [\n                    \"fr\"\n                ],\n                \"contact_type\": \"email\"\n            },\n            \"relationships\": {},\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\",\n                            \"value\",\n                            \"opening_hours\",\n                            \"spoken_languages\",\n                            \"contact_type\"\n                        ]\n                    }\n                ]\n            }\n        }\n    ],\n    \"meta\": {\n        \"items\": 2,\n        \"count\": 2,\n        \"page\": 1\n    },\n    \"links\": {\n        \"self\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/0LyYIYMOLB/contacts?page=1\",\n        \"pagination\": {\n            \"first\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/0LyYIYMOLB/contacts?page=1\",\n            \"last\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/0LyYIYMOLB/contacts?page=1\"\n        }\n    }\n}"}],"_postman_id":"6b80f28f-2289-475d-ae7e-36bbed64e0e5"},{"name":"Socials","id":"e1a7150a-dcbd-4611-9d02-19caaaf0c3ea","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/facilities/:id/socials","description":"<p>Information(s) sociale(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","facilities",":id","socials"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"0LyYIYMOLB","key":"id"}]}},"response":[{"id":"ceb8c3a1-55be-4a9e-a184-1558b6d988c9","name":"✅ Socials","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.publidata.io/v2/:instance/facilities/:id/socials","host":["https://api.publidata.io"],"path":["v2",":instance","facilities",":id","socials"],"variable":[{"key":"instance","value":"500-ans-renaissances"},{"key":"id","value":"0LyYIYMOLB"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Fri, 16 Nov 2018 09:57:00 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"58178c575ea9e36285c60edd5819655d\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"deba9144-5414-49c1-bb76-eae71e094cbc"},{"key":"X-Runtime","value":"0.259635"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"Kx0KKcKA17\",\n            \"type\": \"social\",\n            \"attributes\": {\n                \"id\": \"Kx0KKcKA17\",\n                \"created_at\": \"2018-11-15T19:00:33Z\",\n                \"updated_at\": \"2018-11-15T19:00:33Z\",\n                \"name\": null,\n                \"value\": \"https://www.ville-amboise.fr/\",\n                \"opening_hours\": \"24/7\",\n                \"spoken_language\": null,\n                \"social_type\": \"website\"\n            },\n            \"relationships\": {},\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\",\n                            \"value\",\n                            \"opening_hours\",\n                            \"spoken_language\",\n                            \"social_type\"\n                        ]\n                    }\n                ]\n            }\n        }\n    ],\n    \"meta\": {\n        \"items\": 1,\n        \"count\": 1,\n        \"page\": 1\n    },\n    \"links\": {\n        \"self\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/0LyYIYMOLB/socials?page=1\",\n        \"pagination\": {\n            \"first\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/0LyYIYMOLB/socials?page=1\",\n            \"last\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/0LyYIYMOLB/socials?page=1\"\n        }\n    }\n}"}],"_postman_id":"e1a7150a-dcbd-4611-9d02-19caaaf0c3ea"},{"name":"Schedules","id":"2c4972c9-963b-4a38-ab51-1ad92ad7d0fa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/facilities/:id/schedules","description":"<p>Public associé à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","facilities",":id","schedules"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"P7r1IwknVk","key":"id"}]}},"response":[{"id":"8f287447-327e-4766-bf5a-02585e658cfd","name":"✅ Schedules","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.publidata.io/v2/:instance/facilities/:id/schedules","host":["https://api.publidata.io"],"path":["v2",":instance","facilities",":id","schedules"],"variable":[{"key":"instance","value":"500-ans-renaissances"},{"key":"id","value":"P7r1IwknVk"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Fri, 16 Nov 2018 08:22:28 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"6efdb1adf34818898f277b183a6d2dd8\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"4e6954fc-c8e4-4b29-808b-eb8bb2bdbe98"},{"key":"X-Runtime","value":"0.278407"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"G7jG3HNzAx\",\n            \"type\": \"schedule\",\n            \"attributes\": {\n                \"id\": \"G7jG3HNzAx\",\n                \"created_at\": \"2018-11-15T13:48:05Z\",\n                \"updated_at\": \"2018-11-15T13:48:05Z\",\n                \"schedule_type\": \"default\",\n                \"opening_hours\": \"\",\n                \"name\": {\n                    \"fr\": \"Toute l'année\"\n                },\n                \"blurb\": {\n                    \"fr\": null\n                }\n            },\n            \"relationships\": {},\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"schedule_type\",\n                            \"opening_hours\",\n                            \"name\",\n                            \"blurb\"\n                        ]\n                    }\n                ]\n            }\n        }\n    ],\n    \"meta\": {\n        \"items\": 1,\n        \"count\": 1,\n        \"page\": 1\n    },\n    \"links\": {\n        \"self\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/P7r1IwknVk/schedules?page=1\",\n        \"pagination\": {\n            \"first\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/P7r1IwknVk/schedules?page=1\",\n            \"last\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/P7r1IwknVk/schedules?page=1\"\n        }\n    }\n}"}],"_postman_id":"2c4972c9-963b-4a38-ab51-1ad92ad7d0fa"},{"name":"🚧 Public","id":"a2115e84-d098-46a5-b631-b805dd403dcf","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/public","description":"<p>Public associé à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","public"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"a2115e84-d098-46a5-b631-b805dd403dcf"},{"name":"🚧 Accessibility","id":"2f920c0e-d445-4fa4-a93c-e55c58b4efce","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/accessibility","description":"<p>Information(s) d'accessibilité liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","accessibility"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"2f920c0e-d445-4fa4-a93c-e55c58b4efce"},{"name":"Partners","id":"00d4fecf-f02f-4784-aa18-a7c2a1cf1e77","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/facilities/:id/partners","description":"<p>Partenaire(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","facilities",":id","partners"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"string","value":"500-ans-renaissances","key":"instance"},{"type":"string","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"00d4fecf-f02f-4784-aa18-a7c2a1cf1e77"},{"name":"🚧 Instances","id":"32afcfd4-b798-4f0d-8ef1-5d29cc41c52a","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/instances","description":"<p>Instance(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","instances"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"32afcfd4-b798-4f0d-8ef1-5d29cc41c52a"},{"name":"Pages","id":"f2575fd6-dcd9-4f0f-9f38-4befaffd7064","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/facilities/:id/pages","description":"<p>Page(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","facilities",":id","pages"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"string","value":"500-ans-renaissances","key":"instance"},{"type":"string","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"f2575fd6-dcd9-4f0f-9f38-4befaffd7064"},{"name":"🚧 Contributors","id":"f0b3f802-b520-4878-b112-2714fcd9d5ee","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/contributors","description":"<p>Contributeur(s) / mainteneur(s) de la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","contributors"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"f0b3f802-b520-4878-b112-2714fcd9d5ee"}],"id":"71b8479a-24d5-4ec8-baa4-cb19633d6d40","_postman_id":"71b8479a-24d5-4ec8-baa4-cb19633d6d40","description":""},{"name":"Médias","item":[{"name":"🚧 Medias","id":"8f319735-0d4e-4369-ae53-aee4079c72ae","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/medias","description":"<p>Média(s) associé(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","medias"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"8f319735-0d4e-4369-ae53-aee4079c72ae"},{"name":"Images","id":"7f1b13bb-64b1-4786-a347-9c7ff25717fb","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/facilities/:id/images","description":"<p>Image(s) associée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","facilities",":id","images"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"0LyYIYMOLB","key":"id"}]}},"response":[{"id":"e5f39230-1caa-4472-9386-ba9f1d531fa3","name":"✅ Images","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.publidata.io/v2/:instance/facilities/:id/images","host":["https://api.publidata.io"],"path":["v2",":instance","facilities",":id","images"],"variable":[{"key":"instance","value":"500-ans-renaissances"},{"key":"id","value":"0LyYIYMOLB"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Fri, 16 Nov 2018 09:56:30 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"677aada2456f64634affd83a291ebd90\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"d166e0e6-fba0-42c1-b209-2670716948ae"},{"key":"X-Runtime","value":"0.489098"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"KVq0frP6Lw\",\n            \"type\": \"image\",\n            \"attributes\": {\n                \"id\": \"KVq0frP6Lw\",\n                \"created_at\": \"2018-11-14T13:37:48Z\",\n                \"updated_at\": \"2018-11-14T13:41:22Z\",\n                \"role\": \"profile\",\n                \"name\": {\n                    \"fr\": \"Saint-florentin-ensemble-fleurs.JPG\"\n                },\n                \"blurb\": {},\n                \"alt\": {},\n                \"copyright\": {},\n                \"formats\": [\n                    \"avatar_small\",\n                    \"avatar_medium\",\n                    \"avatar_large\",\n                    \"avatar_xlarge\",\n                    \"cover_small\",\n                    \"cover_medium\",\n                    \"cover_large\",\n                    \"cover_xlarge\",\n                    \"logo_small\",\n                    \"logo_medium\",\n                    \"logo_large\",\n                    \"image_small\",\n                    \"image_medium\",\n                    \"image_large\",\n                    \"image_xlarge\",\n                    \"twitter_image\",\n                    \"og_image\",\n                    \"picto_small\",\n                    \"picto_medium\",\n                    \"picto_large\"\n                ]\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"href\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/030/540/original/Saint-florentin-ensemble-fleurs.JPG?1542202665\"\n            },\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [],\n                \"licenses\": [\n                    {\n                        \"type\": \"Creative Commons Attribution 4.0 International\",\n                        \"SPDX\": \"CC-BY-4.0\",\n                        \"link\": \"https://spdx.org/licenses/CC-BY-4.0.html\",\n                        \"targets\": [\n                            \"role\",\n                            \"name\",\n                            \"blurb\",\n                            \"alt\",\n                            \"copyright\",\n                            \"formats\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"WxzDfzeEV9\",\n            \"type\": \"image\",\n            \"attributes\": {\n                \"id\": \"WxzDfzeEV9\",\n                \"created_at\": \"2018-11-14T13:38:18Z\",\n                \"updated_at\": \"2018-11-14T13:41:23Z\",\n                \"role\": \"cover\",\n                \"name\": {\n                    \"fr\": \"Saint-Florentin.jpg\"\n                },\n                \"blurb\": {},\n                \"alt\": {},\n                \"copyright\": {},\n                \"formats\": [\n                    \"avatar_small\",\n                    \"avatar_medium\",\n                    \"avatar_large\",\n                    \"avatar_xlarge\",\n                    \"cover_small\",\n                    \"cover_medium\",\n                    \"cover_large\",\n                    \"cover_xlarge\",\n                    \"logo_small\",\n                    \"logo_medium\",\n                    \"logo_large\",\n                    \"image_small\",\n                    \"image_medium\",\n                    \"image_large\",\n                    \"image_xlarge\",\n                    \"twitter_image\",\n                    \"og_image\",\n                    \"picto_small\",\n                    \"picto_medium\",\n                    \"picto_large\"\n                ]\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"href\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/030/541/original/Saint-Florentin.jpg?1542202695\"\n            },\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [],\n                \"licenses\": [\n                    {\n                        \"type\": \"Creative Commons Attribution 4.0 International\",\n                        \"SPDX\": \"CC-BY-4.0\",\n                        \"link\": \"https://spdx.org/licenses/CC-BY-4.0.html\",\n                        \"targets\": [\n                            \"role\",\n                            \"name\",\n                            \"blurb\",\n                            \"alt\",\n                            \"copyright\",\n                            \"formats\"\n                        ]\n                    }\n                ]\n            }\n        }\n    ],\n    \"meta\": {\n        \"items\": 2,\n        \"count\": 2,\n        \"page\": 1\n    },\n    \"links\": {\n        \"self\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/0LyYIYMOLB/images?page=1\",\n        \"pagination\": {\n            \"first\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/0LyYIYMOLB/images?page=1\",\n            \"last\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/facilities/0LyYIYMOLB/images?page=1\"\n        }\n    }\n}"}],"_postman_id":"7f1b13bb-64b1-4786-a347-9c7ff25717fb"},{"name":"Documents","id":"40e5cf5c-17b2-4d06-a18f-8260e1bce387","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/facilities/:id/documents","description":"<p>Document(s) associé(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","facilities",":id","documents"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"0LyYIYMOLB","key":"id"}]}},"response":[],"_postman_id":"40e5cf5c-17b2-4d06-a18f-8260e1bce387"}],"id":"5a3443de-124a-44b7-b704-e1b919e56c7f","_postman_id":"5a3443de-124a-44b7-b704-e1b919e56c7f","description":""}],"id":"b3022851-e7ae-430d-b282-afcc1347c5a3","description":"<p>Les événements</p>\n","event":[{"listen":"prerequest","script":{"id":"768578b7-1e5d-45b7-ab56-2a8b856f2061","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"a419bb76-510b-4b2b-bc5d-608de7e9b0d3","type":"text/javascript","exec":[""]}}],"_postman_id":"b3022851-e7ae-430d-b282-afcc1347c5a3"},{"name":"Associations","item":[{"name":"Endpoints principaux","item":[{"name":"Index","id":"574a1527-0636-4380-9005-4dbd5cc025b3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/non_profits","description":"<p>Liste des événements</p>\n","urlObject":{"path":["v2",":instance","non_profits"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"string","value":"500-ans-renaissances","key":"instance"}]}},"response":[{"id":"af240c14-45be-48d2-8eec-274690076765","name":"✅ Index","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.publidata.io/v2/:instance/events","host":["https://api.publidata.io"],"path":["v2",":instance","events"],"variable":[{"key":"instance","value":"500-ans-renaissances"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Tue, 06 Nov 2018 14:35:32 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"e272b80759b3239cb223ac313ead9d8a\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"ef157796-c377-4ab4-b340-25fe123f51d3"},{"key":"X-Runtime","value":"0.211831"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"J7dASjXPxB\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"J7dASjXPxB\",\n                \"created_at\": \"2018-11-02T13:36:24Z\",\n                \"updated_at\": \"2018-11-06T14:11:43Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {\n                    \"fr\": \"La 28e édition du Festival International des Jardins abordera un thème cher à la Renaissance.\"\n                },\n                \"name\": {\n                    \"fr\": \"Festival International des Jardins de Chaumont-sur-Loire\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"medium-insert-active\\\"><br></p>\"\n                },\n                \"start_at\": \"2019-04-25T10:00:00Z\",\n                \"end_at\": \"2019-11-03T19:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"y7KpS6Dgxv\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"y7KpS6Dgxv\",\n                \"created_at\": \"2018-10-31T11:26:32Z\",\n                \"updated_at\": \"2018-11-06T10:56:29Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {\n                    \"fr\": \"62eme Colloque International d'études humanistes du centre d'études supérieures de la Renaissance\"\n                },\n                \"name\": {\n                    \"fr\": \"Léonard de Vinci création et innovations \"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"is-active\\\">Le 62ème colloque international d’études humanistes du Centre d’études supérieures de la Renaissance de Tours sera consacré à Léonard de Vinci en 2019.&nbsp;</p><p class=\\\"is-active\\\">Cet événement rassemblera les plus grands spécialistes internationaux du sujet et proposera d’aborder toutes les facettes de l’oeuvre de Léonard sous le prisme de l’invention et de l’innovation : mécanique, médecine, architecture, biomimétisme, etc. Une partie de ce colloque se tiendra dans des lieux marqués par la figure de Léonard de Vinci : le Château du Clos Lucé à Amboise et le Château de Chambord.</p>\"\n                },\n                \"start_at\": \"2019-06-01T00:00:00Z\",\n                \"end_at\": \"2019-06-30T00:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"G7j3SNKzxg\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"G7j3SNKzxg\",\n                \"created_at\": \"2018-10-31T09:20:00Z\",\n                \"updated_at\": \"2018-11-06T10:56:29Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {},\n                \"name\": {\n                    \"fr\": \"Les Borgia à Chinon\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"\\\">La Forteresse royale de Chinon, proposera une reconstitution historique de la venue de César Borgia, fils du pape Alexandre VI pour rencontrer le roi de France à Chinon en 1498 . Reconstitution (cortège équestre). Démonstrations de Calcio Storico (sport florentin de la Renaissance, ancêtre du football actuel…). Dégustations de mets et recettes de la Renaissance florentine. Danses et musiques Renaissance.<br></p>\"\n                },\n                \"start_at\": \"2019-07-21T00:00:00Z\",\n                \"end_at\": \"2019-07-21T00:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"jVJbSWMWVR\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"jVJbSWMWVR\",\n                \"created_at\": \"2018-10-31T08:54:32Z\",\n                \"updated_at\": \"2018-11-06T10:56:28Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {},\n                \"name\": {\n                    \"fr\": \"La renaissance en Val de Loire, en France et en Europe - Festival du film français renaissance\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p>Pour la 21ème édition des Rendez- vous de l’Histoire, le Centre d’Études Supérieures de la Renaissance sera fortement impliqué dans une programmation spécifique « La Renaissance en Val de Loire, en France et en Europe ». Dans le cadre du festival du film français « Renaissance », seront projetés des films historiques accompagnés de moments de réflexion (débats, conférences et ateliers) mettant en perspective la création cinématographique au regard de l’histoire de la peinture historiciste.<br></p>\"\n                },\n                \"start_at\": \"2019-10-01T00:00:00Z\",\n                \"end_at\": \"2019-10-31T00:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"J7dASjXwxB\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"J7dASjXwxB\",\n                \"created_at\": \"2018-10-31T08:42:55Z\",\n                \"updated_at\": \"2018-11-06T10:56:28Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {\n                    \"fr\": \"Parcours numérique, sonore et interactif\"\n                },\n                \"name\": {\n                    \"fr\": \"Renaissance comme Rabelais\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<h3>Parcours numérique, sonore et interactif combinant des moyens techniques innovants capables d’allier  géographie littéraire et géographie réelle. Création d’un parcours sonore géolocalisé à partir d’une application mobile entre La Devinière, maison natale de Rabelais, et l’Abbaye de Seuilly.<br></h3>\"\n                },\n                \"start_at\": \"2019-07-01T00:00:00Z\",\n                \"end_at\": \"2019-10-31T00:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"DVAWS3NQxX\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"DVAWS3NQxX\",\n                \"created_at\": \"2018-10-31T08:34:25Z\",\n                \"updated_at\": \"2018-11-06T10:56:28Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {},\n                \"name\": {\n                    \"fr\": \"Spectacle numérique itinérant Renaissance(S)\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p>Ce spectacle numérique invite le public à s’immerger par le biais des dernières technologies dans un environnement visuel et sonore en plusieurs dimensions. Diverses technologies, de réalité augmentée ou de réalité virtuelle peuvent être détournées par le biais d’une immersion sensori-motrice grâce à une ou plusieurs interfaces visuelles. Ce spectacle proposera une narration dans l’esprit humaniste et novateur de la Renaissance.</p><p>Il évoquera les dimensions créatives, anticipatrices, pluridisciplinaires de Léonard de Vinci, les acteurs, oeuvres, sites patrimoniaux et culturels majeurs du territoire à la Renaissance, le Centre-Val de Loire aujourd’hui et sa projection dans le futur.</p>\"\n                },\n                \"start_at\": \"2019-08-15T19:00:00Z\",\n                \"end_at\": \"2019-09-15T23:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"8VvZS1y0Vv\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"8VvZS1y0Vv\",\n                \"created_at\": \"2018-10-31T08:29:42Z\",\n                \"updated_at\": \"2018-11-06T10:56:28Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {},\n                \"name\": {\n                    \"fr\": \"Magnificences à la cour de France\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"is-active\\\">Ce spectacle de l’ensemble Doulce Mémoire, recrée l’univers d’une fête à la cour de François I<sup>er</sup>, autour de 1515, celles qui virent l’arrivée en France de Léonard de Vinci à l’invitation du roi français. Peintre, inventeur de génie, Léonard était aussi organisateur de fêtes fameuses, dont l’inventivité et la puissance créatrice étaient appréciées les puissants.<br></p>\"\n                },\n                \"start_at\": \"2019-07-23T19:00:00Z\",\n                \"end_at\": \"2019-07-23T23:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"NLwlSvmaVD\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"NLwlSvmaVD\",\n                \"created_at\": \"2018-10-30T16:51:07Z\",\n                \"updated_at\": \"2018-11-06T10:56:27Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {\n                    \"fr\": \"Exposition regroupant des artistes contemporains influencés par Léonard de Vinci et la Renaissance.\"\n                },\n                \"name\": {\n                    \"fr\": \"Hommage contemporain à la Renaissance\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"is-active\\\">Exposition d’artistes contemporains ayant été influencés par Léonard de Vinci et la Renaissance, sur l’exemple de Fabien Merelle, établi à Tours et travaillant sur la scène internationale.&nbsp;</p><p class=\\\"is-active\\\">L’exposition « Hommage à Léonard » transpose dans l’art contemporain l’héritage du maître du Cinquecento mort en Val de Loire il y a 500 ans. Vaste cabinet de curiosités, l’exposition présentée dans les salles historiques du château fait écho au système de pensée&nbsp;<span style=\\\"font-size: 1em; font-family: ProximaNova, Helvetica, Arial, &quot;Sans Serif&quot;;\\\">du Maitre, génie polyvalent où la réalisation ne constitue pas la fin mais le moyen de la réflexion. Conçue comme une sorte de « mise en curiosité » envers les différents apports de Léonard, homme d’esprit universel à l’histoire des arts en Europe, interprétés ou prolongés par différents artistes de notre temps travaillant sur la scène internationale ; l’exposition montre aussi que les échanges entre Italie et France vers 1500, l’italianisme dans les&nbsp;</span><span style=\\\"font-size: 1em; font-family: ProximaNova, Helvetica, Arial, &quot;Sans Serif&quot;;\\\">arts amorcé sous Charles VIII et Louis XII se perpétuent de nos jours, avec les travaux des artistes florentines Antonella Bussanich, Alessandra Capodacqua et Alessandra Ragionier. Comme dans les chapitres d’un livre, chaque salle illustre l’un des thèmes étudiés par Léonard. L’autoportrait / Le portrait / La peinture d’histoire /&nbsp;</span><span style=\\\"font-size: 1em; font-family: ProximaNova, Helvetica, Arial, &quot;Sans Serif&quot;;\\\">Le Paysage / Le codex / La nature morte / Le Portrait féminin / Le Drapé.</span></p>\"\n                },\n                \"start_at\": \"2019-04-01T10:00:00Z\",\n                \"end_at\": \"2019-11-30T18:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"8VOeS416xY\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"8VOeS416xY\",\n                \"created_at\": \"2018-10-29T16:47:42Z\",\n                \"updated_at\": \"2018-11-06T10:56:30Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {\n                    \"fr\": \"Dans le cadre de l'anniversaire des 500ans de la Renaissance, l'artiste Ravo revisite l'oeuvre de François-Guillaume Ménageot \\\"La mort de Léonard de Vinci\\\"\"\n                },\n                \"name\": {\n                    \"fr\": \"Ravo Mattoni invité du Château Royal d' Amboise\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"\\\">Andrea Mattoni alias <b>RAVO</b>, artiste-graffeur italien de son état, a débuté en 2016 un ambitieux projet visant à reproduire, in situ et en très grand format, des chefs-d’œuvre de la peinture classique signés du Caravage, de Delacroix, de Delatour… Profondeur des couleurs, puissance des lignes et de l’échelle, l’hommage de RAVO aux grands maîtres est d’une modernité réjouissante… Le résultat est bluffant.</p><p class=\\\"\\\">De manière à prolonger l’exposition « La Mort de Léonard de Vinci : la construction d’un mythe » préparée avec la BNF, le château royal d’Amboise a demandé à RAVO de réaliser 5 toiles de grandes dimensions (4.5m X 3m). Celles-ci prendront pour sujet des détails du monumental tableau de François-Guillaume Ménageot « La Mort de Léonard de Vinci », et trouveront place sur les murs de la tour cavalière des Minimes, du 2 mai au 2 septembre 2019. Pour honorer cette commande, l’artiste sera en résidence au château royal d’Amboise durant une dizaine de jours, en avril 2019. Il réalisera ses peintures en public.</p><p class=\\\"\\\">Cette exposition est organisée avec le concours de l’association des Ateliers de l’Etoile.</p><p class=\\\"\\\"><span style=\\\"font-size: 1em; font-family: ProximaNova, Helvetica, Arial, &quot;Sans Serif&quot;;\\\"><b>\\\"Exposition « La Mort de Léonard de Vinci : la construction d’un mythe » - Partenariat BNF (Bibliothèque Nationale de France)</b></span><br></p><p class=\\\"\\\">Tous les jours, du 2 mai au 2 septembre 2019.</p><p class=\\\"\\\">La grande exposition intitulée « La Mort de Léonard de Vinci : la construction d’un mythe », articulée autour du monumental tableau (280 cm X 357 cm) de François-Guillaume Ménageot La mort de Léonard de Vinci, et d’une collection de gravures issues des collections nationales, nous éclairera sur la manière dont les contours de l’amitié entre le roi François Ier et Léonard ont été progressivement réécrits par l’Histoire, et assimilés par elle jusqu’à la construction d’un mythe mis au service de l’image de la monarchie française au XVIII<sup>ème</sup> siècle.</p><p>Au cœur de la riche programmation des célébrations du 5ème centenaire, cette exposition majeure viendra aussi rappeler à un public venu des quatre coins du monde la place éternelle qu’occupe Léonard de Vinci en Val de Loire, et à Amboise en particulier où il repose pour l’éternité dans la quiétude de la chapelle du château.\\\"</p>\"\n                },\n                \"start_at\": \"2019-05-02T09:00:00Z\",\n                \"end_at\": \"2019-09-02T18:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"items\": 9,\n        \"count\": 9,\n        \"page\": 1\n    },\n    \"links\": {\n        \"self\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events?page=1\",\n        \"pagination\": {\n            \"first\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events?page=1\",\n            \"last\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events?page=1\"\n        }\n    }\n}"}],"_postman_id":"574a1527-0636-4380-9005-4dbd5cc025b3"},{"name":"Show","id":"6a1aaa38-a25b-427b-a325-cecacd0b0647","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/{{instance_id}}/non_profits/:id","description":"<p>Détail d'un événement</p>\n","urlObject":{"path":["v2","{{instance_id}}","non_profits",":id"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"string","value":"y7KpS6Dgxv","key":"id"}]}},"response":[{"id":"ecf46a33-b576-45ea-9b8d-3d54ada4bf89","name":"✅ Show","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.publidata.io/v2/{{instance_id}}/events/:id","host":["https://api.publidata.io"],"path":["v2","{{instance_id}}","events",":id"],"variable":[{"key":"id","value":"y7KpS6Dgxv"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Tue, 06 Nov 2018 14:50:05 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"811c246d37cc926cc75bf582cd364fb3\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"d619c237-6f78-4100-9d77-b11aa3b6dc53"},{"key":"X-Runtime","value":"0.051868"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"y7KpS6Dgxv\",\n        \"type\": \"event\",\n        \"attributes\": {\n            \"id\": \"y7KpS6Dgxv\",\n            \"created_at\": \"2018-10-31T11:26:32Z\",\n            \"updated_at\": \"2018-11-06T10:56:29Z\",\n            \"cancelled\": false,\n            \"cancellation_reason\": null,\n            \"free_admission\": null,\n            \"free_admission_condition\": null,\n            \"punchline\": {\n                \"fr\": \"62eme Colloque International d'études humanistes du centre d'études supérieures de la Renaissance\"\n            },\n            \"name\": {\n                \"fr\": \"Léonard de Vinci création et innovations \"\n            },\n            \"blurb\": {\n                \"fr\": \"<p class=\\\"is-active\\\">Le 62ème colloque international d’études humanistes du Centre d’études supérieures de la Renaissance de Tours sera consacré à Léonard de Vinci en 2019.&nbsp;</p><p class=\\\"is-active\\\">Cet événement rassemblera les plus grands spécialistes internationaux du sujet et proposera d’aborder toutes les facettes de l’oeuvre de Léonard sous le prisme de l’invention et de l’innovation : mécanique, médecine, architecture, biomimétisme, etc. Une partie de ce colloque se tiendra dans des lieux marqués par la figure de Léonard de Vinci : le Château du Clos Lucé à Amboise et le Château de Chambord.</p>\"\n            },\n            \"start_at\": \"2019-06-01T00:00:00Z\",\n            \"end_at\": \"2019-06-30T00:00:00Z\"\n        },\n        \"relationships\": {},\n        \"links\": {\n            \"self\": {\n                \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv\"\n            },\n            \"relations\": {\n                \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/cities\",\n                \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/companies\",\n                \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/departments\",\n                \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/elects\",\n                \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/etablissement_publics\",\n                \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/event_groups\",\n                \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/events\",\n                \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/facilities\",\n                \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/news\",\n                \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/non_profits\",\n                \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/performers\",\n                \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/projects\",\n                \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/regions\",\n                \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/skills\"\n            },\n            \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/images\",\n            \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/documents\",\n            \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates\",\n            \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/type\",\n            \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/types\"\n        },\n        \"meta\": {\n            \"licenses\": [\n                {\n                    \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                    \"SPDX\": \"ODbL-1.0\",\n                    \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                    \"targets\": [\n                        \"cancelled\",\n                        \"cancellation_reason\",\n                        \"free_admission\",\n                        \"free_admission_condition\",\n                        \"punchline\",\n                        \"name\",\n                        \"blurb\",\n                        \"start_at\",\n                        \"end_at\"\n                    ]\n                }\n            ],\n            \"instances\": {\n                \"500-ans-renaissances\": [\n                    \"fr\"\n                ]\n            }\n        }\n    }\n}"}],"_postman_id":"6a1aaa38-a25b-427b-a325-cecacd0b0647"}],"id":"48d51bab-a7dd-4d42-bdbe-a748d784fe4e","_postman_id":"48d51bab-a7dd-4d42-bdbe-a748d784fe4e","description":""},{"name":"Ressources liées","item":[{"name":"✅ Types","id":"41b09d83-c2df-4669-b6c2-8aa93e510265","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/types","description":"<p>Type(s) de la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","types"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[{"id":"a1ca0371-6264-4a98-9fcd-6c7042e8078c","name":"✅ Types","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.publidata.io/v2/:instance/events/:id/types","host":["https://api.publidata.io"],"path":["v2",":instance","events",":id","types"],"variable":[{"key":"instance","value":"500-ans-renaissances"},{"key":"id","value":"y7KpS6Dgxv"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Tue, 06 Nov 2018 14:56:10 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"aca7a58992ce54decfd0aa1309558bf9\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"d9a108a9-5d7c-486f-9b8f-620b97ceecb4"},{"key":"X-Runtime","value":"0.137086"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"wo7NbcKj7n\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"wo7NbcKj7n\",\n                \"created_at\": \"2018-10-23T01:23:57Z\",\n                \"updated_at\": \"2018-10-23T01:24:19Z\",\n                \"name\": {\n                    \"fr\": \"Rassemblement\"\n                }\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": \"https://publidata-staging.herokuapp.com/api/v2/event_types/wo7NbcKj7n\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"Wn7lQcrKxm\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"Wn7lQcrKxm\",\n                \"created_at\": \"2018-10-23T01:23:57Z\",\n                \"updated_at\": \"2018-10-23T01:24:19Z\",\n                \"name\": {\n                    \"fr\": \"Colloque\"\n                }\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": \"https://publidata-staging.herokuapp.com/api/v2/event_types/Wn7lQcrKxm\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        }\n    ],\n    \"meta\": {\n        \"items\": 2,\n        \"count\": 2,\n        \"page\": 1\n    },\n    \"links\": {\n        \"self\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/types?page=1\",\n        \"pagination\": {\n            \"first\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/types?page=1\",\n            \"last\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/types?page=1\"\n        }\n    }\n}"}],"_postman_id":"41b09d83-c2df-4669-b6c2-8aa93e510265"},{"name":"🚧 Themes","id":"7d801761-7ef0-4b78-be03-a06732db848d","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/themes","description":"<p>Thème(s) associé(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","themes"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"7d801761-7ef0-4b78-be03-a06732db848d"},{"name":"✅ Dates","id":"97053ee1-791d-4133-afd4-af3a1cd1ed8f","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/dates","description":"<p>Date(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","dates"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[{"id":"57f3356f-acf0-4fcb-8ed5-863e1936a132","name":"✅ Dates","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.publidata.io/v2/:instance/events/:id/dates","host":["https://api.publidata.io"],"path":["v2",":instance","events",":id","dates"],"variable":[{"key":"instance","value":"500-ans-renaissances"},{"key":"id","value":"y7KpS6Dgxv"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Tue, 06 Nov 2018 14:57:37 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"5019bf7102c4e9c481afd4dc20c410e1\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"5b74b321-cdd9-461b-a32e-4263c646d08b"},{"key":"X-Runtime","value":"0.316049"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"DVA6ivYR7X\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DVA6ivYR7X\",\n                \"created_at\": \"2018-10-31T11:33:11Z\",\n                \"updated_at\": \"2018-10-31T11:33:11Z\",\n                \"start_at\": \"2019-06-01T00:00:00Z\",\n                \"end_at\": \"2019-06-01T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 01 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"2VX9iOjd7N\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"2VX9iOjd7N\",\n                \"created_at\": \"2018-10-31T11:33:11Z\",\n                \"updated_at\": \"2018-10-31T11:33:11Z\",\n                \"start_at\": \"2019-06-02T00:00:00Z\",\n                \"end_at\": \"2019-06-02T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 02 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"J7d3igMbVB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"J7d3igMbVB\",\n                \"created_at\": \"2018-10-31T11:33:11Z\",\n                \"updated_at\": \"2018-10-31T11:33:11Z\",\n                \"start_at\": \"2019-06-03T00:00:00Z\",\n                \"end_at\": \"2019-06-03T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 03 Mo 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"jVJvi2nXVR\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"jVJvi2nXVR\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-04T00:00:00Z\",\n                \"end_at\": \"2019-06-04T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 04 Tu 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"G7jaiXOAVg\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"G7jaiXOAVg\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-05T00:00:00Z\",\n                \"end_at\": \"2019-06-05T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 05 We 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DLkqijM67a\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DLkqijM67a\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-06T00:00:00Z\",\n                \"end_at\": \"2019-06-06T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 06 Th 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"d7DzidZmLB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"d7DzidZmLB\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-07T00:00:00Z\",\n                \"end_at\": \"2019-06-07T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 07 Fr 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"y7KAiEOMLv\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"y7KAiEOMLv\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-08T00:00:00Z\",\n                \"end_at\": \"2019-06-08T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 08 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"Kx09iEraLX\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"Kx09iEraLX\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-09T00:00:00Z\",\n                \"end_at\": \"2019-06-09T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 09 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"Q7BaiA1AVb\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"Q7BaiA1AVb\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-10T00:00:00Z\",\n                \"end_at\": \"2019-06-10T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 10 Mo 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"NLwjibKKxD\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"NLwjibKKxD\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-11T00:00:00Z\",\n                \"end_at\": \"2019-06-11T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 11 Tu 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"D744i3N078\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"D744i3N078\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-12T00:00:00Z\",\n                \"end_at\": \"2019-06-12T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 12 We 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"8VvJieDWVv\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"8VvJieDWVv\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-13T00:00:00Z\",\n                \"end_at\": \"2019-06-13T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 13 Th 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DVA6ivYn7X\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DVA6ivYn7X\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-14T00:00:00Z\",\n                \"end_at\": \"2019-06-14T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 14 Fr 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"2VX9iOjl7N\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"2VX9iOjl7N\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-15T00:00:00Z\",\n                \"end_at\": \"2019-06-15T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 15 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"J7d3igMRVB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"J7d3igMRVB\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-16T00:00:00Z\",\n                \"end_at\": \"2019-06-16T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 16 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"jVJvi2nyVR\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"jVJvi2nyVR\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-17T00:00:00Z\",\n                \"end_at\": \"2019-06-17T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 17 Mo 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"G7jaiXOoVg\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"G7jaiXOoVg\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-18T00:00:00Z\",\n                \"end_at\": \"2019-06-18T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 18 Tu 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DLkqijMy7a\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DLkqijMy7a\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-19T00:00:00Z\",\n                \"end_at\": \"2019-06-19T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 19 We 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"d7DzidZMLB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"d7DzidZMLB\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-20T00:00:00Z\",\n                \"end_at\": \"2019-06-20T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 20 Th 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        }\n    ],\n    \"meta\": {\n        \"items\": 20,\n        \"count\": 30,\n        \"page\": 1\n    },\n    \"links\": {\n        \"self\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates?page=1\",\n        \"pagination\": {\n            \"first\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates?page=1\",\n            \"next\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates?page=2\",\n            \"last\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates?page=2\"\n        }\n    }\n}"}],"_postman_id":"97053ee1-791d-4133-afd4-af3a1cd1ed8f"},{"name":"🚧 Tickets","id":"59de59da-a8c6-4c05-adaa-c0256881a20b","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/tickets","description":"<p>Billetterie(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","tickets"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"59de59da-a8c6-4c05-adaa-c0256881a20b"},{"name":"🚧 Fees","id":"75b7988f-2a92-4442-a285-a88271ee74e3","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/fees","description":"<p>Prix lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","fees"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"75b7988f-2a92-4442-a285-a88271ee74e3"},{"name":"🚧 Contacts","id":"c98dfb30-f175-4a7d-b83e-f3b18cdaafc0","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/contacts","description":"<p>Information(s) de contact liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","contacts"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"c98dfb30-f175-4a7d-b83e-f3b18cdaafc0"},{"name":"🚧 Socials","id":"8a2ebf01-bf3a-45be-860f-ef9ef0a30ca8","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/socials","description":"<p>Information(s) sociale(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","socials"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"8a2ebf01-bf3a-45be-860f-ef9ef0a30ca8"},{"name":"🚧 Public","id":"09290ae5-0d08-4f8c-8470-035daf664169","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/public","description":"<p>Public associé à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","public"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"09290ae5-0d08-4f8c-8470-035daf664169"},{"name":"🚧 Accessibility","id":"4bf0a952-3794-4d64-9add-58ee11cfea8c","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/accessibility","description":"<p>Information(s) d'accessibilité liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","accessibility"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"4bf0a952-3794-4d64-9add-58ee11cfea8c"},{"name":"🚧 Partners","id":"bcfb45ac-a1c0-4ee0-afb3-012c1dfe4e06","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/partners","description":"<p>Partenaire(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","partners"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"bcfb45ac-a1c0-4ee0-afb3-012c1dfe4e06"},{"name":"🚧 Instances","id":"37fa6ed5-6a41-4de1-b3de-1301d39ca627","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/instances","description":"<p>Instance(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","instances"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"37fa6ed5-6a41-4de1-b3de-1301d39ca627"},{"name":"🚧 Pages","id":"3b540a69-e07e-48df-82b0-aaf038b5034b","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/skills","description":"<p>Page(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","skills"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"3b540a69-e07e-48df-82b0-aaf038b5034b"},{"name":"🚧 Contributors","id":"df7849a0-1d02-4340-aed6-36b2f420889d","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/contributors","description":"<p>Contributeur(s) / mainteneur(s) de la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","contributors"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"df7849a0-1d02-4340-aed6-36b2f420889d"}],"id":"c7609980-6162-49f7-aeeb-c97aab4690f5","_postman_id":"c7609980-6162-49f7-aeeb-c97aab4690f5","description":""},{"name":"Relations","item":[{"name":"🚧 Relations","id":"13448783-54aa-4c7b-97da-c299ed12c5aa","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/themes","description":"<p>Ressource(s) associée(s) à ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","themes"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"13448783-54aa-4c7b-97da-c299ed12c5aa"},{"name":"🚧 Facilities","id":"a8ec7796-9ad3-46ed-8580-15673ef7d0f9","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/facilities","description":"<p>Équipement(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","facilities"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"a8ec7796-9ad3-46ed-8580-15673ef7d0f9"},{"name":"🚧 Cities","id":"b1e083df-eed8-4c90-96d5-6e18c6765dca","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/cities","description":"<p>Commune(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","cities"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"b1e083df-eed8-4c90-96d5-6e18c6765dca"},{"name":"🚧 Departments","id":"6d0a4c04-1687-468f-8eb5-2375d9b0303c","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/departments","description":"<p>Départements(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","departments"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"6d0a4c04-1687-468f-8eb5-2375d9b0303c"},{"name":"🚧 Regions","id":"b6ce7ecc-c3cd-48fe-944c-89e093ec558b","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/regions","description":"<p>Région(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","regions"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"b6ce7ecc-c3cd-48fe-944c-89e093ec558b"},{"name":"🚧 News","id":"d4f8dc96-75f4-4013-ad6a-d1a0a82dc01b","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/news","description":"<p>Actualité(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","news"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"d4f8dc96-75f4-4013-ad6a-d1a0a82dc01b"},{"name":"✅ Events","id":"7fc2f8d0-2f7e-4fdd-ae7b-da6ea2f7688f","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/events","description":"<p>Événement(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","events"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"7fc2f8d0-2f7e-4fdd-ae7b-da6ea2f7688f"},{"name":"🚧 EventGroups","id":"7cb71b5f-1b91-4dc5-b47b-ed27ae88fc78","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/event_groups","description":"<p>Groupe(s) d'événement(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","event_groups"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"7cb71b5f-1b91-4dc5-b47b-ed27ae88fc78"},{"name":"🚧 Projects","id":"cda05a33-bb48-4cdf-8200-189a6044c230","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/projects","description":"<p>Projet(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","projects"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"cda05a33-bb48-4cdf-8200-189a6044c230"},{"name":"🚧 Performers","id":"6cedbd00-add2-483e-8589-2e7d8299e6d9","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/performers","description":"<p>Artiste(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","performers"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"6cedbd00-add2-483e-8589-2e7d8299e6d9"},{"name":"🚧 Companies","id":"816b5e67-0702-42cd-9b4a-d9b3d18e531d","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/companies","description":"<p>Entreprise(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","companies"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"816b5e67-0702-42cd-9b4a-d9b3d18e531d"},{"name":"🚧 NonProfits","id":"dd6b726b-0555-46e5-9dc1-a44132fa8c51","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/non_profits","description":"<p>Associations(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","non_profits"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"dd6b726b-0555-46e5-9dc1-a44132fa8c51"},{"name":"🚧 EtablissementPublics","id":"7b07f1c8-1458-449a-bcb1-f4652884e5a8","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/etablissement_publics","description":"<p>Établissement(s) public(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","etablissement_publics"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"7b07f1c8-1458-449a-bcb1-f4652884e5a8"},{"name":"🚧 Skills","id":"a4c11f0b-1517-4002-864f-fb6e602a11b0","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/skills","description":"<p>Compétence(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","skills"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"a4c11f0b-1517-4002-864f-fb6e602a11b0"},{"name":"🚧 Elects","id":"c946601c-bfde-40c4-b443-47bee6c8ae3a","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/elects","description":"<p>Élus(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","elects"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"c946601c-bfde-40c4-b443-47bee6c8ae3a"}],"id":"91fa1337-b976-48d3-9548-f8edf3ea88a8","description":"<p>A venir... 🚧</p>\n","event":[{"listen":"prerequest","script":{"id":"487c0f48-a1cd-4aae-af2f-4b62ccf8bb0b","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"4dfafa06-8884-4b36-9c42-31cba1746986","type":"text/javascript","exec":[""]}}],"_postman_id":"91fa1337-b976-48d3-9548-f8edf3ea88a8"},{"name":"Médias","item":[{"name":"🚧 Medias","id":"806c2054-cca2-47ee-9934-1e1a65e731ba","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/medias","description":"<p>Média(s) associé(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","medias"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"806c2054-cca2-47ee-9934-1e1a65e731ba"},{"name":"✅ Images","id":"6f4c413c-ebba-4214-9047-47cd243dab5b","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/images","description":"<p>Image(s) associée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","images"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"6f4c413c-ebba-4214-9047-47cd243dab5b"},{"name":"✅ Documents","id":"3d6a936e-f20d-49dd-bd09-20e4e148a0d6","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/documents","description":"<p>Document(s) associé(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","documents"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"3d6a936e-f20d-49dd-bd09-20e4e148a0d6"}],"id":"a01a30cc-6c04-420b-83b6-9c3802bb92ce","_postman_id":"a01a30cc-6c04-420b-83b6-9c3802bb92ce","description":""}],"id":"8f13dec5-8a3f-4e93-8e0c-072a920315bd","description":"<p>Les événements</p>\n","event":[{"listen":"prerequest","script":{"id":"768578b7-1e5d-45b7-ab56-2a8b856f2061","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"a419bb76-510b-4b2b-bc5d-608de7e9b0d3","type":"text/javascript","exec":[""]}}],"_postman_id":"8f13dec5-8a3f-4e93-8e0c-072a920315bd"},{"name":"Entreprises","item":[{"name":"Endpoints principaux","item":[{"name":"✅ Index","id":"84beb736-6ce8-4c42-8f3c-720be7d47882","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events","description":"<p>Liste des événements</p>\n","urlObject":{"path":["v2",":instance","events"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"}]}},"response":[{"id":"fef39b98-e4f6-4408-9b8f-69a7a7d4a700","name":"✅ Index","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.publidata.io/v2/:instance/events","host":["https://api.publidata.io"],"path":["v2",":instance","events"],"variable":[{"key":"instance","value":"500-ans-renaissances"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Tue, 06 Nov 2018 14:35:32 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"e272b80759b3239cb223ac313ead9d8a\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"ef157796-c377-4ab4-b340-25fe123f51d3"},{"key":"X-Runtime","value":"0.211831"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"J7dASjXPxB\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"J7dASjXPxB\",\n                \"created_at\": \"2018-11-02T13:36:24Z\",\n                \"updated_at\": \"2018-11-06T14:11:43Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {\n                    \"fr\": \"La 28e édition du Festival International des Jardins abordera un thème cher à la Renaissance.\"\n                },\n                \"name\": {\n                    \"fr\": \"Festival International des Jardins de Chaumont-sur-Loire\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"medium-insert-active\\\"><br></p>\"\n                },\n                \"start_at\": \"2019-04-25T10:00:00Z\",\n                \"end_at\": \"2019-11-03T19:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"y7KpS6Dgxv\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"y7KpS6Dgxv\",\n                \"created_at\": \"2018-10-31T11:26:32Z\",\n                \"updated_at\": \"2018-11-06T10:56:29Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {\n                    \"fr\": \"62eme Colloque International d'études humanistes du centre d'études supérieures de la Renaissance\"\n                },\n                \"name\": {\n                    \"fr\": \"Léonard de Vinci création et innovations \"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"is-active\\\">Le 62ème colloque international d’études humanistes du Centre d’études supérieures de la Renaissance de Tours sera consacré à Léonard de Vinci en 2019.&nbsp;</p><p class=\\\"is-active\\\">Cet événement rassemblera les plus grands spécialistes internationaux du sujet et proposera d’aborder toutes les facettes de l’oeuvre de Léonard sous le prisme de l’invention et de l’innovation : mécanique, médecine, architecture, biomimétisme, etc. Une partie de ce colloque se tiendra dans des lieux marqués par la figure de Léonard de Vinci : le Château du Clos Lucé à Amboise et le Château de Chambord.</p>\"\n                },\n                \"start_at\": \"2019-06-01T00:00:00Z\",\n                \"end_at\": \"2019-06-30T00:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"G7j3SNKzxg\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"G7j3SNKzxg\",\n                \"created_at\": \"2018-10-31T09:20:00Z\",\n                \"updated_at\": \"2018-11-06T10:56:29Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {},\n                \"name\": {\n                    \"fr\": \"Les Borgia à Chinon\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"\\\">La Forteresse royale de Chinon, proposera une reconstitution historique de la venue de César Borgia, fils du pape Alexandre VI pour rencontrer le roi de France à Chinon en 1498 . Reconstitution (cortège équestre). Démonstrations de Calcio Storico (sport florentin de la Renaissance, ancêtre du football actuel…). Dégustations de mets et recettes de la Renaissance florentine. Danses et musiques Renaissance.<br></p>\"\n                },\n                \"start_at\": \"2019-07-21T00:00:00Z\",\n                \"end_at\": \"2019-07-21T00:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"jVJbSWMWVR\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"jVJbSWMWVR\",\n                \"created_at\": \"2018-10-31T08:54:32Z\",\n                \"updated_at\": \"2018-11-06T10:56:28Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {},\n                \"name\": {\n                    \"fr\": \"La renaissance en Val de Loire, en France et en Europe - Festival du film français renaissance\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p>Pour la 21ème édition des Rendez- vous de l’Histoire, le Centre d’Études Supérieures de la Renaissance sera fortement impliqué dans une programmation spécifique « La Renaissance en Val de Loire, en France et en Europe ». Dans le cadre du festival du film français « Renaissance », seront projetés des films historiques accompagnés de moments de réflexion (débats, conférences et ateliers) mettant en perspective la création cinématographique au regard de l’histoire de la peinture historiciste.<br></p>\"\n                },\n                \"start_at\": \"2019-10-01T00:00:00Z\",\n                \"end_at\": \"2019-10-31T00:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"J7dASjXwxB\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"J7dASjXwxB\",\n                \"created_at\": \"2018-10-31T08:42:55Z\",\n                \"updated_at\": \"2018-11-06T10:56:28Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {\n                    \"fr\": \"Parcours numérique, sonore et interactif\"\n                },\n                \"name\": {\n                    \"fr\": \"Renaissance comme Rabelais\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<h3>Parcours numérique, sonore et interactif combinant des moyens techniques innovants capables d’allier  géographie littéraire et géographie réelle. Création d’un parcours sonore géolocalisé à partir d’une application mobile entre La Devinière, maison natale de Rabelais, et l’Abbaye de Seuilly.<br></h3>\"\n                },\n                \"start_at\": \"2019-07-01T00:00:00Z\",\n                \"end_at\": \"2019-10-31T00:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"DVAWS3NQxX\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"DVAWS3NQxX\",\n                \"created_at\": \"2018-10-31T08:34:25Z\",\n                \"updated_at\": \"2018-11-06T10:56:28Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {},\n                \"name\": {\n                    \"fr\": \"Spectacle numérique itinérant Renaissance(S)\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p>Ce spectacle numérique invite le public à s’immerger par le biais des dernières technologies dans un environnement visuel et sonore en plusieurs dimensions. Diverses technologies, de réalité augmentée ou de réalité virtuelle peuvent être détournées par le biais d’une immersion sensori-motrice grâce à une ou plusieurs interfaces visuelles. Ce spectacle proposera une narration dans l’esprit humaniste et novateur de la Renaissance.</p><p>Il évoquera les dimensions créatives, anticipatrices, pluridisciplinaires de Léonard de Vinci, les acteurs, oeuvres, sites patrimoniaux et culturels majeurs du territoire à la Renaissance, le Centre-Val de Loire aujourd’hui et sa projection dans le futur.</p>\"\n                },\n                \"start_at\": \"2019-08-15T19:00:00Z\",\n                \"end_at\": \"2019-09-15T23:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"8VvZS1y0Vv\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"8VvZS1y0Vv\",\n                \"created_at\": \"2018-10-31T08:29:42Z\",\n                \"updated_at\": \"2018-11-06T10:56:28Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {},\n                \"name\": {\n                    \"fr\": \"Magnificences à la cour de France\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"is-active\\\">Ce spectacle de l’ensemble Doulce Mémoire, recrée l’univers d’une fête à la cour de François I<sup>er</sup>, autour de 1515, celles qui virent l’arrivée en France de Léonard de Vinci à l’invitation du roi français. Peintre, inventeur de génie, Léonard était aussi organisateur de fêtes fameuses, dont l’inventivité et la puissance créatrice étaient appréciées les puissants.<br></p>\"\n                },\n                \"start_at\": \"2019-07-23T19:00:00Z\",\n                \"end_at\": \"2019-07-23T23:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"NLwlSvmaVD\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"NLwlSvmaVD\",\n                \"created_at\": \"2018-10-30T16:51:07Z\",\n                \"updated_at\": \"2018-11-06T10:56:27Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {\n                    \"fr\": \"Exposition regroupant des artistes contemporains influencés par Léonard de Vinci et la Renaissance.\"\n                },\n                \"name\": {\n                    \"fr\": \"Hommage contemporain à la Renaissance\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"is-active\\\">Exposition d’artistes contemporains ayant été influencés par Léonard de Vinci et la Renaissance, sur l’exemple de Fabien Merelle, établi à Tours et travaillant sur la scène internationale.&nbsp;</p><p class=\\\"is-active\\\">L’exposition « Hommage à Léonard » transpose dans l’art contemporain l’héritage du maître du Cinquecento mort en Val de Loire il y a 500 ans. Vaste cabinet de curiosités, l’exposition présentée dans les salles historiques du château fait écho au système de pensée&nbsp;<span style=\\\"font-size: 1em; font-family: ProximaNova, Helvetica, Arial, &quot;Sans Serif&quot;;\\\">du Maitre, génie polyvalent où la réalisation ne constitue pas la fin mais le moyen de la réflexion. Conçue comme une sorte de « mise en curiosité » envers les différents apports de Léonard, homme d’esprit universel à l’histoire des arts en Europe, interprétés ou prolongés par différents artistes de notre temps travaillant sur la scène internationale ; l’exposition montre aussi que les échanges entre Italie et France vers 1500, l’italianisme dans les&nbsp;</span><span style=\\\"font-size: 1em; font-family: ProximaNova, Helvetica, Arial, &quot;Sans Serif&quot;;\\\">arts amorcé sous Charles VIII et Louis XII se perpétuent de nos jours, avec les travaux des artistes florentines Antonella Bussanich, Alessandra Capodacqua et Alessandra Ragionier. Comme dans les chapitres d’un livre, chaque salle illustre l’un des thèmes étudiés par Léonard. L’autoportrait / Le portrait / La peinture d’histoire /&nbsp;</span><span style=\\\"font-size: 1em; font-family: ProximaNova, Helvetica, Arial, &quot;Sans Serif&quot;;\\\">Le Paysage / Le codex / La nature morte / Le Portrait féminin / Le Drapé.</span></p>\"\n                },\n                \"start_at\": \"2019-04-01T10:00:00Z\",\n                \"end_at\": \"2019-11-30T18:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"8VOeS416xY\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"8VOeS416xY\",\n                \"created_at\": \"2018-10-29T16:47:42Z\",\n                \"updated_at\": \"2018-11-06T10:56:30Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {\n                    \"fr\": \"Dans le cadre de l'anniversaire des 500ans de la Renaissance, l'artiste Ravo revisite l'oeuvre de François-Guillaume Ménageot \\\"La mort de Léonard de Vinci\\\"\"\n                },\n                \"name\": {\n                    \"fr\": \"Ravo Mattoni invité du Château Royal d' Amboise\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"\\\">Andrea Mattoni alias <b>RAVO</b>, artiste-graffeur italien de son état, a débuté en 2016 un ambitieux projet visant à reproduire, in situ et en très grand format, des chefs-d’œuvre de la peinture classique signés du Caravage, de Delacroix, de Delatour… Profondeur des couleurs, puissance des lignes et de l’échelle, l’hommage de RAVO aux grands maîtres est d’une modernité réjouissante… Le résultat est bluffant.</p><p class=\\\"\\\">De manière à prolonger l’exposition « La Mort de Léonard de Vinci : la construction d’un mythe » préparée avec la BNF, le château royal d’Amboise a demandé à RAVO de réaliser 5 toiles de grandes dimensions (4.5m X 3m). Celles-ci prendront pour sujet des détails du monumental tableau de François-Guillaume Ménageot « La Mort de Léonard de Vinci », et trouveront place sur les murs de la tour cavalière des Minimes, du 2 mai au 2 septembre 2019. Pour honorer cette commande, l’artiste sera en résidence au château royal d’Amboise durant une dizaine de jours, en avril 2019. Il réalisera ses peintures en public.</p><p class=\\\"\\\">Cette exposition est organisée avec le concours de l’association des Ateliers de l’Etoile.</p><p class=\\\"\\\"><span style=\\\"font-size: 1em; font-family: ProximaNova, Helvetica, Arial, &quot;Sans Serif&quot;;\\\"><b>\\\"Exposition « La Mort de Léonard de Vinci : la construction d’un mythe » - Partenariat BNF (Bibliothèque Nationale de France)</b></span><br></p><p class=\\\"\\\">Tous les jours, du 2 mai au 2 septembre 2019.</p><p class=\\\"\\\">La grande exposition intitulée « La Mort de Léonard de Vinci : la construction d’un mythe », articulée autour du monumental tableau (280 cm X 357 cm) de François-Guillaume Ménageot La mort de Léonard de Vinci, et d’une collection de gravures issues des collections nationales, nous éclairera sur la manière dont les contours de l’amitié entre le roi François Ier et Léonard ont été progressivement réécrits par l’Histoire, et assimilés par elle jusqu’à la construction d’un mythe mis au service de l’image de la monarchie française au XVIII<sup>ème</sup> siècle.</p><p>Au cœur de la riche programmation des célébrations du 5ème centenaire, cette exposition majeure viendra aussi rappeler à un public venu des quatre coins du monde la place éternelle qu’occupe Léonard de Vinci en Val de Loire, et à Amboise en particulier où il repose pour l’éternité dans la quiétude de la chapelle du château.\\\"</p>\"\n                },\n                \"start_at\": \"2019-05-02T09:00:00Z\",\n                \"end_at\": \"2019-09-02T18:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"items\": 9,\n        \"count\": 9,\n        \"page\": 1\n    },\n    \"links\": {\n        \"self\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events?page=1\",\n        \"pagination\": {\n            \"first\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events?page=1\",\n            \"last\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events?page=1\"\n        }\n    }\n}"}],"_postman_id":"84beb736-6ce8-4c42-8f3c-720be7d47882"},{"name":"✅ Show","id":"a9eefe2e-0030-444c-ad4f-f19286d407ec","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/{{instance_id}}/events/:id","description":"<p>Détail d'un événement</p>\n","urlObject":{"path":["v2","{{instance_id}}","events",":id"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[{"id":"81540a4f-9838-41da-82d1-5a7d75dae783","name":"✅ Show","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.publidata.io/v2/{{instance_id}}/events/:id","host":["https://api.publidata.io"],"path":["v2","{{instance_id}}","events",":id"],"variable":[{"key":"id","value":"y7KpS6Dgxv"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Tue, 06 Nov 2018 14:50:05 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"811c246d37cc926cc75bf582cd364fb3\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"d619c237-6f78-4100-9d77-b11aa3b6dc53"},{"key":"X-Runtime","value":"0.051868"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"y7KpS6Dgxv\",\n        \"type\": \"event\",\n        \"attributes\": {\n            \"id\": \"y7KpS6Dgxv\",\n            \"created_at\": \"2018-10-31T11:26:32Z\",\n            \"updated_at\": \"2018-11-06T10:56:29Z\",\n            \"cancelled\": false,\n            \"cancellation_reason\": null,\n            \"free_admission\": null,\n            \"free_admission_condition\": null,\n            \"punchline\": {\n                \"fr\": \"62eme Colloque International d'études humanistes du centre d'études supérieures de la Renaissance\"\n            },\n            \"name\": {\n                \"fr\": \"Léonard de Vinci création et innovations \"\n            },\n            \"blurb\": {\n                \"fr\": \"<p class=\\\"is-active\\\">Le 62ème colloque international d’études humanistes du Centre d’études supérieures de la Renaissance de Tours sera consacré à Léonard de Vinci en 2019.&nbsp;</p><p class=\\\"is-active\\\">Cet événement rassemblera les plus grands spécialistes internationaux du sujet et proposera d’aborder toutes les facettes de l’oeuvre de Léonard sous le prisme de l’invention et de l’innovation : mécanique, médecine, architecture, biomimétisme, etc. Une partie de ce colloque se tiendra dans des lieux marqués par la figure de Léonard de Vinci : le Château du Clos Lucé à Amboise et le Château de Chambord.</p>\"\n            },\n            \"start_at\": \"2019-06-01T00:00:00Z\",\n            \"end_at\": \"2019-06-30T00:00:00Z\"\n        },\n        \"relationships\": {},\n        \"links\": {\n            \"self\": {\n                \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv\"\n            },\n            \"relations\": {\n                \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/cities\",\n                \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/companies\",\n                \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/departments\",\n                \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/elects\",\n                \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/etablissement_publics\",\n                \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/event_groups\",\n                \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/events\",\n                \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/facilities\",\n                \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/news\",\n                \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/non_profits\",\n                \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/performers\",\n                \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/projects\",\n                \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/regions\",\n                \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/skills\"\n            },\n            \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/images\",\n            \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/documents\",\n            \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates\",\n            \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/type\",\n            \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/types\"\n        },\n        \"meta\": {\n            \"licenses\": [\n                {\n                    \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                    \"SPDX\": \"ODbL-1.0\",\n                    \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                    \"targets\": [\n                        \"cancelled\",\n                        \"cancellation_reason\",\n                        \"free_admission\",\n                        \"free_admission_condition\",\n                        \"punchline\",\n                        \"name\",\n                        \"blurb\",\n                        \"start_at\",\n                        \"end_at\"\n                    ]\n                }\n            ],\n            \"instances\": {\n                \"500-ans-renaissances\": [\n                    \"fr\"\n                ]\n            }\n        }\n    }\n}"}],"_postman_id":"a9eefe2e-0030-444c-ad4f-f19286d407ec"},{"name":"✅ Show with included resources","id":"bab8b088-4ec2-4258-9537-5c8b7a8422f3","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id?include=dates,types","description":"<p>Avec le paramètre <code>include</code> vous avez la possibilité d'insérer dans la vue principale des ressources liées, vous évitant des requêtes supplémentaires.</p>\n","urlObject":{"path":["v2",":instance","events",":id"],"host":["https://api.publidata.io"],"query":[{"description":{"content":"<p>Liste des ressources à insérer</p>\n","type":"text/plain"},"key":"include","value":"dates,types"}],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[{"id":"066e871d-5575-4a09-b102-b74bd5fc876c","name":"✅ Show with included resources","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.publidata.io/v2/:instance/events/:id?include=dates,types","host":["https://api.publidata.io"],"path":["v2",":instance","events",":id"],"query":[{"key":"include","value":"dates,types","description":"Liste des ressources à insérer"}],"variable":[{"key":"instance","value":"500-ans-renaissances"},{"key":"id","value":"y7KpS6Dgxv"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Tue, 06 Nov 2018 14:54:52 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"2c566edafdfca2fe7ed4fc7f8ef3e15b\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"b8d67f08-016a-4d6c-b10e-7d6467c5bcdf"},{"key":"X-Runtime","value":"0.483946"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"y7KpS6Dgxv\",\n        \"type\": \"event\",\n        \"attributes\": {\n            \"id\": \"y7KpS6Dgxv\",\n            \"created_at\": \"2018-10-31T11:26:32Z\",\n            \"updated_at\": \"2018-11-06T10:56:29Z\",\n            \"cancelled\": false,\n            \"cancellation_reason\": null,\n            \"free_admission\": null,\n            \"free_admission_condition\": null,\n            \"punchline\": {\n                \"fr\": \"62eme Colloque International d'études humanistes du centre d'études supérieures de la Renaissance\"\n            },\n            \"name\": {\n                \"fr\": \"Léonard de Vinci création et innovations \"\n            },\n            \"blurb\": {\n                \"fr\": \"<p class=\\\"is-active\\\">Le 62ème colloque international d’études humanistes du Centre d’études supérieures de la Renaissance de Tours sera consacré à Léonard de Vinci en 2019.&nbsp;</p><p class=\\\"is-active\\\">Cet événement rassemblera les plus grands spécialistes internationaux du sujet et proposera d’aborder toutes les facettes de l’oeuvre de Léonard sous le prisme de l’invention et de l’innovation : mécanique, médecine, architecture, biomimétisme, etc. Une partie de ce colloque se tiendra dans des lieux marqués par la figure de Léonard de Vinci : le Château du Clos Lucé à Amboise et le Château de Chambord.</p>\"\n            },\n            \"start_at\": \"2019-06-01T00:00:00Z\",\n            \"end_at\": \"2019-06-30T00:00:00Z\"\n        },\n        \"relationships\": {\n            \"types\": {\n                \"data\": []\n            },\n            \"dates\": {\n                \"data\": [\n                    {\n                        \"id\": \"axGeikm1VN\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"8VZZiNZ8Vd\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"eVgRimO4Lo\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"E79OiqZQLM\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"YVYgiW4lxD\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"87oei8vYLQ\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"gLb4iOga7J\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"o7EMiQDr75\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"B72ZiYOv7O\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"y7KAiEO4Lv\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"d7DzidZMLB\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"DLkqijMy7a\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"G7jaiXOoVg\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"jVJvi2nyVR\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"J7d3igMRVB\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"2VX9iOjl7N\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"DVA6ivYn7X\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"8VvJieDWVv\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"D744i3N078\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"NLwjibKKxD\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"Q7BaiA1AVb\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"Kx09iEraLX\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"y7KAiEOMLv\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"d7DzidZmLB\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"DLkqijM67a\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"G7jaiXOAVg\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"jVJvi2nXVR\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"J7d3igMbVB\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"2VX9iOjd7N\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"DVA6ivYR7X\",\n                        \"type\": \"date\"\n                    }\n                ]\n            }\n        },\n        \"links\": {\n            \"self\": {\n                \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv\"\n            },\n            \"relations\": {\n                \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/cities\",\n                \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/companies\",\n                \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/departments\",\n                \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/elects\",\n                \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/etablissement_publics\",\n                \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/event_groups\",\n                \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/events\",\n                \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/facilities\",\n                \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/news\",\n                \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/non_profits\",\n                \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/performers\",\n                \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/projects\",\n                \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/regions\",\n                \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/skills\"\n            },\n            \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/images\",\n            \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/documents\",\n            \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates\",\n            \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/type\",\n            \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/types\"\n        },\n        \"meta\": {\n            \"included\": [\n                \"dates\",\n                \"types\"\n            ],\n            \"licenses\": [\n                {\n                    \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                    \"SPDX\": \"ODbL-1.0\",\n                    \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                    \"targets\": [\n                        \"cancelled\",\n                        \"cancellation_reason\",\n                        \"free_admission\",\n                        \"free_admission_condition\",\n                        \"punchline\",\n                        \"name\",\n                        \"blurb\",\n                        \"start_at\",\n                        \"end_at\"\n                    ]\n                }\n            ],\n            \"instances\": {\n                \"500-ans-renaissances\": [\n                    \"fr\"\n                ]\n            }\n        }\n    },\n    \"included\": [\n        {\n            \"id\": \"axGeikm1VN\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"axGeikm1VN\",\n                \"created_at\": \"2018-10-31T11:33:15Z\",\n                \"updated_at\": \"2018-10-31T11:33:15Z\",\n                \"start_at\": \"2019-06-30T00:00:00Z\",\n                \"end_at\": \"2019-06-30T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 30 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"8VZZiNZ8Vd\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"8VZZiNZ8Vd\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-29T00:00:00Z\",\n                \"end_at\": \"2019-06-29T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 29 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"eVgRimO4Lo\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"eVgRimO4Lo\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-28T00:00:00Z\",\n                \"end_at\": \"2019-06-28T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 28 Fr 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"E79OiqZQLM\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"E79OiqZQLM\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-27T00:00:00Z\",\n                \"end_at\": \"2019-06-27T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 27 Th 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"YVYgiW4lxD\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"YVYgiW4lxD\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-26T00:00:00Z\",\n                \"end_at\": \"2019-06-26T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 26 We 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"87oei8vYLQ\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"87oei8vYLQ\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-25T00:00:00Z\",\n                \"end_at\": \"2019-06-25T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 25 Tu 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"gLb4iOga7J\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"gLb4iOga7J\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-24T00:00:00Z\",\n                \"end_at\": \"2019-06-24T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 24 Mo 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"o7EMiQDr75\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"o7EMiQDr75\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-23T00:00:00Z\",\n                \"end_at\": \"2019-06-23T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 23 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"B72ZiYOv7O\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"B72ZiYOv7O\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-22T00:00:00Z\",\n                \"end_at\": \"2019-06-22T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 22 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"y7KAiEO4Lv\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"y7KAiEO4Lv\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-21T00:00:00Z\",\n                \"end_at\": \"2019-06-21T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 21 Fr 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"d7DzidZMLB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"d7DzidZMLB\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-20T00:00:00Z\",\n                \"end_at\": \"2019-06-20T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 20 Th 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DLkqijMy7a\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DLkqijMy7a\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-19T00:00:00Z\",\n                \"end_at\": \"2019-06-19T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 19 We 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"G7jaiXOoVg\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"G7jaiXOoVg\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-18T00:00:00Z\",\n                \"end_at\": \"2019-06-18T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 18 Tu 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"jVJvi2nyVR\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"jVJvi2nyVR\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-17T00:00:00Z\",\n                \"end_at\": \"2019-06-17T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 17 Mo 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"J7d3igMRVB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"J7d3igMRVB\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-16T00:00:00Z\",\n                \"end_at\": \"2019-06-16T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 16 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"2VX9iOjl7N\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"2VX9iOjl7N\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-15T00:00:00Z\",\n                \"end_at\": \"2019-06-15T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 15 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DVA6ivYn7X\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DVA6ivYn7X\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-14T00:00:00Z\",\n                \"end_at\": \"2019-06-14T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 14 Fr 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"8VvJieDWVv\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"8VvJieDWVv\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-13T00:00:00Z\",\n                \"end_at\": \"2019-06-13T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 13 Th 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"D744i3N078\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"D744i3N078\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-12T00:00:00Z\",\n                \"end_at\": \"2019-06-12T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 12 We 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"NLwjibKKxD\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"NLwjibKKxD\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-11T00:00:00Z\",\n                \"end_at\": \"2019-06-11T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 11 Tu 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"Q7BaiA1AVb\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"Q7BaiA1AVb\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-10T00:00:00Z\",\n                \"end_at\": \"2019-06-10T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 10 Mo 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"Kx09iEraLX\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"Kx09iEraLX\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-09T00:00:00Z\",\n                \"end_at\": \"2019-06-09T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 09 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"y7KAiEOMLv\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"y7KAiEOMLv\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-08T00:00:00Z\",\n                \"end_at\": \"2019-06-08T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 08 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"d7DzidZmLB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"d7DzidZmLB\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-07T00:00:00Z\",\n                \"end_at\": \"2019-06-07T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 07 Fr 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DLkqijM67a\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DLkqijM67a\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-06T00:00:00Z\",\n                \"end_at\": \"2019-06-06T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 06 Th 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"G7jaiXOAVg\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"G7jaiXOAVg\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-05T00:00:00Z\",\n                \"end_at\": \"2019-06-05T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 05 We 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"jVJvi2nXVR\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"jVJvi2nXVR\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-04T00:00:00Z\",\n                \"end_at\": \"2019-06-04T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 04 Tu 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"J7d3igMbVB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"J7d3igMbVB\",\n                \"created_at\": \"2018-10-31T11:33:11Z\",\n                \"updated_at\": \"2018-10-31T11:33:11Z\",\n                \"start_at\": \"2019-06-03T00:00:00Z\",\n                \"end_at\": \"2019-06-03T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 03 Mo 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"2VX9iOjd7N\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"2VX9iOjd7N\",\n                \"created_at\": \"2018-10-31T11:33:11Z\",\n                \"updated_at\": \"2018-10-31T11:33:11Z\",\n                \"start_at\": \"2019-06-02T00:00:00Z\",\n                \"end_at\": \"2019-06-02T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 02 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DVA6ivYR7X\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DVA6ivYR7X\",\n                \"created_at\": \"2018-10-31T11:33:11Z\",\n                \"updated_at\": \"2018-10-31T11:33:11Z\",\n                \"start_at\": \"2019-06-01T00:00:00Z\",\n                \"end_at\": \"2019-06-01T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 01 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"wo7NbcKj7n\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"wo7NbcKj7n\",\n                \"created_at\": \"2018-10-23T01:23:57Z\",\n                \"updated_at\": \"2018-10-23T01:24:19Z\",\n                \"name\": {\n                    \"fr\": \"Rassemblement\"\n                }\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": \"https://publidata-staging.herokuapp.com/api/v2/event_types/wo7NbcKj7n\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"Wn7lQcrKxm\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"Wn7lQcrKxm\",\n                \"created_at\": \"2018-10-23T01:23:57Z\",\n                \"updated_at\": \"2018-10-23T01:24:19Z\",\n                \"name\": {\n                    \"fr\": \"Colloque\"\n                }\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": \"https://publidata-staging.herokuapp.com/api/v2/event_types/Wn7lQcrKxm\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        }\n    ]\n}"}],"_postman_id":"bab8b088-4ec2-4258-9537-5c8b7a8422f3"},{"name":"🚧 Show translated","id":"b4670429-ec12-42d8-ab91-88d8d4116ca4","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id?lang=en","description":"<p>Le paramètre <code>lang</code> vous permet de récupérer les contenus éditoriaux d'une ressource dans une langue donnée.</p>\n","urlObject":{"path":["v2",":instance","events",":id"],"host":["https://api.publidata.io"],"query":[{"description":{"content":"<p>Langue désirée</p>\n","type":"text/plain"},"key":"lang","value":"en"}],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"b4670429-ec12-42d8-ab91-88d8d4116ca4"},{"name":"🚧 Search","id":"2411a7e2-bdb1-4904-857f-f3e30ff41153","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.publidata.io/v2/:instance/events/?q=Sénart&size=10&page=1&marker=false&instances[]=2&types[]=Event&performers[]=Nakht&facilities[]=8&events[]=1&event_groups[]=1&news[]=1&projects[]=1&cities[]=7&etablissement_publics[]=1&departments[]=1&regions[]=1&skills[]=1&elects[]=1&bbox[]&event_types[]=Oeuvre d'art&event_styles[]=Gymnastique&date[start]=1526054400&date[end]=1526083199&price[min]=10&price[max]=50&free_admission=true&accessibilities[]=has_deaf_accessibility","description":"<p>Recherche d'événements : 🚧 à venir... </p>\n","urlObject":{"path":["v2",":instance","events",""],"host":["https://api.publidata.io"],"query":[{"description":{"content":"<p>Filtre textuel</p>\n","type":"text/plain"},"key":"q","value":"Sénart"},{"description":{"content":"<p>Nombre de résultats retournés (defaut: 10)</p>\n","type":"text/plain"},"key":"size","value":"10"},{"description":{"content":"<p>Pagination (defaut: 1)</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>Filtre booléen pour ne retourner que les locations (default: false)</p>\n","type":"text/plain"},"key":"marker","value":"false"},{"description":{"content":"<p>Filtre par instance (array d'id)</p>\n","type":"text/plain"},"key":"instances[]","value":"2"},{"description":{"content":"<p>Filtre par type de ressource (array de type parmi la liste suivante : News Event Facility Project City Epci Department Region EventGroup Skill Elect Performer Company NonProfit EtablissementPublic)</p>\n","type":"text/plain"},"key":"types[]","value":"Event"},{"description":{"content":"<p>Filtre par artiste lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"performers[]","value":"Nakht"},{"description":{"content":"<p>Filtre par équipement lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"facilities[]","value":"8"},{"description":{"content":"<p>Filtre par événement lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"events[]","value":"1"},{"description":{"content":"<p>Filtre par groupe d'événements lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"event_groups[]","value":"1"},{"description":{"content":"<p>Filtre par actualité liée (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"news[]","value":"1"},{"description":{"content":"<p>Filtre par projet lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"projects[]","value":"1"},{"description":{"content":"<p>Filtre par ville et location liées (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"cities[]","value":"7"},{"description":{"content":"<p>Filtre par établissement public lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"etablissement_publics[]","value":"1"},{"description":{"content":"<p>Filtre par departement lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"departments[]","value":"1"},{"description":{"content":"<p>Filtre par region liée (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"regions[]","value":"1"},{"description":{"content":"<p>Filtre par compétence liée (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"skills[]","value":"1"},{"description":{"content":"<p>Filtre par élu lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"elects[]","value":"1"},{"description":{"content":"<p>Filtre géographique (array de latitudes, longitudes dans l'ordre suivant minX, minY, maxX, maxY)</p>\n","type":"text/plain"},"key":"bbox[]","value":null},{"description":{"content":"<p>Filtre par type d'événement (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"event_types[]","value":"Oeuvre d'art"},{"description":{"content":"<p>Filtre par style d'événement (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"event_styles[]","value":"Gymnastique"},{"description":{"content":"<p>Filtre par date/heure de début (timestamp en seconde)</p>\n","type":"text/plain"},"key":"date[start]","value":"1526054400"},{"description":{"content":"<p>Filtre par date/heure de fin (timestamp en seconde)</p>\n","type":"text/plain"},"key":"date[end]","value":"1526083199"},{"description":{"content":"<p>Filtre de prix minimum</p>\n","type":"text/plain"},"key":"price[min]","value":"10"},{"description":{"content":"<p>Filtre de prix maximum</p>\n","type":"text/plain"},"key":"price[max]","value":"50"},{"description":{"content":"<p>Filtre de gratuité (boolean)</p>\n","type":"text/plain"},"key":"free_admission","value":"true"},{"description":{"content":"<p>Filtre d'accessibilité (array de string)</p>\n","type":"text/plain"},"key":"accessibilities[]","value":"has_deaf_accessibility"}],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"}]}},"response":[{"id":"bdc995fd-0943-4159-811c-b1ba09dc84bd","name":"Search events","originalRequest":{"method":"GET","header":[],"url":{"raw":"www.publidata.io/api/v1/events?q=&options[geo][top_left][lat]=49.05965195372349&options[geo][top_left][lon]=2.1371613664061897&options[geo][bottom_right][lat]=48.21570798955211&options[geo][bottom_right][lon]=2.7688752335936897&options[city]=Combs-la-Ville&options[paging][from]=0&options[event_types][]=Concert&options[dates][start_date]=1521812100000&options[dates][end_date]=1522499700000&options[instances][]=2","host":["www","publidata","io"],"path":["api","v1","events"],"query":[{"key":"q","value":"","description":"Recherche (full-text)"},{"key":"options[geo][top_left][lat]","value":"49.05965195372349","description":"Latitude coin supérieur gauche geo-box (lat)"},{"key":"options[geo][top_left][lon]","value":"2.1371613664061897","description":"Longitude coin supérieur gauche geo-box (lon)"},{"key":"options[geo][bottom_right][lat]","value":"48.21570798955211","description":"Latitude coin inférieur droit geo-box (lat)"},{"key":"options[geo][bottom_right][lon]","value":"2.7688752335936897","description":"Longitude coin inférieur droit geo-box (lon)"},{"key":"options[city]","value":"Combs-la-Ville","description":"Ville (full-text ou code postal)"},{"key":"options[paging][from]","value":"0","description":"Début de la pagination (integer)"},{"key":"options[event_types][]","value":"Concert","description":"Types d'événement (array de string)"},{"key":"options[dates][start_date]","value":"1521812100000","description":"Date de début (format timestamp unix 1508267068688)"},{"key":"options[dates][end_date]","value":"1522499700000","description":"Date de fin (format timestamp unix 1539803068688)"},{"key":"options[instances][]","value":"2"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"took\": 11,\n    \"timed_out\": false,\n    \"_shards\": {\n        \"total\": 1,\n        \"successful\": 1,\n        \"failed\": 0\n    },\n    \"hits\": {\n        \"total\": 2,\n        \"max_score\": 0.9812665,\n        \"hits\": [\n            {\n                \"_index\": \"events\",\n                \"_type\": \"event\",\n                \"_id\": \"3241\",\n                \"_score\": 0.9812665,\n                \"_source\": {\n                    \"id\": 3241,\n                    \"name\": \"Concert des orchestres\",\n                    \"slug\": \"concert-des-orchestres\",\n                    \"status\": \"published\",\n                    \"free_admission\": true,\n                    \"start_date\": \"2018-03-23T00:00:00.000+01:00\",\n                    \"end_date\": \"2018-03-23T00:00:00.000+01:00\",\n                    \"punchline\": \"Le vendredi 23 mars 2018 à 20h au Théâtre de la Coupole, les musiciens du Conservatoire Maurice Ohana de Combs-la-ville vous attendent pour leur rendez-vous annuel...\",\n                    \"blurb\": \"Cette soirée donne la possibilité à plusieurs formations orchestrales du conservatoire Maurice Ohana de se produire sur scène. \\r\\n\\r\\nProgramme musical éclectique et varié, ce concert  permet de vivre la musique ensemble et de la partager sans modération avec le public.\",\n                    \"linked_objects\": [\n                        {\n                            \"id\": 180,\n                            \"type\": \"Facility\",\n                            \"name\": \"La Coupole\"\n                        },\n                        {\n                            \"id\": 12,\n                            \"type\": \"City\",\n                            \"name\": \"Combs-la-Ville\"\n                        }\n                    ],\n                    \"cover_picture\": {\n                        \"id\": 22632,\n                        \"name\": \"image de couverture de Concert des orchestres\",\n                        \"alt\": \"image de couverture de Concert des orchestres\",\n                        \"description\": \"image de couverture de Concert des orchestres\",\n                        \"slug\": null,\n                        \"image_urls_as_json\": {\n                            \"image_original_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/632/original/open-uri20171002-4-1etqlbo?1506962457\",\n                            \"image_small_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/632/image_small/open-uri20171002-4-1etqlbo?1506962457\",\n                            \"image_medium_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/632/image_medium/open-uri20171002-4-1etqlbo?1506962457\",\n                            \"image_large_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/632/image_large/open-uri20171002-4-1etqlbo?1506962457\"\n                        }\n                    },\n                    \"instances\": [\n                        {\n                            \"id\": 2,\n                            \"slug\": \"portail-sortir-gps\"\n                        }\n                    ],\n                    \"event_type\": {\n                        \"id\": 13,\n                        \"name\": \"Concert\"\n                    },\n                    \"event_styles\": [\n                        {\n                            \"id\": 82,\n                            \"name\": \"World Music\"\n                        }\n                    ],\n                    \"event_dates\": [\n                        {\n                            \"id\": 37799,\n                            \"start_hour\": \"2000-01-01T20:00:00.000Z\",\n                            \"end_hour\": \"2000-01-01T22:00:00.000Z\",\n                            \"date\": \"2018-03-23T00:00:00.000+01:00\",\n                            \"sold_out\": false,\n                            \"start_date\": \"2018-03-23T20:00:00.000+00:00\",\n                            \"end_date\": \"2018-03-23T22:00:00.000+00:00\"\n                        }\n                    ],\n                    \"facilities\": [\n                        {\n                            \"id\": 180,\n                            \"name\": \"La Coupole\",\n                            \"slug\": \"la-coupole\",\n                            \"address\": \"Rue Jean François Millet, 77380 Combs-la-Ville, France\",\n                            \"location\": {\n                                \"lat\": 48.659695,\n                                \"lon\": 2.5662415\n                            }\n                        }\n                    ],\n                    \"locations\": [],\n                    \"fees\": [],\n                    \"tags\": [],\n                    \"pages\": [\n                        {\n                            \"id\": 7659,\n                            \"instance\": {\n                                \"id\": 2,\n                                \"slug\": \"portail-sortir-gps\"\n                            }\n                        }\n                    ]\n                }\n            },\n            {\n                \"_index\": \"events\",\n                \"_type\": \"event\",\n                \"_id\": \"3983\",\n                \"_score\": 0.9794048,\n                \"_source\": {\n                    \"id\": 3983,\n                    \"name\": \"Après-midi musicale: Claude Debussy\",\n                    \"slug\": \"apres-midi-musicale-claude-debussy\",\n                    \"status\": \"published\",\n                    \"free_admission\": true,\n                    \"start_date\": \"2018-03-24T00:00:00.000+01:00\",\n                    \"end_date\": \"2018-03-24T00:00:00.000+01:00\",\n                    \"punchline\": \"A l'occasion du centenaire de la mort de Claude Debussy, la media-ludothèque et le conservatoire Maurice Ohana vous invitent à une après-midi musical, le samedi 24 mars à partir de 15h30.\",\n                    \"blurb\": \"Claude Debussy (1862-1918) était un compositeur français. Pour célébrer son centenaire, nous vous invitons à un après-midi musical. Au programme, une conférence par Bruno Giner sur le compositeur à 15h30. \\r\\nPuis, à 18h, les élèves du conservatoire interpréteront une sélection d’œuvres de Claude Debussy.\",\n                    \"linked_objects\": [\n                        {\n                            \"id\": 42,\n                            \"type\": \"Facility\",\n                            \"name\": \"Médiathèque de Combs-la-Ville\"\n                        },\n                        {\n                            \"id\": 12,\n                            \"type\": \"City\",\n                            \"name\": \"Combs-la-Ville\"\n                        }\n                    ],\n                    \"cover_picture\": {\n                        \"id\": 24665,\n                        \"name\": \"image de couverture de Après-midi musicale: Claude Debussy\",\n                        \"alt\": \"image de couverture de Après-midi musicale: Claude Debussy\",\n                        \"description\": \"image de couverture de Après-midi musicale: Claude Debussy\",\n                        \"slug\": null,\n                        \"image_urls_as_json\": {\n                            \"image_original_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/665/original/Photo_23a_Claude_Debussy.jpg?1516441408\",\n                            \"image_small_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/665/image_small/Photo_23a_Claude_Debussy.jpg?1516441408\",\n                            \"image_medium_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/665/image_medium/Photo_23a_Claude_Debussy.jpg?1516441408\",\n                            \"image_large_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/665/image_large/Photo_23a_Claude_Debussy.jpg?1516441408\"\n                        }\n                    },\n                    \"instances\": [\n                        {\n                            \"id\": 2,\n                            \"slug\": \"portail-sortir-gps\"\n                        }\n                    ],\n                    \"event_type\": {\n                        \"id\": 13,\n                        \"name\": \"Concert\"\n                    },\n                    \"event_styles\": [\n                        {\n                            \"id\": 111,\n                            \"name\": \"Musique Classique\"\n                        }\n                    ],\n                    \"event_dates\": [\n                        {\n                            \"id\": 41100,\n                            \"start_hour\": \"2000-01-01T15:30:00.000Z\",\n                            \"end_hour\": \"2000-01-01T19:30:00.000Z\",\n                            \"date\": \"2018-03-24T00:00:00.000+01:00\",\n                            \"sold_out\": false,\n                            \"start_date\": \"2018-03-24T15:30:00.000+00:00\",\n                            \"end_date\": \"2018-03-24T19:30:00.000+00:00\"\n                        }\n                    ],\n                    \"facilities\": [\n                        {\n                            \"id\": 42,\n                            \"name\": \"Médiathèque de Combs-la-Ville\",\n                            \"slug\": \"mediatheque-de-combs-la-ville\",\n                            \"address\": \"Rue Jean François Millet, 77380 Combs-la-Ville, France\",\n                            \"location\": {\n                                \"lat\": 48.659695,\n                                \"lon\": 2.5662415\n                            }\n                        }\n                    ],\n                    \"locations\": [],\n                    \"fees\": [],\n                    \"accessibility\": {\n                        \"id\": 1766,\n                        \"deaf_lsf\": false,\n                        \"deaf_vision_based\": false,\n                        \"deaf_subtitle\": false,\n                        \"deaf_hearing_loop\": false,\n                        \"blind_audio_description\": false,\n                        \"blind_darkness_based\": false,\n                        \"blind_text_based\": false,\n                        \"blind_braille\": false,\n                        \"blind_large_print\": false,\n                        \"motor_disabled_access\": true,\n                        \"has_accessibility\": true,\n                        \"has_deaf_accessibility\": false,\n                        \"has_blind_accessibility\": false\n                    },\n                    \"tags\": [\n                        \"Culture\"\n                    ],\n                    \"pages\": [\n                        {\n                            \"id\": 8636,\n                            \"instance\": {\n                                \"id\": 2,\n                                \"slug\": \"portail-sortir-gps\"\n                            }\n                        }\n                    ]\n                }\n            }\n        ]\n    },\n    \"aggregations\": {\n        \"event_styles_terms_agg\": {\n            \"doc_count\": 2,\n            \"name\": {\n                \"doc_count_error_upper_bound\": 0,\n                \"sum_other_doc_count\": 0,\n                \"buckets\": [\n                    {\n                        \"key\": \"111\",\n                        \"doc_count\": 1,\n                        \"name\": {\n                            \"doc_count_error_upper_bound\": 0,\n                            \"sum_other_doc_count\": 0,\n                            \"buckets\": [\n                                {\n                                    \"key\": \"classique\",\n                                    \"doc_count\": 1\n                                },\n                                {\n                                    \"key\": \"musique\",\n                                    \"doc_count\": 1\n                                }\n                            ]\n                        }\n                    },\n                    {\n                        \"key\": \"82\",\n                        \"doc_count\": 1,\n                        \"name\": {\n                            \"doc_count_error_upper_bound\": 0,\n                            \"sum_other_doc_count\": 0,\n                            \"buckets\": [\n                                {\n                                    \"key\": \"music\",\n                                    \"doc_count\": 1\n                                },\n                                {\n                                    \"key\": \"world\",\n                                    \"doc_count\": 1\n                                }\n                            ]\n                        }\n                    }\n                ]\n            }\n        },\n        \"events\": {\n            \"doc_count\": 3838,\n            \"dates\": {\n                \"doc_count\": 11064,\n                \"this_month\": {\n                    \"doc_count\": 737,\n                    \"events\": {\n                        \"doc_count\": 278\n                    }\n                },\n                \"this_week_end\": {\n                    \"doc_count\": 81,\n                    \"events\": {\n                        \"doc_count\": 54\n                    }\n                },\n                \"past\": {\n                    \"doc_count\": 10070,\n                    \"events\": {\n                        \"doc_count\": 3132\n                    }\n                },\n                \"today\": {\n                    \"doc_count\": 34,\n                    \"events\": {\n                        \"doc_count\": 28\n                    }\n                },\n                \"tomorrow\": {\n                    \"doc_count\": 22,\n                    \"events\": {\n                        \"doc_count\": 19\n                    }\n                },\n                \"last_days\": {\n                    \"doc_count\": 133,\n                    \"events\": {\n                        \"doc_count\": 75\n                    }\n                },\n                \"upcoming\": {\n                    \"doc_count\": 1028,\n                    \"events\": {\n                        \"doc_count\": 390\n                    }\n                },\n                \"this_week\": {\n                    \"doc_count\": 197,\n                    \"events\": {\n                        \"doc_count\": 96\n                    }\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"2411a7e2-bdb1-4904-857f-f3e30ff41153"}],"id":"30bd4a85-204f-4494-aef4-c4448f3636c0","_postman_id":"30bd4a85-204f-4494-aef4-c4448f3636c0","description":""},{"name":"Ressources liées","item":[{"name":"✅ Types","id":"7dcc709c-00f0-4aa9-9d87-6d5c84dc80fc","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/types","description":"<p>Type(s) de la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","types"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[{"id":"d3e6c413-0798-4a64-8018-d944dfa7fc3a","name":"✅ Types","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.publidata.io/v2/:instance/events/:id/types","host":["https://api.publidata.io"],"path":["v2",":instance","events",":id","types"],"variable":[{"key":"instance","value":"500-ans-renaissances"},{"key":"id","value":"y7KpS6Dgxv"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Tue, 06 Nov 2018 14:56:10 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"aca7a58992ce54decfd0aa1309558bf9\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"d9a108a9-5d7c-486f-9b8f-620b97ceecb4"},{"key":"X-Runtime","value":"0.137086"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"wo7NbcKj7n\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"wo7NbcKj7n\",\n                \"created_at\": \"2018-10-23T01:23:57Z\",\n                \"updated_at\": \"2018-10-23T01:24:19Z\",\n                \"name\": {\n                    \"fr\": \"Rassemblement\"\n                }\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": \"https://publidata-staging.herokuapp.com/api/v2/event_types/wo7NbcKj7n\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"Wn7lQcrKxm\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"Wn7lQcrKxm\",\n                \"created_at\": \"2018-10-23T01:23:57Z\",\n                \"updated_at\": \"2018-10-23T01:24:19Z\",\n                \"name\": {\n                    \"fr\": \"Colloque\"\n                }\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": \"https://publidata-staging.herokuapp.com/api/v2/event_types/Wn7lQcrKxm\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        }\n    ],\n    \"meta\": {\n        \"items\": 2,\n        \"count\": 2,\n        \"page\": 1\n    },\n    \"links\": {\n        \"self\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/types?page=1\",\n        \"pagination\": {\n            \"first\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/types?page=1\",\n            \"last\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/types?page=1\"\n        }\n    }\n}"}],"_postman_id":"7dcc709c-00f0-4aa9-9d87-6d5c84dc80fc"},{"name":"🚧 Themes","id":"86d8c302-47a9-4dde-b963-2f68525c1a19","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/themes","description":"<p>Thème(s) associé(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","themes"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"86d8c302-47a9-4dde-b963-2f68525c1a19"},{"name":"✅ Dates","id":"0b3d322b-6a30-4c5d-9a24-8edadaaf817b","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/dates","description":"<p>Date(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","dates"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[{"id":"fa86000c-1173-43b9-9a18-2ea4b45cb3f9","name":"✅ Dates","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.publidata.io/v2/:instance/events/:id/dates","host":["https://api.publidata.io"],"path":["v2",":instance","events",":id","dates"],"variable":[{"key":"instance","value":"500-ans-renaissances"},{"key":"id","value":"y7KpS6Dgxv"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Tue, 06 Nov 2018 14:57:37 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"5019bf7102c4e9c481afd4dc20c410e1\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"5b74b321-cdd9-461b-a32e-4263c646d08b"},{"key":"X-Runtime","value":"0.316049"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"DVA6ivYR7X\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DVA6ivYR7X\",\n                \"created_at\": \"2018-10-31T11:33:11Z\",\n                \"updated_at\": \"2018-10-31T11:33:11Z\",\n                \"start_at\": \"2019-06-01T00:00:00Z\",\n                \"end_at\": \"2019-06-01T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 01 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"2VX9iOjd7N\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"2VX9iOjd7N\",\n                \"created_at\": \"2018-10-31T11:33:11Z\",\n                \"updated_at\": \"2018-10-31T11:33:11Z\",\n                \"start_at\": \"2019-06-02T00:00:00Z\",\n                \"end_at\": \"2019-06-02T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 02 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"J7d3igMbVB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"J7d3igMbVB\",\n                \"created_at\": \"2018-10-31T11:33:11Z\",\n                \"updated_at\": \"2018-10-31T11:33:11Z\",\n                \"start_at\": \"2019-06-03T00:00:00Z\",\n                \"end_at\": \"2019-06-03T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 03 Mo 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"jVJvi2nXVR\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"jVJvi2nXVR\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-04T00:00:00Z\",\n                \"end_at\": \"2019-06-04T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 04 Tu 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"G7jaiXOAVg\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"G7jaiXOAVg\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-05T00:00:00Z\",\n                \"end_at\": \"2019-06-05T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 05 We 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DLkqijM67a\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DLkqijM67a\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-06T00:00:00Z\",\n                \"end_at\": \"2019-06-06T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 06 Th 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"d7DzidZmLB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"d7DzidZmLB\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-07T00:00:00Z\",\n                \"end_at\": \"2019-06-07T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 07 Fr 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"y7KAiEOMLv\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"y7KAiEOMLv\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-08T00:00:00Z\",\n                \"end_at\": \"2019-06-08T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 08 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"Kx09iEraLX\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"Kx09iEraLX\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-09T00:00:00Z\",\n                \"end_at\": \"2019-06-09T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 09 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"Q7BaiA1AVb\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"Q7BaiA1AVb\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-10T00:00:00Z\",\n                \"end_at\": \"2019-06-10T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 10 Mo 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"NLwjibKKxD\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"NLwjibKKxD\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-11T00:00:00Z\",\n                \"end_at\": \"2019-06-11T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 11 Tu 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"D744i3N078\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"D744i3N078\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-12T00:00:00Z\",\n                \"end_at\": \"2019-06-12T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 12 We 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"8VvJieDWVv\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"8VvJieDWVv\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-13T00:00:00Z\",\n                \"end_at\": \"2019-06-13T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 13 Th 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DVA6ivYn7X\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DVA6ivYn7X\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-14T00:00:00Z\",\n                \"end_at\": \"2019-06-14T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 14 Fr 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"2VX9iOjl7N\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"2VX9iOjl7N\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-15T00:00:00Z\",\n                \"end_at\": \"2019-06-15T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 15 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"J7d3igMRVB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"J7d3igMRVB\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-16T00:00:00Z\",\n                \"end_at\": \"2019-06-16T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 16 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"jVJvi2nyVR\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"jVJvi2nyVR\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-17T00:00:00Z\",\n                \"end_at\": \"2019-06-17T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 17 Mo 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"G7jaiXOoVg\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"G7jaiXOoVg\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-18T00:00:00Z\",\n                \"end_at\": \"2019-06-18T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 18 Tu 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DLkqijMy7a\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DLkqijMy7a\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-19T00:00:00Z\",\n                \"end_at\": \"2019-06-19T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 19 We 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"d7DzidZMLB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"d7DzidZMLB\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-20T00:00:00Z\",\n                \"end_at\": \"2019-06-20T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 20 Th 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        }\n    ],\n    \"meta\": {\n        \"items\": 20,\n        \"count\": 30,\n        \"page\": 1\n    },\n    \"links\": {\n        \"self\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates?page=1\",\n        \"pagination\": {\n            \"first\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates?page=1\",\n            \"next\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates?page=2\",\n            \"last\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates?page=2\"\n        }\n    }\n}"}],"_postman_id":"0b3d322b-6a30-4c5d-9a24-8edadaaf817b"},{"name":"🚧 Tickets","id":"f66718dd-33b8-47d8-a4d3-1ea560e0d3d0","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/tickets","description":"<p>Billetterie(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","tickets"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"f66718dd-33b8-47d8-a4d3-1ea560e0d3d0"},{"name":"🚧 Fees","id":"2fa08a8c-11bb-4f1b-812e-9aca3c1e5cc3","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/fees","description":"<p>Prix lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","fees"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"2fa08a8c-11bb-4f1b-812e-9aca3c1e5cc3"},{"name":"🚧 Contacts","id":"9d014b5f-375b-4d91-8c41-14601fa73953","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/contacts","description":"<p>Information(s) de contact liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","contacts"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"9d014b5f-375b-4d91-8c41-14601fa73953"},{"name":"🚧 Socials","id":"590a7cba-551c-485e-9236-7c9cb74ee566","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/socials","description":"<p>Information(s) sociale(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","socials"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"590a7cba-551c-485e-9236-7c9cb74ee566"},{"name":"🚧 Public","id":"72c32d9c-920e-4871-94f5-d5e566cfcdc5","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/public","description":"<p>Public associé à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","public"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"72c32d9c-920e-4871-94f5-d5e566cfcdc5"},{"name":"🚧 Accessibility","id":"157fe96a-3f85-4487-b283-cb37f34a9a0d","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/accessibility","description":"<p>Information(s) d'accessibilité liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","accessibility"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"157fe96a-3f85-4487-b283-cb37f34a9a0d"},{"name":"🚧 Partners","id":"6cee622d-6871-4e5f-b970-528cee3ef14f","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/partners","description":"<p>Partenaire(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","partners"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"6cee622d-6871-4e5f-b970-528cee3ef14f"},{"name":"🚧 Instances","id":"9e7f6bab-2ad9-4bb9-8f2b-ac3f12084ccb","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/instances","description":"<p>Instance(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","instances"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"9e7f6bab-2ad9-4bb9-8f2b-ac3f12084ccb"},{"name":"🚧 Pages","id":"7310c0a1-4e1b-4873-a001-823075225714","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/skills","description":"<p>Page(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","skills"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"7310c0a1-4e1b-4873-a001-823075225714"},{"name":"🚧 Contributors","id":"dc864f4f-9eaf-4aaf-93d3-da7ab8342a23","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/contributors","description":"<p>Contributeur(s) / mainteneur(s) de la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","contributors"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"dc864f4f-9eaf-4aaf-93d3-da7ab8342a23"}],"id":"deaf720e-eb64-4d61-b8f3-993dc12f2d64","_postman_id":"deaf720e-eb64-4d61-b8f3-993dc12f2d64","description":""},{"name":"Relations","item":[{"name":"🚧 Relations","id":"4274b71e-60bd-43e5-b9e9-a5f1c2703128","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/themes","description":"<p>Ressource(s) associée(s) à ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","themes"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"4274b71e-60bd-43e5-b9e9-a5f1c2703128"},{"name":"🚧 Facilities","id":"486d1e3c-8f61-4926-a628-82207c42bdc2","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/facilities","description":"<p>Équipement(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","facilities"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"486d1e3c-8f61-4926-a628-82207c42bdc2"},{"name":"🚧 Cities","id":"5e1b390a-acc8-45d5-8518-5fc881811cf2","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/cities","description":"<p>Commune(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","cities"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"5e1b390a-acc8-45d5-8518-5fc881811cf2"},{"name":"🚧 Departments","id":"546e9534-e089-4d35-85ba-a53faaff162c","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/departments","description":"<p>Départements(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","departments"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"546e9534-e089-4d35-85ba-a53faaff162c"},{"name":"🚧 Regions","id":"ff248e75-0448-4e0c-97be-3c6a6304f98b","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/regions","description":"<p>Région(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","regions"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"ff248e75-0448-4e0c-97be-3c6a6304f98b"},{"name":"🚧 News","id":"5a7d284e-76df-4eed-9ac1-4e10a59c825c","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/news","description":"<p>Actualité(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","news"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"5a7d284e-76df-4eed-9ac1-4e10a59c825c"},{"name":"✅ Events","id":"0f44fc30-04a4-4d11-ae2b-df222daffe73","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/events","description":"<p>Événement(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","events"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"0f44fc30-04a4-4d11-ae2b-df222daffe73"},{"name":"🚧 EventGroups","id":"2e47a2f9-534e-4cfb-ad9d-633351ea732e","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/event_groups","description":"<p>Groupe(s) d'événement(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","event_groups"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"2e47a2f9-534e-4cfb-ad9d-633351ea732e"},{"name":"🚧 Projects","id":"b06639be-a883-4f93-ac16-83efe52ac374","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/projects","description":"<p>Projet(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","projects"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"b06639be-a883-4f93-ac16-83efe52ac374"},{"name":"🚧 Performers","id":"1f7fae2f-9258-4856-8771-8e606cddb9b7","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/performers","description":"<p>Artiste(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","performers"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"1f7fae2f-9258-4856-8771-8e606cddb9b7"},{"name":"🚧 Companies","id":"1c2dca52-fe49-4d89-b7a2-c00ac18c0f79","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/companies","description":"<p>Entreprise(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","companies"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"1c2dca52-fe49-4d89-b7a2-c00ac18c0f79"},{"name":"🚧 NonProfits","id":"dd36683a-4ae6-4078-b518-253f5b02a6d8","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/non_profits","description":"<p>Associations(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","non_profits"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"dd36683a-4ae6-4078-b518-253f5b02a6d8"},{"name":"🚧 EtablissementPublics","id":"6308249b-3c1e-431b-8b16-c2eef129ba84","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/etablissement_publics","description":"<p>Établissement(s) public(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","etablissement_publics"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"6308249b-3c1e-431b-8b16-c2eef129ba84"},{"name":"🚧 Skills","id":"ed5b2208-a136-48af-8ad0-82c3362cade1","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/skills","description":"<p>Compétence(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","skills"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"ed5b2208-a136-48af-8ad0-82c3362cade1"},{"name":"🚧 Elects","id":"cd59973f-f324-4df9-9761-f987cb7909a9","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/elects","description":"<p>Élus(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","elects"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"cd59973f-f324-4df9-9761-f987cb7909a9"}],"id":"ac2df2d0-ba90-44c4-b150-d2bdaeab6282","description":"<p>A venir... 🚧</p>\n","event":[{"listen":"prerequest","script":{"id":"487c0f48-a1cd-4aae-af2f-4b62ccf8bb0b","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"4dfafa06-8884-4b36-9c42-31cba1746986","type":"text/javascript","exec":[""]}}],"_postman_id":"ac2df2d0-ba90-44c4-b150-d2bdaeab6282"},{"name":"Médias","item":[{"name":"🚧 Medias","id":"45de8d63-18fd-402a-a221-1d1134afea36","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/medias","description":"<p>Média(s) associé(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","medias"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"45de8d63-18fd-402a-a221-1d1134afea36"},{"name":"✅ Images","id":"8b157396-9ff5-4a3b-aa71-780b33fb8866","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/images","description":"<p>Image(s) associée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","images"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"8b157396-9ff5-4a3b-aa71-780b33fb8866"},{"name":"✅ Documents","id":"ec1ba4a8-8c35-4e3b-a4e6-7751e043a7c9","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/documents","description":"<p>Document(s) associé(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","documents"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"ec1ba4a8-8c35-4e3b-a4e6-7751e043a7c9"}],"id":"312f21f9-33fe-4755-bf9c-68eb6f8e6f2c","_postman_id":"312f21f9-33fe-4755-bf9c-68eb6f8e6f2c","description":""}],"id":"c955770e-8472-4cf6-b97a-3455b16b5703","description":"<p>Les événements</p>\n","event":[{"listen":"prerequest","script":{"id":"768578b7-1e5d-45b7-ab56-2a8b856f2061","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"a419bb76-510b-4b2b-bc5d-608de7e9b0d3","type":"text/javascript","exec":[""]}}],"_postman_id":"c955770e-8472-4cf6-b97a-3455b16b5703"},{"name":"Élus","item":[{"name":"Endpoints principaux","item":[{"name":"Index","id":"d446569f-60b1-486c-a8b9-3c55a3be84b9","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events","description":"<p>Liste des événements</p>\n","urlObject":{"path":["v2",":instance","events"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"}]}},"response":[{"id":"43cceeea-05ba-4ea7-a7af-400854bde621","name":"✅ Index","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.publidata.io/v2/:instance/events","host":["https://api.publidata.io"],"path":["v2",":instance","events"],"variable":[{"key":"instance","value":"500-ans-renaissances"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Tue, 06 Nov 2018 14:35:32 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"e272b80759b3239cb223ac313ead9d8a\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"ef157796-c377-4ab4-b340-25fe123f51d3"},{"key":"X-Runtime","value":"0.211831"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"J7dASjXPxB\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"J7dASjXPxB\",\n                \"created_at\": \"2018-11-02T13:36:24Z\",\n                \"updated_at\": \"2018-11-06T14:11:43Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {\n                    \"fr\": \"La 28e édition du Festival International des Jardins abordera un thème cher à la Renaissance.\"\n                },\n                \"name\": {\n                    \"fr\": \"Festival International des Jardins de Chaumont-sur-Loire\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"medium-insert-active\\\"><br></p>\"\n                },\n                \"start_at\": \"2019-04-25T10:00:00Z\",\n                \"end_at\": \"2019-11-03T19:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"y7KpS6Dgxv\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"y7KpS6Dgxv\",\n                \"created_at\": \"2018-10-31T11:26:32Z\",\n                \"updated_at\": \"2018-11-06T10:56:29Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {\n                    \"fr\": \"62eme Colloque International d'études humanistes du centre d'études supérieures de la Renaissance\"\n                },\n                \"name\": {\n                    \"fr\": \"Léonard de Vinci création et innovations \"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"is-active\\\">Le 62ème colloque international d’études humanistes du Centre d’études supérieures de la Renaissance de Tours sera consacré à Léonard de Vinci en 2019.&nbsp;</p><p class=\\\"is-active\\\">Cet événement rassemblera les plus grands spécialistes internationaux du sujet et proposera d’aborder toutes les facettes de l’oeuvre de Léonard sous le prisme de l’invention et de l’innovation : mécanique, médecine, architecture, biomimétisme, etc. Une partie de ce colloque se tiendra dans des lieux marqués par la figure de Léonard de Vinci : le Château du Clos Lucé à Amboise et le Château de Chambord.</p>\"\n                },\n                \"start_at\": \"2019-06-01T00:00:00Z\",\n                \"end_at\": \"2019-06-30T00:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"G7j3SNKzxg\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"G7j3SNKzxg\",\n                \"created_at\": \"2018-10-31T09:20:00Z\",\n                \"updated_at\": \"2018-11-06T10:56:29Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {},\n                \"name\": {\n                    \"fr\": \"Les Borgia à Chinon\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"\\\">La Forteresse royale de Chinon, proposera une reconstitution historique de la venue de César Borgia, fils du pape Alexandre VI pour rencontrer le roi de France à Chinon en 1498 . Reconstitution (cortège équestre). Démonstrations de Calcio Storico (sport florentin de la Renaissance, ancêtre du football actuel…). Dégustations de mets et recettes de la Renaissance florentine. Danses et musiques Renaissance.<br></p>\"\n                },\n                \"start_at\": \"2019-07-21T00:00:00Z\",\n                \"end_at\": \"2019-07-21T00:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"jVJbSWMWVR\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"jVJbSWMWVR\",\n                \"created_at\": \"2018-10-31T08:54:32Z\",\n                \"updated_at\": \"2018-11-06T10:56:28Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {},\n                \"name\": {\n                    \"fr\": \"La renaissance en Val de Loire, en France et en Europe - Festival du film français renaissance\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p>Pour la 21ème édition des Rendez- vous de l’Histoire, le Centre d’Études Supérieures de la Renaissance sera fortement impliqué dans une programmation spécifique « La Renaissance en Val de Loire, en France et en Europe ». Dans le cadre du festival du film français « Renaissance », seront projetés des films historiques accompagnés de moments de réflexion (débats, conférences et ateliers) mettant en perspective la création cinématographique au regard de l’histoire de la peinture historiciste.<br></p>\"\n                },\n                \"start_at\": \"2019-10-01T00:00:00Z\",\n                \"end_at\": \"2019-10-31T00:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"J7dASjXwxB\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"J7dASjXwxB\",\n                \"created_at\": \"2018-10-31T08:42:55Z\",\n                \"updated_at\": \"2018-11-06T10:56:28Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {\n                    \"fr\": \"Parcours numérique, sonore et interactif\"\n                },\n                \"name\": {\n                    \"fr\": \"Renaissance comme Rabelais\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<h3>Parcours numérique, sonore et interactif combinant des moyens techniques innovants capables d’allier  géographie littéraire et géographie réelle. Création d’un parcours sonore géolocalisé à partir d’une application mobile entre La Devinière, maison natale de Rabelais, et l’Abbaye de Seuilly.<br></h3>\"\n                },\n                \"start_at\": \"2019-07-01T00:00:00Z\",\n                \"end_at\": \"2019-10-31T00:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"DVAWS3NQxX\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"DVAWS3NQxX\",\n                \"created_at\": \"2018-10-31T08:34:25Z\",\n                \"updated_at\": \"2018-11-06T10:56:28Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {},\n                \"name\": {\n                    \"fr\": \"Spectacle numérique itinérant Renaissance(S)\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p>Ce spectacle numérique invite le public à s’immerger par le biais des dernières technologies dans un environnement visuel et sonore en plusieurs dimensions. Diverses technologies, de réalité augmentée ou de réalité virtuelle peuvent être détournées par le biais d’une immersion sensori-motrice grâce à une ou plusieurs interfaces visuelles. Ce spectacle proposera une narration dans l’esprit humaniste et novateur de la Renaissance.</p><p>Il évoquera les dimensions créatives, anticipatrices, pluridisciplinaires de Léonard de Vinci, les acteurs, oeuvres, sites patrimoniaux et culturels majeurs du territoire à la Renaissance, le Centre-Val de Loire aujourd’hui et sa projection dans le futur.</p>\"\n                },\n                \"start_at\": \"2019-08-15T19:00:00Z\",\n                \"end_at\": \"2019-09-15T23:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"8VvZS1y0Vv\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"8VvZS1y0Vv\",\n                \"created_at\": \"2018-10-31T08:29:42Z\",\n                \"updated_at\": \"2018-11-06T10:56:28Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {},\n                \"name\": {\n                    \"fr\": \"Magnificences à la cour de France\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"is-active\\\">Ce spectacle de l’ensemble Doulce Mémoire, recrée l’univers d’une fête à la cour de François I<sup>er</sup>, autour de 1515, celles qui virent l’arrivée en France de Léonard de Vinci à l’invitation du roi français. Peintre, inventeur de génie, Léonard était aussi organisateur de fêtes fameuses, dont l’inventivité et la puissance créatrice étaient appréciées les puissants.<br></p>\"\n                },\n                \"start_at\": \"2019-07-23T19:00:00Z\",\n                \"end_at\": \"2019-07-23T23:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"NLwlSvmaVD\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"NLwlSvmaVD\",\n                \"created_at\": \"2018-10-30T16:51:07Z\",\n                \"updated_at\": \"2018-11-06T10:56:27Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {\n                    \"fr\": \"Exposition regroupant des artistes contemporains influencés par Léonard de Vinci et la Renaissance.\"\n                },\n                \"name\": {\n                    \"fr\": \"Hommage contemporain à la Renaissance\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"is-active\\\">Exposition d’artistes contemporains ayant été influencés par Léonard de Vinci et la Renaissance, sur l’exemple de Fabien Merelle, établi à Tours et travaillant sur la scène internationale.&nbsp;</p><p class=\\\"is-active\\\">L’exposition « Hommage à Léonard » transpose dans l’art contemporain l’héritage du maître du Cinquecento mort en Val de Loire il y a 500 ans. Vaste cabinet de curiosités, l’exposition présentée dans les salles historiques du château fait écho au système de pensée&nbsp;<span style=\\\"font-size: 1em; font-family: ProximaNova, Helvetica, Arial, &quot;Sans Serif&quot;;\\\">du Maitre, génie polyvalent où la réalisation ne constitue pas la fin mais le moyen de la réflexion. Conçue comme une sorte de « mise en curiosité » envers les différents apports de Léonard, homme d’esprit universel à l’histoire des arts en Europe, interprétés ou prolongés par différents artistes de notre temps travaillant sur la scène internationale ; l’exposition montre aussi que les échanges entre Italie et France vers 1500, l’italianisme dans les&nbsp;</span><span style=\\\"font-size: 1em; font-family: ProximaNova, Helvetica, Arial, &quot;Sans Serif&quot;;\\\">arts amorcé sous Charles VIII et Louis XII se perpétuent de nos jours, avec les travaux des artistes florentines Antonella Bussanich, Alessandra Capodacqua et Alessandra Ragionier. Comme dans les chapitres d’un livre, chaque salle illustre l’un des thèmes étudiés par Léonard. L’autoportrait / Le portrait / La peinture d’histoire /&nbsp;</span><span style=\\\"font-size: 1em; font-family: ProximaNova, Helvetica, Arial, &quot;Sans Serif&quot;;\\\">Le Paysage / Le codex / La nature morte / Le Portrait féminin / Le Drapé.</span></p>\"\n                },\n                \"start_at\": \"2019-04-01T10:00:00Z\",\n                \"end_at\": \"2019-11-30T18:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"8VOeS416xY\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"8VOeS416xY\",\n                \"created_at\": \"2018-10-29T16:47:42Z\",\n                \"updated_at\": \"2018-11-06T10:56:30Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {\n                    \"fr\": \"Dans le cadre de l'anniversaire des 500ans de la Renaissance, l'artiste Ravo revisite l'oeuvre de François-Guillaume Ménageot \\\"La mort de Léonard de Vinci\\\"\"\n                },\n                \"name\": {\n                    \"fr\": \"Ravo Mattoni invité du Château Royal d' Amboise\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"\\\">Andrea Mattoni alias <b>RAVO</b>, artiste-graffeur italien de son état, a débuté en 2016 un ambitieux projet visant à reproduire, in situ et en très grand format, des chefs-d’œuvre de la peinture classique signés du Caravage, de Delacroix, de Delatour… Profondeur des couleurs, puissance des lignes et de l’échelle, l’hommage de RAVO aux grands maîtres est d’une modernité réjouissante… Le résultat est bluffant.</p><p class=\\\"\\\">De manière à prolonger l’exposition « La Mort de Léonard de Vinci : la construction d’un mythe » préparée avec la BNF, le château royal d’Amboise a demandé à RAVO de réaliser 5 toiles de grandes dimensions (4.5m X 3m). Celles-ci prendront pour sujet des détails du monumental tableau de François-Guillaume Ménageot « La Mort de Léonard de Vinci », et trouveront place sur les murs de la tour cavalière des Minimes, du 2 mai au 2 septembre 2019. Pour honorer cette commande, l’artiste sera en résidence au château royal d’Amboise durant une dizaine de jours, en avril 2019. Il réalisera ses peintures en public.</p><p class=\\\"\\\">Cette exposition est organisée avec le concours de l’association des Ateliers de l’Etoile.</p><p class=\\\"\\\"><span style=\\\"font-size: 1em; font-family: ProximaNova, Helvetica, Arial, &quot;Sans Serif&quot;;\\\"><b>\\\"Exposition « La Mort de Léonard de Vinci : la construction d’un mythe » - Partenariat BNF (Bibliothèque Nationale de France)</b></span><br></p><p class=\\\"\\\">Tous les jours, du 2 mai au 2 septembre 2019.</p><p class=\\\"\\\">La grande exposition intitulée « La Mort de Léonard de Vinci : la construction d’un mythe », articulée autour du monumental tableau (280 cm X 357 cm) de François-Guillaume Ménageot La mort de Léonard de Vinci, et d’une collection de gravures issues des collections nationales, nous éclairera sur la manière dont les contours de l’amitié entre le roi François Ier et Léonard ont été progressivement réécrits par l’Histoire, et assimilés par elle jusqu’à la construction d’un mythe mis au service de l’image de la monarchie française au XVIII<sup>ème</sup> siècle.</p><p>Au cœur de la riche programmation des célébrations du 5ème centenaire, cette exposition majeure viendra aussi rappeler à un public venu des quatre coins du monde la place éternelle qu’occupe Léonard de Vinci en Val de Loire, et à Amboise en particulier où il repose pour l’éternité dans la quiétude de la chapelle du château.\\\"</p>\"\n                },\n                \"start_at\": \"2019-05-02T09:00:00Z\",\n                \"end_at\": \"2019-09-02T18:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"items\": 9,\n        \"count\": 9,\n        \"page\": 1\n    },\n    \"links\": {\n        \"self\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events?page=1\",\n        \"pagination\": {\n            \"first\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events?page=1\",\n            \"last\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events?page=1\"\n        }\n    }\n}"}],"_postman_id":"d446569f-60b1-486c-a8b9-3c55a3be84b9"},{"name":"Show","id":"6b01ed21-bb79-44b0-beec-14c6652357dd","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/{{instance_id}}/events/:id","description":"<p>Détail d'un événement</p>\n","urlObject":{"path":["v2","{{instance_id}}","events",":id"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[{"id":"43299b49-54da-4973-8151-f5eb23eaf4a9","name":"✅ Show","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.publidata.io/v2/{{instance_id}}/events/:id","host":["https://api.publidata.io"],"path":["v2","{{instance_id}}","events",":id"],"variable":[{"key":"id","value":"y7KpS6Dgxv"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Tue, 06 Nov 2018 14:50:05 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"811c246d37cc926cc75bf582cd364fb3\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"d619c237-6f78-4100-9d77-b11aa3b6dc53"},{"key":"X-Runtime","value":"0.051868"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"y7KpS6Dgxv\",\n        \"type\": \"event\",\n        \"attributes\": {\n            \"id\": \"y7KpS6Dgxv\",\n            \"created_at\": \"2018-10-31T11:26:32Z\",\n            \"updated_at\": \"2018-11-06T10:56:29Z\",\n            \"cancelled\": false,\n            \"cancellation_reason\": null,\n            \"free_admission\": null,\n            \"free_admission_condition\": null,\n            \"punchline\": {\n                \"fr\": \"62eme Colloque International d'études humanistes du centre d'études supérieures de la Renaissance\"\n            },\n            \"name\": {\n                \"fr\": \"Léonard de Vinci création et innovations \"\n            },\n            \"blurb\": {\n                \"fr\": \"<p class=\\\"is-active\\\">Le 62ème colloque international d’études humanistes du Centre d’études supérieures de la Renaissance de Tours sera consacré à Léonard de Vinci en 2019.&nbsp;</p><p class=\\\"is-active\\\">Cet événement rassemblera les plus grands spécialistes internationaux du sujet et proposera d’aborder toutes les facettes de l’oeuvre de Léonard sous le prisme de l’invention et de l’innovation : mécanique, médecine, architecture, biomimétisme, etc. Une partie de ce colloque se tiendra dans des lieux marqués par la figure de Léonard de Vinci : le Château du Clos Lucé à Amboise et le Château de Chambord.</p>\"\n            },\n            \"start_at\": \"2019-06-01T00:00:00Z\",\n            \"end_at\": \"2019-06-30T00:00:00Z\"\n        },\n        \"relationships\": {},\n        \"links\": {\n            \"self\": {\n                \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv\"\n            },\n            \"relations\": {\n                \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/cities\",\n                \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/companies\",\n                \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/departments\",\n                \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/elects\",\n                \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/etablissement_publics\",\n                \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/event_groups\",\n                \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/events\",\n                \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/facilities\",\n                \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/news\",\n                \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/non_profits\",\n                \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/performers\",\n                \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/projects\",\n                \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/regions\",\n                \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/skills\"\n            },\n            \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/images\",\n            \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/documents\",\n            \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates\",\n            \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/type\",\n            \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/types\"\n        },\n        \"meta\": {\n            \"licenses\": [\n                {\n                    \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                    \"SPDX\": \"ODbL-1.0\",\n                    \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                    \"targets\": [\n                        \"cancelled\",\n                        \"cancellation_reason\",\n                        \"free_admission\",\n                        \"free_admission_condition\",\n                        \"punchline\",\n                        \"name\",\n                        \"blurb\",\n                        \"start_at\",\n                        \"end_at\"\n                    ]\n                }\n            ],\n            \"instances\": {\n                \"500-ans-renaissances\": [\n                    \"fr\"\n                ]\n            }\n        }\n    }\n}"}],"_postman_id":"6b01ed21-bb79-44b0-beec-14c6652357dd"},{"name":"Show with included resources","id":"98d0252c-6129-4b7f-bc68-71dbca3c9ed9","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id?include=dates,types","description":"<p>Avec le paramètre <code>include</code> vous avez la possibilité d'insérer dans la vue principale des ressources liées, vous évitant des requêtes supplémentaires.</p>\n","urlObject":{"path":["v2",":instance","events",":id"],"host":["https://api.publidata.io"],"query":[{"description":{"content":"<p>Liste des ressources à insérer</p>\n","type":"text/plain"},"key":"include","value":"dates,types"}],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[{"id":"757b7d12-ed80-4719-a60f-9b07bee3ce17","name":"✅ Show with included resources","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.publidata.io/v2/:instance/events/:id?include=dates,types","host":["https://api.publidata.io"],"path":["v2",":instance","events",":id"],"query":[{"key":"include","value":"dates,types","description":"Liste des ressources à insérer"}],"variable":[{"key":"instance","value":"500-ans-renaissances"},{"key":"id","value":"y7KpS6Dgxv"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Tue, 06 Nov 2018 14:54:52 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"2c566edafdfca2fe7ed4fc7f8ef3e15b\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"b8d67f08-016a-4d6c-b10e-7d6467c5bcdf"},{"key":"X-Runtime","value":"0.483946"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"y7KpS6Dgxv\",\n        \"type\": \"event\",\n        \"attributes\": {\n            \"id\": \"y7KpS6Dgxv\",\n            \"created_at\": \"2018-10-31T11:26:32Z\",\n            \"updated_at\": \"2018-11-06T10:56:29Z\",\n            \"cancelled\": false,\n            \"cancellation_reason\": null,\n            \"free_admission\": null,\n            \"free_admission_condition\": null,\n            \"punchline\": {\n                \"fr\": \"62eme Colloque International d'études humanistes du centre d'études supérieures de la Renaissance\"\n            },\n            \"name\": {\n                \"fr\": \"Léonard de Vinci création et innovations \"\n            },\n            \"blurb\": {\n                \"fr\": \"<p class=\\\"is-active\\\">Le 62ème colloque international d’études humanistes du Centre d’études supérieures de la Renaissance de Tours sera consacré à Léonard de Vinci en 2019.&nbsp;</p><p class=\\\"is-active\\\">Cet événement rassemblera les plus grands spécialistes internationaux du sujet et proposera d’aborder toutes les facettes de l’oeuvre de Léonard sous le prisme de l’invention et de l’innovation : mécanique, médecine, architecture, biomimétisme, etc. Une partie de ce colloque se tiendra dans des lieux marqués par la figure de Léonard de Vinci : le Château du Clos Lucé à Amboise et le Château de Chambord.</p>\"\n            },\n            \"start_at\": \"2019-06-01T00:00:00Z\",\n            \"end_at\": \"2019-06-30T00:00:00Z\"\n        },\n        \"relationships\": {\n            \"types\": {\n                \"data\": []\n            },\n            \"dates\": {\n                \"data\": [\n                    {\n                        \"id\": \"axGeikm1VN\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"8VZZiNZ8Vd\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"eVgRimO4Lo\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"E79OiqZQLM\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"YVYgiW4lxD\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"87oei8vYLQ\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"gLb4iOga7J\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"o7EMiQDr75\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"B72ZiYOv7O\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"y7KAiEO4Lv\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"d7DzidZMLB\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"DLkqijMy7a\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"G7jaiXOoVg\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"jVJvi2nyVR\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"J7d3igMRVB\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"2VX9iOjl7N\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"DVA6ivYn7X\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"8VvJieDWVv\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"D744i3N078\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"NLwjibKKxD\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"Q7BaiA1AVb\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"Kx09iEraLX\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"y7KAiEOMLv\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"d7DzidZmLB\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"DLkqijM67a\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"G7jaiXOAVg\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"jVJvi2nXVR\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"J7d3igMbVB\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"2VX9iOjd7N\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"DVA6ivYR7X\",\n                        \"type\": \"date\"\n                    }\n                ]\n            }\n        },\n        \"links\": {\n            \"self\": {\n                \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv\"\n            },\n            \"relations\": {\n                \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/cities\",\n                \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/companies\",\n                \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/departments\",\n                \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/elects\",\n                \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/etablissement_publics\",\n                \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/event_groups\",\n                \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/events\",\n                \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/facilities\",\n                \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/news\",\n                \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/non_profits\",\n                \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/performers\",\n                \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/projects\",\n                \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/regions\",\n                \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/skills\"\n            },\n            \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/images\",\n            \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/documents\",\n            \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates\",\n            \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/type\",\n            \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/types\"\n        },\n        \"meta\": {\n            \"included\": [\n                \"dates\",\n                \"types\"\n            ],\n            \"licenses\": [\n                {\n                    \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                    \"SPDX\": \"ODbL-1.0\",\n                    \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                    \"targets\": [\n                        \"cancelled\",\n                        \"cancellation_reason\",\n                        \"free_admission\",\n                        \"free_admission_condition\",\n                        \"punchline\",\n                        \"name\",\n                        \"blurb\",\n                        \"start_at\",\n                        \"end_at\"\n                    ]\n                }\n            ],\n            \"instances\": {\n                \"500-ans-renaissances\": [\n                    \"fr\"\n                ]\n            }\n        }\n    },\n    \"included\": [\n        {\n            \"id\": \"axGeikm1VN\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"axGeikm1VN\",\n                \"created_at\": \"2018-10-31T11:33:15Z\",\n                \"updated_at\": \"2018-10-31T11:33:15Z\",\n                \"start_at\": \"2019-06-30T00:00:00Z\",\n                \"end_at\": \"2019-06-30T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 30 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"8VZZiNZ8Vd\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"8VZZiNZ8Vd\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-29T00:00:00Z\",\n                \"end_at\": \"2019-06-29T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 29 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"eVgRimO4Lo\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"eVgRimO4Lo\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-28T00:00:00Z\",\n                \"end_at\": \"2019-06-28T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 28 Fr 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"E79OiqZQLM\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"E79OiqZQLM\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-27T00:00:00Z\",\n                \"end_at\": \"2019-06-27T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 27 Th 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"YVYgiW4lxD\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"YVYgiW4lxD\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-26T00:00:00Z\",\n                \"end_at\": \"2019-06-26T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 26 We 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"87oei8vYLQ\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"87oei8vYLQ\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-25T00:00:00Z\",\n                \"end_at\": \"2019-06-25T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 25 Tu 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"gLb4iOga7J\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"gLb4iOga7J\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-24T00:00:00Z\",\n                \"end_at\": \"2019-06-24T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 24 Mo 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"o7EMiQDr75\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"o7EMiQDr75\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-23T00:00:00Z\",\n                \"end_at\": \"2019-06-23T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 23 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"B72ZiYOv7O\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"B72ZiYOv7O\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-22T00:00:00Z\",\n                \"end_at\": \"2019-06-22T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 22 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"y7KAiEO4Lv\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"y7KAiEO4Lv\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-21T00:00:00Z\",\n                \"end_at\": \"2019-06-21T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 21 Fr 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"d7DzidZMLB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"d7DzidZMLB\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-20T00:00:00Z\",\n                \"end_at\": \"2019-06-20T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 20 Th 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DLkqijMy7a\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DLkqijMy7a\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-19T00:00:00Z\",\n                \"end_at\": \"2019-06-19T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 19 We 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"G7jaiXOoVg\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"G7jaiXOoVg\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-18T00:00:00Z\",\n                \"end_at\": \"2019-06-18T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 18 Tu 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"jVJvi2nyVR\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"jVJvi2nyVR\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-17T00:00:00Z\",\n                \"end_at\": \"2019-06-17T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 17 Mo 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"J7d3igMRVB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"J7d3igMRVB\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-16T00:00:00Z\",\n                \"end_at\": \"2019-06-16T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 16 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"2VX9iOjl7N\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"2VX9iOjl7N\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-15T00:00:00Z\",\n                \"end_at\": \"2019-06-15T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 15 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DVA6ivYn7X\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DVA6ivYn7X\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-14T00:00:00Z\",\n                \"end_at\": \"2019-06-14T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 14 Fr 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"8VvJieDWVv\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"8VvJieDWVv\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-13T00:00:00Z\",\n                \"end_at\": \"2019-06-13T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 13 Th 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"D744i3N078\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"D744i3N078\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-12T00:00:00Z\",\n                \"end_at\": \"2019-06-12T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 12 We 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"NLwjibKKxD\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"NLwjibKKxD\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-11T00:00:00Z\",\n                \"end_at\": \"2019-06-11T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 11 Tu 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"Q7BaiA1AVb\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"Q7BaiA1AVb\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-10T00:00:00Z\",\n                \"end_at\": \"2019-06-10T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 10 Mo 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"Kx09iEraLX\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"Kx09iEraLX\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-09T00:00:00Z\",\n                \"end_at\": \"2019-06-09T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 09 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"y7KAiEOMLv\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"y7KAiEOMLv\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-08T00:00:00Z\",\n                \"end_at\": \"2019-06-08T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 08 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"d7DzidZmLB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"d7DzidZmLB\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-07T00:00:00Z\",\n                \"end_at\": \"2019-06-07T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 07 Fr 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DLkqijM67a\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DLkqijM67a\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-06T00:00:00Z\",\n                \"end_at\": \"2019-06-06T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 06 Th 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"G7jaiXOAVg\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"G7jaiXOAVg\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-05T00:00:00Z\",\n                \"end_at\": \"2019-06-05T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 05 We 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"jVJvi2nXVR\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"jVJvi2nXVR\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-04T00:00:00Z\",\n                \"end_at\": \"2019-06-04T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 04 Tu 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"J7d3igMbVB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"J7d3igMbVB\",\n                \"created_at\": \"2018-10-31T11:33:11Z\",\n                \"updated_at\": \"2018-10-31T11:33:11Z\",\n                \"start_at\": \"2019-06-03T00:00:00Z\",\n                \"end_at\": \"2019-06-03T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 03 Mo 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"2VX9iOjd7N\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"2VX9iOjd7N\",\n                \"created_at\": \"2018-10-31T11:33:11Z\",\n                \"updated_at\": \"2018-10-31T11:33:11Z\",\n                \"start_at\": \"2019-06-02T00:00:00Z\",\n                \"end_at\": \"2019-06-02T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 02 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DVA6ivYR7X\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DVA6ivYR7X\",\n                \"created_at\": \"2018-10-31T11:33:11Z\",\n                \"updated_at\": \"2018-10-31T11:33:11Z\",\n                \"start_at\": \"2019-06-01T00:00:00Z\",\n                \"end_at\": \"2019-06-01T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 01 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"wo7NbcKj7n\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"wo7NbcKj7n\",\n                \"created_at\": \"2018-10-23T01:23:57Z\",\n                \"updated_at\": \"2018-10-23T01:24:19Z\",\n                \"name\": {\n                    \"fr\": \"Rassemblement\"\n                }\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": \"https://publidata-staging.herokuapp.com/api/v2/event_types/wo7NbcKj7n\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"Wn7lQcrKxm\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"Wn7lQcrKxm\",\n                \"created_at\": \"2018-10-23T01:23:57Z\",\n                \"updated_at\": \"2018-10-23T01:24:19Z\",\n                \"name\": {\n                    \"fr\": \"Colloque\"\n                }\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": \"https://publidata-staging.herokuapp.com/api/v2/event_types/Wn7lQcrKxm\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        }\n    ]\n}"}],"_postman_id":"98d0252c-6129-4b7f-bc68-71dbca3c9ed9"}],"id":"d594339d-78a8-451c-834b-b35cd4a4fb4f","_postman_id":"d594339d-78a8-451c-834b-b35cd4a4fb4f","description":""},{"name":"Ressources liées","item":[{"name":"Types","id":"60758a6c-8ade-4075-92a3-dd399f520f83","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/types","description":"<p>Type(s) de la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","types"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[{"id":"30532a11-9476-460a-97b4-1339425f972b","name":"✅ Types","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.publidata.io/v2/:instance/events/:id/types","host":["https://api.publidata.io"],"path":["v2",":instance","events",":id","types"],"variable":[{"key":"instance","value":"500-ans-renaissances"},{"key":"id","value":"y7KpS6Dgxv"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Tue, 06 Nov 2018 14:56:10 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"aca7a58992ce54decfd0aa1309558bf9\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"d9a108a9-5d7c-486f-9b8f-620b97ceecb4"},{"key":"X-Runtime","value":"0.137086"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"wo7NbcKj7n\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"wo7NbcKj7n\",\n                \"created_at\": \"2018-10-23T01:23:57Z\",\n                \"updated_at\": \"2018-10-23T01:24:19Z\",\n                \"name\": {\n                    \"fr\": \"Rassemblement\"\n                }\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": \"https://publidata-staging.herokuapp.com/api/v2/event_types/wo7NbcKj7n\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"Wn7lQcrKxm\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"Wn7lQcrKxm\",\n                \"created_at\": \"2018-10-23T01:23:57Z\",\n                \"updated_at\": \"2018-10-23T01:24:19Z\",\n                \"name\": {\n                    \"fr\": \"Colloque\"\n                }\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": \"https://publidata-staging.herokuapp.com/api/v2/event_types/Wn7lQcrKxm\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        }\n    ],\n    \"meta\": {\n        \"items\": 2,\n        \"count\": 2,\n        \"page\": 1\n    },\n    \"links\": {\n        \"self\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/types?page=1\",\n        \"pagination\": {\n            \"first\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/types?page=1\",\n            \"last\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/types?page=1\"\n        }\n    }\n}"}],"_postman_id":"60758a6c-8ade-4075-92a3-dd399f520f83"},{"name":"Themes","id":"8228b739-72f1-4534-a229-6d5c9a38af12","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/themes","description":"<p>Thème(s) associé(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","themes"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"8228b739-72f1-4534-a229-6d5c9a38af12"},{"name":"Titles","id":"5a57d039-ac10-4dc2-8089-fe3ecaa5a215","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/elects/:id/titles","description":"<p>Date(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","elects",":id","titles"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"string","value":"500-ans-renaissances","key":"instance"},{"type":"string","value":"y7KpS6Dgxv","key":"id"}]}},"response":[{"id":"eba51071-786b-4142-8d3b-88d9d4c09ed5","name":"✅ Dates","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.publidata.io/v2/:instance/events/:id/dates","host":["https://api.publidata.io"],"path":["v2",":instance","events",":id","dates"],"variable":[{"key":"instance","value":"500-ans-renaissances"},{"key":"id","value":"y7KpS6Dgxv"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Tue, 06 Nov 2018 14:57:37 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"5019bf7102c4e9c481afd4dc20c410e1\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"5b74b321-cdd9-461b-a32e-4263c646d08b"},{"key":"X-Runtime","value":"0.316049"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"DVA6ivYR7X\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DVA6ivYR7X\",\n                \"created_at\": \"2018-10-31T11:33:11Z\",\n                \"updated_at\": \"2018-10-31T11:33:11Z\",\n                \"start_at\": \"2019-06-01T00:00:00Z\",\n                \"end_at\": \"2019-06-01T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 01 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"2VX9iOjd7N\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"2VX9iOjd7N\",\n                \"created_at\": \"2018-10-31T11:33:11Z\",\n                \"updated_at\": \"2018-10-31T11:33:11Z\",\n                \"start_at\": \"2019-06-02T00:00:00Z\",\n                \"end_at\": \"2019-06-02T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 02 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"J7d3igMbVB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"J7d3igMbVB\",\n                \"created_at\": \"2018-10-31T11:33:11Z\",\n                \"updated_at\": \"2018-10-31T11:33:11Z\",\n                \"start_at\": \"2019-06-03T00:00:00Z\",\n                \"end_at\": \"2019-06-03T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 03 Mo 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"jVJvi2nXVR\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"jVJvi2nXVR\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-04T00:00:00Z\",\n                \"end_at\": \"2019-06-04T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 04 Tu 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"G7jaiXOAVg\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"G7jaiXOAVg\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-05T00:00:00Z\",\n                \"end_at\": \"2019-06-05T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 05 We 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DLkqijM67a\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DLkqijM67a\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-06T00:00:00Z\",\n                \"end_at\": \"2019-06-06T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 06 Th 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"d7DzidZmLB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"d7DzidZmLB\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-07T00:00:00Z\",\n                \"end_at\": \"2019-06-07T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 07 Fr 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"y7KAiEOMLv\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"y7KAiEOMLv\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-08T00:00:00Z\",\n                \"end_at\": \"2019-06-08T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 08 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"Kx09iEraLX\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"Kx09iEraLX\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-09T00:00:00Z\",\n                \"end_at\": \"2019-06-09T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 09 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"Q7BaiA1AVb\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"Q7BaiA1AVb\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-10T00:00:00Z\",\n                \"end_at\": \"2019-06-10T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 10 Mo 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"NLwjibKKxD\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"NLwjibKKxD\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-11T00:00:00Z\",\n                \"end_at\": \"2019-06-11T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 11 Tu 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"D744i3N078\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"D744i3N078\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-12T00:00:00Z\",\n                \"end_at\": \"2019-06-12T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 12 We 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"8VvJieDWVv\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"8VvJieDWVv\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-13T00:00:00Z\",\n                \"end_at\": \"2019-06-13T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 13 Th 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DVA6ivYn7X\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DVA6ivYn7X\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-14T00:00:00Z\",\n                \"end_at\": \"2019-06-14T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 14 Fr 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"2VX9iOjl7N\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"2VX9iOjl7N\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-15T00:00:00Z\",\n                \"end_at\": \"2019-06-15T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 15 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"J7d3igMRVB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"J7d3igMRVB\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-16T00:00:00Z\",\n                \"end_at\": \"2019-06-16T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 16 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"jVJvi2nyVR\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"jVJvi2nyVR\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-17T00:00:00Z\",\n                \"end_at\": \"2019-06-17T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 17 Mo 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"G7jaiXOoVg\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"G7jaiXOoVg\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-18T00:00:00Z\",\n                \"end_at\": \"2019-06-18T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 18 Tu 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DLkqijMy7a\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DLkqijMy7a\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-19T00:00:00Z\",\n                \"end_at\": \"2019-06-19T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 19 We 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"d7DzidZMLB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"d7DzidZMLB\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-20T00:00:00Z\",\n                \"end_at\": \"2019-06-20T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 20 Th 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        }\n    ],\n    \"meta\": {\n        \"items\": 20,\n        \"count\": 30,\n        \"page\": 1\n    },\n    \"links\": {\n        \"self\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates?page=1\",\n        \"pagination\": {\n            \"first\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates?page=1\",\n            \"next\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates?page=2\",\n            \"last\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates?page=2\"\n        }\n    }\n}"}],"_postman_id":"5a57d039-ac10-4dc2-8089-fe3ecaa5a215"},{"name":"Contacts","id":"ec70f35b-36cc-4b5e-ae9d-0e597fa39813","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/elects/:id/contacts","description":"<p>Public associé à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","elects",":id","contacts"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"string","value":"500-ans-renaissances","key":"instance"},{"type":"string","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"ec70f35b-36cc-4b5e-ae9d-0e597fa39813"},{"name":"Socials","id":"9684817a-3fcc-4edd-9b45-8e6b4060c651","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/elects/:id/socials","description":"<p>Information(s) sociale(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","elects",":id","socials"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"string","value":"500-ans-renaissances","key":"instance"},{"type":"string","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"9684817a-3fcc-4edd-9b45-8e6b4060c651"},{"name":"Pages","id":"deec8ece-4db4-4e22-b809-6a3342bf7ec4","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/skills","description":"<p>Page(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","skills"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"deec8ece-4db4-4e22-b809-6a3342bf7ec4"},{"name":"🚧 Contributors","id":"ea5f7f97-2c76-420e-9808-3afd0476c2f5","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/contributors","description":"<p>Contributeur(s) / mainteneur(s) de la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","contributors"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"ea5f7f97-2c76-420e-9808-3afd0476c2f5"}],"id":"8d665ec2-b6a4-470c-a778-cec7c696daf2","_postman_id":"8d665ec2-b6a4-470c-a778-cec7c696daf2","description":""},{"name":"Relations","item":[{"name":"🚧 Relations","id":"abba8f5d-b86a-46ec-8b85-2cbfe8d9d830","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/themes","description":"<p>Ressource(s) associée(s) à ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","themes"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"abba8f5d-b86a-46ec-8b85-2cbfe8d9d830"},{"name":"🚧 Facilities","id":"8f4b963f-a0a5-447c-9c04-211bdeb94a64","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/facilities","description":"<p>Équipement(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","facilities"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"8f4b963f-a0a5-447c-9c04-211bdeb94a64"},{"name":"🚧 Cities","id":"9b7841ec-f0f6-4b7e-a4ac-f91da0de94fd","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/cities","description":"<p>Commune(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","cities"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"9b7841ec-f0f6-4b7e-a4ac-f91da0de94fd"},{"name":"🚧 Departments","id":"07d472ba-d8ec-4bca-a8cd-55602bac29a3","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/departments","description":"<p>Départements(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","departments"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"07d472ba-d8ec-4bca-a8cd-55602bac29a3"},{"name":"🚧 Regions","id":"e8911658-9278-4776-a4ac-a7e275f75e4c","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/regions","description":"<p>Région(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","regions"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"e8911658-9278-4776-a4ac-a7e275f75e4c"},{"name":"🚧 News","id":"86f4cfe9-e0a6-4e1e-855b-3c257d798a48","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/news","description":"<p>Actualité(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","news"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"86f4cfe9-e0a6-4e1e-855b-3c257d798a48"},{"name":"✅ Events","id":"ec67c478-d02a-4319-8b2b-2a87b8eb6df5","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/events","description":"<p>Événement(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","events"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"ec67c478-d02a-4319-8b2b-2a87b8eb6df5"},{"name":"🚧 EventGroups","id":"49fd6acb-5b27-4f40-b271-e737beacbfc7","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/event_groups","description":"<p>Groupe(s) d'événement(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","event_groups"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"49fd6acb-5b27-4f40-b271-e737beacbfc7"},{"name":"🚧 Projects","id":"e1be4991-ba1f-4e1f-9cf1-fae3febea56a","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/projects","description":"<p>Projet(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","projects"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"e1be4991-ba1f-4e1f-9cf1-fae3febea56a"},{"name":"🚧 Performers","id":"9b618926-67e1-46b7-bdde-95719b7c36cd","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/performers","description":"<p>Artiste(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","performers"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"9b618926-67e1-46b7-bdde-95719b7c36cd"},{"name":"🚧 Companies","id":"c89dfef9-b3b9-415a-84f7-0fb096c122bb","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/companies","description":"<p>Entreprise(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","companies"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"c89dfef9-b3b9-415a-84f7-0fb096c122bb"},{"name":"🚧 NonProfits","id":"79db4639-aa49-4252-ad02-e48e615beb74","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/non_profits","description":"<p>Associations(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","non_profits"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"79db4639-aa49-4252-ad02-e48e615beb74"},{"name":"🚧 EtablissementPublics","id":"8ef0c3ac-ba3a-46bd-9588-fca19d35f767","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/etablissement_publics","description":"<p>Établissement(s) public(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","etablissement_publics"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"8ef0c3ac-ba3a-46bd-9588-fca19d35f767"},{"name":"🚧 Skills","id":"45d63a18-b2a3-4ae1-9352-68a743f0dd33","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/skills","description":"<p>Compétence(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","skills"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"45d63a18-b2a3-4ae1-9352-68a743f0dd33"},{"name":"🚧 Elects","id":"0e4c5a56-bedd-4ccd-9e49-ce0415705c87","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/elects","description":"<p>Élus(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","elects"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"0e4c5a56-bedd-4ccd-9e49-ce0415705c87"}],"id":"afe514e5-f854-4d7a-ab98-221acab49088","description":"<p>A venir... 🚧</p>\n","event":[{"listen":"prerequest","script":{"id":"487c0f48-a1cd-4aae-af2f-4b62ccf8bb0b","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"4dfafa06-8884-4b36-9c42-31cba1746986","type":"text/javascript","exec":[""]}}],"_postman_id":"afe514e5-f854-4d7a-ab98-221acab49088"},{"name":"Médias","item":[{"name":"🚧 Medias","id":"d01c3030-e9c5-4cbc-8767-e631e9828576","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/medias","description":"<p>Média(s) associé(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","medias"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"d01c3030-e9c5-4cbc-8767-e631e9828576"},{"name":"✅ Images","id":"1ffbb6b2-a996-472e-a55b-fb5720b0c31f","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/images","description":"<p>Image(s) associée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","images"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"1ffbb6b2-a996-472e-a55b-fb5720b0c31f"},{"name":"✅ Documents","id":"e58c93af-d93c-4e87-8971-8c33ff9b4f4f","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/documents","description":"<p>Document(s) associé(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","documents"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"e58c93af-d93c-4e87-8971-8c33ff9b4f4f"}],"id":"0b710147-9de0-4639-b3bb-340c442761f3","_postman_id":"0b710147-9de0-4639-b3bb-340c442761f3","description":""}],"id":"84a8ddc5-c2ae-4125-8345-e9f77b6b1d54","description":"<p>Les événements</p>\n","event":[{"listen":"prerequest","script":{"id":"768578b7-1e5d-45b7-ab56-2a8b856f2061","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"a419bb76-510b-4b2b-bc5d-608de7e9b0d3","type":"text/javascript","exec":[""]}}],"_postman_id":"84a8ddc5-c2ae-4125-8345-e9f77b6b1d54"},{"name":"Autres","item":[{"name":"Thèmes","item":[{"name":"Index","id":"abd8820b-495c-4f0c-9b4f-d7d948b935c2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/themes","urlObject":{"path":["v2","themes"],"host":["https://api.publidata.io"],"query":[],"variable":[]}},"response":[{"id":"d756a116-9c60-4953-bba2-69cd77c78095","name":"Index","originalRequest":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/themes"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Thu, 24 Oct 2019 12:56:41 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"4b763c8fe630d52eb3b03691d4014db5\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"b2d195c3-f8b0-4b92-a3f1-9ed910bf793c"},{"key":"X-Runtime","value":"0.523553"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"AOxM2InXLm\",\n            \"type\": \"theme\",\n            \"attributes\": {\n                \"id\": \"AOxM2InXLm\",\n                \"created_at\": \"2019-08-13T15:22:37Z\",\n                \"updated_at\": \"2019-08-13T15:24:11Z\",\n                \"name\": {\n                    \"fr\": \"Typographie\"\n                }\n            },\n            \"relationships\": {},\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [\n                    \"parents\",\n                    \"children\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"6Wxz8IBMV9\",\n            \"type\": \"theme\",\n            \"attributes\": {\n                \"id\": \"6Wxz8IBMV9\",\n                \"created_at\": \"2019-06-11T14:00:46Z\",\n                \"updated_at\": \"2019-06-11T14:00:47Z\",\n                \"name\": {\n                    \"fr\": \"Tumbling\"\n                }\n            },\n            \"relationships\": {},\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [\n                    \"parents\",\n                    \"children\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"9KVqMI55Vw\",\n            \"type\": \"theme\",\n            \"attributes\": {\n                \"id\": \"9KVqMI55Vw\",\n                \"created_at\": \"2019-06-11T14:00:39Z\",\n                \"updated_at\": \"2019-06-11T14:00:40Z\",\n                \"name\": {\n                    \"fr\": \"Gymnastique artistique\"\n                }\n            },\n            \"relationships\": {},\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [\n                    \"parents\",\n                    \"children\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"jNLaEI6qLE\",\n            \"type\": \"theme\",\n            \"attributes\": {\n                \"id\": \"jNLaEI6qLE\",\n                \"created_at\": \"2019-06-11T14:00:30Z\",\n                \"updated_at\": \"2019-06-11T14:00:31Z\",\n                \"name\": {\n                    \"fr\": \"Gymnastique rythmique\"\n                }\n            },\n            \"relationships\": {},\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [\n                    \"parents\",\n                    \"children\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DjL6qIgzxo\",\n            \"type\": \"theme\",\n            \"attributes\": {\n                \"id\": \"DjL6qIgzxo\",\n                \"created_at\": \"2019-04-02T20:35:01Z\",\n                \"updated_at\": \"2019-10-22T14:17:38Z\",\n                \"name\": {\n                    \"fr\": \"Numérique\"\n                }\n            },\n            \"relationships\": {},\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [\n                    \"parents\",\n                    \"children\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"zQV8qIJQ7O\",\n            \"type\": \"theme\",\n            \"attributes\": {\n                \"id\": \"zQV8qIJQ7O\",\n                \"created_at\": \"2019-04-02T20:35:00Z\",\n                \"updated_at\": \"2019-04-02T21:28:37Z\",\n                \"name\": {\n                    \"fr\": \"Chirurgie dentaire\"\n                }\n            },\n            \"relationships\": {},\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [\n                    \"parents\",\n                    \"children\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"ve7R9IaOVG\",\n            \"type\": \"theme\",\n            \"attributes\": {\n                \"id\": \"ve7R9IaOVG\",\n                \"created_at\": \"2019-04-02T20:35:00Z\",\n                \"updated_at\": \"2019-04-02T21:29:36Z\",\n                \"name\": {\n                    \"fr\": \"Ostéopatie\"\n                }\n            },\n            \"relationships\": {},\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [\n                    \"parents\",\n                    \"children\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"mQLm8I5PxM\",\n            \"type\": \"theme\",\n            \"attributes\": {\n                \"id\": \"mQLm8I5PxM\",\n                \"created_at\": \"2019-04-02T20:35:00Z\",\n                \"updated_at\": \"2019-04-03T10:00:22Z\",\n                \"name\": {\n                    \"fr\": \"Gynécologie\"\n                }\n            },\n            \"relationships\": {},\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [\n                    \"parents\",\n                    \"children\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"Wn7l8I597m\",\n            \"type\": \"theme\",\n            \"attributes\": {\n                \"id\": \"Wn7l8I597m\",\n                \"created_at\": \"2019-04-02T20:35:00Z\",\n                \"updated_at\": \"2019-04-02T20:35:00Z\",\n                \"name\": {\n                    \"fr\": \"Marché de l'art\"\n                }\n            },\n            \"relationships\": {},\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [\n                    \"parents\",\n                    \"children\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"ERL3qIJO7N\",\n            \"type\": \"theme\",\n            \"attributes\": {\n                \"id\": \"ERL3qIJO7N\",\n                \"created_at\": \"2019-04-02T20:35:00Z\",\n                \"updated_at\": \"2019-04-02T20:35:00Z\",\n                \"name\": {\n                    \"fr\": \"Relations internationales\"\n                }\n            },\n            \"relationships\": {},\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [\n                    \"parents\",\n                    \"children\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"wo7NEI4ZVn\",\n            \"type\": \"theme\",\n            \"attributes\": {\n                \"id\": \"wo7NEI4ZVn\",\n                \"created_at\": \"2019-04-02T20:34:59Z\",\n                \"updated_at\": \"2019-04-02T20:35:00Z\",\n                \"name\": {\n                    \"fr\": \"Assurance\"\n                }\n            },\n            \"relationships\": {},\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [\n                    \"parents\",\n                    \"children\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"Kg7WvI4aVq\",\n            \"type\": \"theme\",\n            \"attributes\": {\n                \"id\": \"Kg7WvI4aVq\",\n                \"created_at\": \"2019-04-02T20:34:59Z\",\n                \"updated_at\": \"2019-04-02T20:34:59Z\",\n                \"name\": {\n                    \"fr\": \"Banque\"\n                }\n            },\n            \"relationships\": {},\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [\n                    \"parents\",\n                    \"children\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"a8VObIamLY\",\n            \"type\": \"theme\",\n            \"attributes\": {\n                \"id\": \"a8VObIamLY\",\n                \"created_at\": \"2019-04-02T20:34:59Z\",\n                \"updated_at\": \"2019-04-02T20:34:59Z\",\n                \"name\": {\n                    \"fr\": \"Restauration\"\n                }\n            },\n            \"relationships\": {},\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [\n                    \"parents\",\n                    \"children\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"bpVpqIbY7g\",\n            \"type\": \"theme\",\n            \"attributes\": {\n                \"id\": \"bpVpqIbY7g\",\n                \"created_at\": \"2019-04-02T20:34:59Z\",\n                \"updated_at\": \"2019-05-29T07:23:10Z\",\n                \"name\": {\n                    \"fr\": \"Logistique\"\n                }\n            },\n            \"relationships\": {},\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [\n                    \"parents\",\n                    \"children\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"QP7r8I4ZLk\",\n            \"type\": \"theme\",\n            \"attributes\": {\n                \"id\": \"QP7r8I4ZLk\",\n                \"created_at\": \"2019-04-02T20:34:59Z\",\n                \"updated_at\": \"2019-08-29T16:01:31Z\",\n                \"name\": {\n                    \"fr\": \"Textile\"\n                }\n            },\n            \"relationships\": {},\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [\n                    \"parents\",\n                    \"children\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"G0Ly8IBAxB\",\n            \"type\": \"theme\",\n            \"attributes\": {\n                \"id\": \"G0Ly8IBAxB\",\n                \"created_at\": \"2019-04-02T20:34:58Z\",\n                \"updated_at\": \"2019-10-07T10:10:31Z\",\n                \"name\": {\n                    \"fr\": \"Services aux entreprises\"\n                }\n            },\n            \"relationships\": {},\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [\n                    \"parents\",\n                    \"children\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"M4Ln8I5Y7k\",\n            \"type\": \"theme\",\n            \"attributes\": {\n                \"id\": \"M4Ln8I5Y7k\",\n                \"created_at\": \"2019-04-02T20:34:58Z\",\n                \"updated_at\": \"2019-04-02T20:34:58Z\",\n                \"name\": {\n                    \"fr\": \"Métallurgie\"\n                }\n            },\n            \"relationships\": {},\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [\n                    \"parents\",\n                    \"children\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"O3VPoI1dLE\",\n            \"type\": \"theme\",\n            \"attributes\": {\n                \"id\": \"O3VPoI1dLE\",\n                \"created_at\": \"2019-04-02T20:34:58Z\",\n                \"updated_at\": \"2019-04-02T20:34:58Z\",\n                \"name\": {\n                    \"fr\": \"Machines et équipements\"\n                }\n            },\n            \"relationships\": {},\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [\n                    \"parents\",\n                    \"children\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DaxGdIgJLN\",\n            \"type\": \"theme\",\n            \"attributes\": {\n                \"id\": \"DaxGdIgJLN\",\n                \"created_at\": \"2019-04-02T20:34:58Z\",\n                \"updated_at\": \"2019-04-02T20:34:58Z\",\n                \"name\": {\n                    \"fr\": \"Télécommunication\"\n                }\n            },\n            \"relationships\": {},\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [\n                    \"parents\",\n                    \"children\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"68VZdIEWxd\",\n            \"type\": \"theme\",\n            \"attributes\": {\n                \"id\": \"68VZdIEWxd\",\n                \"created_at\": \"2019-04-02T20:34:58Z\",\n                \"updated_at\": \"2019-04-02T20:34:58Z\",\n                \"name\": {\n                    \"fr\": \"Industrie pharmaceutique\"\n                }\n            },\n            \"relationships\": {},\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [\n                    \"parents\",\n                    \"children\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        }\n    ],\n    \"meta\": {\n        \"items\": 20,\n        \"count\": 732,\n        \"page\": 1\n    },\n    \"links\": {\n        \"self\": \"https://www.publidata.io/api/v2/themes?page=1\",\n        \"pagination\": {\n            \"first\": \"https://www.publidata.io/api/v2/themes?page=1\",\n            \"next\": \"https://www.publidata.io/api/v2/themes?page=2\",\n            \"last\": \"https://www.publidata.io/api/v2/themes?page=37\"\n        }\n    }\n}"}],"_postman_id":"abd8820b-495c-4f0c-9b4f-d7d948b935c2"},{"name":"Show","id":"515038fd-8171-4535-901b-f86dbe15575a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/themes/AOxM2InXLm","urlObject":{"path":["v2","themes","AOxM2InXLm"],"host":["https://api.publidata.io"],"query":[],"variable":[]}},"response":[{"id":"366d42dd-0f85-4aef-9141-27c4db9fa13a","name":"Show","originalRequest":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/themes/AOxM2InXLm"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Thu, 24 Oct 2019 13:54:04 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"1d327443e909a5cb7efea37255e18e03\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"95d83625-c85e-4565-b349-f671e84776c8"},{"key":"X-Runtime","value":"0.086538"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"AOxM2InXLm\",\n        \"type\": \"theme\",\n        \"attributes\": {\n            \"id\": \"AOxM2InXLm\",\n            \"created_at\": \"2019-08-13T15:22:37Z\",\n            \"updated_at\": \"2019-08-13T15:24:11Z\",\n            \"name\": {\n                \"fr\": \"Typographie\"\n            }\n        },\n        \"relationships\": {},\n        \"meta\": {\n            \"included\": [],\n            \"includable\": [\n                \"parents\",\n                \"children\"\n            ],\n            \"licenses\": [\n                {\n                    \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                    \"SPDX\": \"ODbL-1.0\",\n                    \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                    \"targets\": [\n                        \"name\"\n                    ]\n                }\n            ]\n        }\n    }\n}"}],"_postman_id":"515038fd-8171-4535-901b-f86dbe15575a"}],"id":"7174dd4e-73ff-4610-b636-7ebb6d8c9514","_postman_id":"7174dd4e-73ff-4610-b636-7ebb6d8c9514","description":""},{"name":"Types d'événements","item":[{"name":"Index","id":"a63b34a9-16c2-4c93-b136-aec22770bc11","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/event_types","urlObject":{"path":["v2","event_types"],"host":["https://api.publidata.io"],"query":[],"variable":[]}},"response":[{"id":"7ebc1f79-19b9-4871-bc8b-9dd40d1a6fff","name":"Index","originalRequest":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/event_types"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Thu, 24 Oct 2019 13:54:41 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"876371e2849e642c93e0ac4d5ae9db8f\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"3362e166-f365-4504-bac6-79c2f41348f1"},{"key":"X-Runtime","value":"0.617059"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"bpVp5cOB7g\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"bpVp5cOB7g\",\n                \"created_at\": \"2019-09-25T12:22:03Z\",\n                \"updated_at\": \"2019-09-25T12:29:54Z\",\n                \"name\": {\n                    \"fr\": \"Opéra\"\n                }\n            },\n            \"relationships\": {},\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [\n                    \"parents\",\n                    \"children\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"QP7r5calVk\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"QP7r5calVk\",\n                \"created_at\": \"2019-08-14T08:40:10Z\",\n                \"updated_at\": \"2019-08-14T08:40:33Z\",\n                \"name\": {\n                    \"fr\": \"Open petit déjeuner\"\n                }\n            },\n            \"relationships\": {},\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [\n                    \"parents\",\n                    \"children\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"G0LyMcN5LB\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"G0LyMcN5LB\",\n                \"created_at\": \"2019-08-13T15:08:31Z\",\n                \"updated_at\": \"2019-08-13T15:08:40Z\",\n                \"name\": {\n                    \"fr\": \"Dîner\"\n                }\n            },\n            \"relationships\": {},\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [\n                    \"parents\",\n                    \"children\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"M4Ln0cwm7k\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"M4Ln0cwm7k\",\n                \"created_at\": \"2019-08-13T15:07:55Z\",\n                \"updated_at\": \"2019-08-13T15:08:05Z\",\n                \"name\": {\n                    \"fr\": \"Déjeuner\"\n                }\n            },\n            \"relationships\": {},\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [\n                    \"parents\",\n                    \"children\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"O3VPYcAp7E\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"O3VPYcAp7E\",\n                \"created_at\": \"2019-08-13T15:01:45Z\",\n                \"updated_at\": \"2019-08-14T08:40:23Z\",\n                \"name\": {\n                    \"fr\": \"Petit déjeuner\"\n                }\n            },\n            \"relationships\": {},\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [\n                    \"parents\",\n                    \"children\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DaxGJclb7N\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"DaxGJclb7N\",\n                \"created_at\": \"2019-04-02T20:35:02Z\",\n                \"updated_at\": \"2019-04-02T20:35:02Z\",\n                \"name\": {\n                    \"fr\": \"Braderie\"\n                }\n            },\n            \"relationships\": {},\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [\n                    \"parents\",\n                    \"children\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"68VZkcj97d\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"68VZkcj97d\",\n                \"created_at\": \"2019-04-02T20:35:02Z\",\n                \"updated_at\": \"2019-04-02T20:35:02Z\",\n                \"name\": {\n                    \"fr\": \"Parcours\"\n                }\n            },\n            \"relationships\": {},\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [\n                    \"parents\",\n                    \"children\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"1eVg5cwrxo\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"1eVg5cwrxo\",\n                \"created_at\": \"2019-04-02T20:35:02Z\",\n                \"updated_at\": \"2019-04-02T20:35:02Z\",\n                \"name\": {\n                    \"fr\": \"Circuit\"\n                }\n            },\n            \"relationships\": {},\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [\n                    \"parents\",\n                    \"children\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"4E79DcymVM\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"4E79DcymVM\",\n                \"created_at\": \"2019-03-25T02:24:44Z\",\n                \"updated_at\": \"2019-03-25T02:24:44Z\",\n                \"name\": {\n                    \"fr\": \"Réception / banquet\"\n                }\n            },\n            \"relationships\": {},\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [\n                    \"parents\",\n                    \"children\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"GYVYjcJk7D\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"GYVYjcJk7D\",\n                \"created_at\": \"2019-03-25T02:24:44Z\",\n                \"updated_at\": \"2019-03-25T02:24:44Z\",\n                \"name\": {\n                    \"fr\": \"Séminaire\"\n                }\n            },\n            \"relationships\": {},\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [\n                    \"parents\",\n                    \"children\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"K87o5c0lLQ\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"K87o5c0lLQ\",\n                \"created_at\": \"2019-03-25T02:24:44Z\",\n                \"updated_at\": \"2019-03-25T02:24:44Z\",\n                \"name\": {\n                    \"fr\": \"Congrès\"\n                }\n            },\n            \"relationships\": {},\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [\n                    \"parents\",\n                    \"children\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"OgLb9ceKxJ\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"OgLb9ceKxJ\",\n                \"created_at\": \"2019-03-25T02:24:44Z\",\n                \"updated_at\": \"2019-03-25T02:24:44Z\",\n                \"name\": {\n                    \"fr\": \"Spa\"\n                }\n            },\n            \"relationships\": {},\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [\n                    \"parents\",\n                    \"children\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"wo7EXczKV5\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"wo7EXczKV5\",\n                \"created_at\": \"2019-03-25T02:24:44Z\",\n                \"updated_at\": \"2019-03-25T02:24:44Z\",\n                \"name\": {\n                    \"fr\": \"Solarium\"\n                }\n            },\n            \"relationships\": {},\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [\n                    \"parents\",\n                    \"children\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"aB72vck07O\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"aB72vck07O\",\n                \"created_at\": \"2019-03-25T02:24:43Z\",\n                \"updated_at\": \"2019-03-25T02:24:44Z\",\n                \"name\": {\n                    \"fr\": \"Jacuzzi\"\n                }\n            },\n            \"relationships\": {},\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [\n                    \"parents\",\n                    \"children\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"gy7KKcg07v\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"gy7KKcg07v\",\n                \"created_at\": \"2019-03-25T02:24:43Z\",\n                \"updated_at\": \"2019-03-25T02:24:43Z\",\n                \"name\": {\n                    \"fr\": \"Hammam\"\n                }\n            },\n            \"relationships\": {},\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [\n                    \"parents\",\n                    \"children\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"Ad7DAcgwxB\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"Ad7DAcgwxB\",\n                \"created_at\": \"2019-03-25T02:24:43Z\",\n                \"updated_at\": \"2019-03-25T02:24:43Z\",\n                \"name\": {\n                    \"fr\": \"Massage\"\n                }\n            },\n            \"relationships\": {},\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [\n                    \"parents\",\n                    \"children\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"0DLk5ceM7a\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"0DLk5ceM7a\",\n                \"created_at\": \"2019-03-25T02:24:43Z\",\n                \"updated_at\": \"2019-03-25T02:24:43Z\",\n                \"name\": {\n                    \"fr\": \"Soins thérapeutiques\"\n                }\n            },\n            \"relationships\": {},\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [\n                    \"parents\",\n                    \"children\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"QG7jecZXVg\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"QG7jecZXVg\",\n                \"created_at\": \"2019-03-25T02:24:43Z\",\n                \"updated_at\": \"2019-03-25T02:24:43Z\",\n                \"name\": {\n                    \"fr\": \"Soins esthétiques\"\n                }\n            },\n            \"relationships\": {},\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [\n                    \"parents\",\n                    \"children\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"yjVJDcrmxR\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"yjVJDcrmxR\",\n                \"created_at\": \"2019-03-25T02:24:43Z\",\n                \"updated_at\": \"2019-03-25T02:24:43Z\",\n                \"name\": {\n                    \"fr\": \"Soins\"\n                }\n            },\n            \"relationships\": {},\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [\n                    \"parents\",\n                    \"children\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"QJ7dZczBLB\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"QJ7dZczBLB\",\n                \"created_at\": \"2019-03-25T02:24:43Z\",\n                \"updated_at\": \"2019-03-25T02:24:43Z\",\n                \"name\": {\n                    \"fr\": \"Balnéothérapie\"\n                }\n            },\n            \"relationships\": {},\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [\n                    \"parents\",\n                    \"children\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        }\n    ],\n    \"meta\": {\n        \"items\": 20,\n        \"count\": 303,\n        \"page\": 1\n    },\n    \"links\": {\n        \"self\": \"https://www.publidata.io/api/v2/event_types?page=1\",\n        \"pagination\": {\n            \"first\": \"https://www.publidata.io/api/v2/event_types?page=1\",\n            \"next\": \"https://www.publidata.io/api/v2/event_types?page=2\",\n            \"last\": \"https://www.publidata.io/api/v2/event_types?page=16\"\n        }\n    }\n}"}],"_postman_id":"a63b34a9-16c2-4c93-b136-aec22770bc11"},{"name":"Show","id":"634855ac-82bf-4bc9-b4da-92defed82c67","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/event_types/bpVp5cOB7g","urlObject":{"path":["v2","event_types","bpVp5cOB7g"],"host":["https://api.publidata.io"],"query":[],"variable":[]}},"response":[{"id":"65ad490a-90ef-4d15-95e8-2247696b3415","name":"Show","originalRequest":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/event_types/bpVp5cOB7g"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Thu, 24 Oct 2019 13:54:52 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"4038895635ff34a9b87fa25e225350e7\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"4d70eba4-b9b7-4de5-a627-a30178958ca2"},{"key":"X-Runtime","value":"0.081827"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"bpVp5cOB7g\",\n        \"type\": \"type\",\n        \"attributes\": {\n            \"id\": \"bpVp5cOB7g\",\n            \"created_at\": \"2019-09-25T12:22:03Z\",\n            \"updated_at\": \"2019-09-25T12:29:54Z\",\n            \"name\": {\n                \"fr\": \"Opéra\"\n            }\n        },\n        \"relationships\": {},\n        \"meta\": {\n            \"included\": [],\n            \"includable\": [\n                \"parents\",\n                \"children\"\n            ],\n            \"licenses\": [\n                {\n                    \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                    \"SPDX\": \"ODbL-1.0\",\n                    \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                    \"targets\": [\n                        \"name\"\n                    ]\n                }\n            ]\n        }\n    }\n}"}],"_postman_id":"634855ac-82bf-4bc9-b4da-92defed82c67"}],"id":"2706298c-bf53-496f-8964-95e5da955ebd","_postman_id":"2706298c-bf53-496f-8964-95e5da955ebd","description":""},{"name":"Types d'équipements","item":[{"name":"Index","id":"27b348fd-a163-459d-a4b3-fd94ed5abf59","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/facility_types","urlObject":{"path":["v2","facility_types"],"host":["https://api.publidata.io"],"query":[],"variable":[]}},"response":[{"id":"9e678a24-685e-4ba6-a44c-4849b3f61388","name":"Index","originalRequest":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/facility_types"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Thu, 24 Oct 2019 13:55:20 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"3a742516cb9955b06f9f527168e8985a\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"b6138072-f29d-4afc-87fd-30172bd1a815"},{"key":"X-Runtime","value":"0.764986"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"M4LnyS99xk\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"M4LnyS99xk\",\n                \"created_at\": \"2019-10-07T13:18:42Z\",\n                \"updated_at\": \"2019-10-17T14:29:08Z\",\n                \"name\": {\n                    \"fr\": \"Centre hospitalier régional universitaire (CHRU)\"\n                }\n            },\n            \"relationships\": {},\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [\n                    \"parents\",\n                    \"children\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"O3VPRSYBxE\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"O3VPRSYBxE\",\n                \"created_at\": \"2019-10-07T13:18:42Z\",\n                \"updated_at\": \"2019-10-07T13:18:42Z\",\n                \"name\": {\n                    \"fr\": \"Centre hospitalier régional (CHR)\"\n                }\n            },\n            \"relationships\": {},\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [\n                    \"parents\",\n                    \"children\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DaxG4SRpLN\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"DaxG4SRpLN\",\n                \"created_at\": \"2019-10-07T13:18:41Z\",\n                \"updated_at\": \"2019-10-07T13:18:42Z\",\n                \"name\": {\n                    \"fr\": \"Établissement de santé\"\n                }\n            },\n            \"relationships\": {},\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [\n                    \"parents\",\n                    \"children\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"68VZvS41Vd\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"68VZvS41Vd\",\n                \"created_at\": \"2019-10-07T13:18:41Z\",\n                \"updated_at\": \"2019-10-07T13:18:41Z\",\n                \"name\": {\n                    \"fr\": \"Maison de retraite\"\n                }\n            },\n            \"relationships\": {},\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [\n                    \"parents\",\n                    \"children\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"1eVgYSMwxo\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"1eVgYSMwxo\",\n                \"created_at\": \"2019-10-07T13:18:41Z\",\n                \"updated_at\": \"2019-10-07T13:18:41Z\",\n                \"name\": {\n                    \"fr\": \"Maison de santé\"\n                }\n            },\n            \"relationships\": {},\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [\n                    \"parents\",\n                    \"children\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"Wn7lnSKXLm\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"Wn7lnSKXLm\",\n                \"created_at\": \"2019-10-04T15:31:47Z\",\n                \"updated_at\": \"2019-10-04T15:31:47Z\",\n                \"name\": {\n                    \"fr\": \"Point d'apport volontaire végétaux\"\n                }\n            },\n            \"relationships\": {},\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [\n                    \"parents\",\n                    \"children\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"ERL32SOzxN\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"ERL32SOzxN\",\n                \"created_at\": \"2019-10-04T15:31:10Z\",\n                \"updated_at\": \"2019-10-04T15:31:10Z\",\n                \"name\": {\n                    \"fr\": \"Point d'apport volontaire sapin\"\n                }\n            },\n            \"relationships\": {},\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [\n                    \"parents\",\n                    \"children\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"wo7NqSp4Vn\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"wo7NqSp4Vn\",\n                \"created_at\": \"2019-09-29T21:26:26Z\",\n                \"updated_at\": \"2019-10-18T16:39:54Z\",\n                \"name\": {\n                    \"fr\": \"Résidence services\"\n                }\n            },\n            \"relationships\": {},\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [\n                    \"parents\",\n                    \"children\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"Kg7WRSy0Vq\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"Kg7WRSy0Vq\",\n                \"created_at\": \"2019-09-29T21:26:25Z\",\n                \"updated_at\": \"2019-10-18T16:39:51Z\",\n                \"name\": {\n                    \"fr\": \"Résidence autonomie\"\n                }\n            },\n            \"relationships\": {},\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [\n                    \"parents\",\n                    \"children\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"a8VO4SBQ7Y\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"a8VO4SBQ7Y\",\n                \"created_at\": \"2019-09-29T21:26:24Z\",\n                \"updated_at\": \"2019-10-18T16:39:42Z\",\n                \"name\": {\n                    \"fr\": \"Résidence intergénérationnelle\"\n                }\n            },\n            \"relationships\": {},\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [\n                    \"parents\",\n                    \"children\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"bpVprSNoxg\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"bpVprSNoxg\",\n                \"created_at\": \"2019-09-29T21:26:24Z\",\n                \"updated_at\": \"2019-09-29T21:26:24Z\",\n                \"name\": {\n                    \"fr\": \"Maison d’accueil rural pour les personnes âgées (MARPA)\"\n                }\n            },\n            \"relationships\": {},\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [\n                    \"parents\",\n                    \"children\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"QP7rzSXp7k\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"QP7rzSXp7k\",\n                \"created_at\": \"2019-09-29T21:26:23Z\",\n                \"updated_at\": \"2019-10-18T16:39:54Z\",\n                \"name\": {\n                    \"fr\": \"Établissement d’hébergement pour personnes âgées dépendantes (EHPAD)\"\n                }\n            },\n            \"relationships\": {},\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [\n                    \"parents\",\n                    \"children\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"G0LynS3WVB\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"G0LynS3WVB\",\n                \"created_at\": \"2019-09-29T21:26:22Z\",\n                \"updated_at\": \"2019-10-18T16:39:45Z\",\n                \"name\": {\n                    \"fr\": \"Logement social adapté\"\n                }\n            },\n            \"relationships\": {},\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [\n                    \"parents\",\n                    \"children\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"M4LnySW9xk\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"M4LnySW9xk\",\n                \"created_at\": \"2019-09-29T21:26:22Z\",\n                \"updated_at\": \"2019-10-18T16:39:55Z\",\n                \"name\": {\n                    \"fr\": \"Foyer d'accueil médicalisé (FAM)\"\n                }\n            },\n            \"relationships\": {},\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [\n                    \"parents\",\n                    \"children\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"O3VPRSBBxE\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"O3VPRSBBxE\",\n                \"created_at\": \"2019-09-29T21:26:21Z\",\n                \"updated_at\": \"2019-10-18T16:39:55Z\",\n                \"name\": {\n                    \"fr\": \"Résidence privée\"\n                }\n            },\n            \"relationships\": {},\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [\n                    \"parents\",\n                    \"children\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DaxG4SdpLN\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"DaxG4SdpLN\",\n                \"created_at\": \"2019-08-27T08:28:05Z\",\n                \"updated_at\": \"2019-08-27T08:50:52Z\",\n                \"name\": {\n                    \"fr\": \"Maison d'assistant-e-s maternel-le-s (MAM)\"\n                }\n            },\n            \"relationships\": {},\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [\n                    \"parents\",\n                    \"children\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"mQLmnSgJVM\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"mQLmnSgJVM\",\n                \"created_at\": \"2019-08-08T13:23:16Z\",\n                \"updated_at\": \"2019-10-22T14:38:30Z\",\n                \"name\": {\n                    \"fr\": \"Tremplin d'entreprises\"\n                }\n            },\n            \"relationships\": {},\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [\n                    \"parents\",\n                    \"children\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"Wn7lnSaXLm\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"Wn7lnSaXLm\",\n                \"created_at\": \"2019-07-18T09:54:26Z\",\n                \"updated_at\": \"2019-07-18T09:54:26Z\",\n                \"name\": {\n                    \"en\": \"Elementary school\",\n                    \"fr\": \"École élémentaire\"\n                }\n            },\n            \"relationships\": {},\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [\n                    \"parents\",\n                    \"children\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"ERL32S9zxN\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"ERL32S9zxN\",\n                \"created_at\": \"2019-06-24T13:22:25Z\",\n                \"updated_at\": \"2019-06-24T13:33:27Z\",\n                \"name\": {\n                    \"fr\": \"Parking en ouvrage\"\n                }\n            },\n            \"relationships\": {},\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [\n                    \"parents\",\n                    \"children\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"wo7NqSZ4Vn\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"wo7NqSZ4Vn\",\n                \"created_at\": \"2019-05-16T16:20:23Z\",\n                \"updated_at\": \"2019-09-27T13:59:37Z\",\n                \"name\": {\n                    \"fr\": \"Point d'apport volontaire biodéchet\"\n                }\n            },\n            \"relationships\": {},\n            \"meta\": {\n                \"included\": [],\n                \"includable\": [\n                    \"parents\",\n                    \"children\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        }\n    ],\n    \"meta\": {\n        \"items\": 20,\n        \"count\": 419,\n        \"page\": 1\n    },\n    \"links\": {\n        \"self\": \"https://www.publidata.io/api/v2/facility_types?page=1\",\n        \"pagination\": {\n            \"first\": \"https://www.publidata.io/api/v2/facility_types?page=1\",\n            \"next\": \"https://www.publidata.io/api/v2/facility_types?page=2\",\n            \"last\": \"https://www.publidata.io/api/v2/facility_types?page=21\"\n        }\n    }\n}"}],"_postman_id":"27b348fd-a163-459d-a4b3-fd94ed5abf59"},{"name":"Show","id":"05ec128b-b9d9-4d9a-a18e-6aca44f3610a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/facility_types/M4LnyS99xk","urlObject":{"path":["v2","facility_types","M4LnyS99xk"],"host":["https://api.publidata.io"],"query":[],"variable":[]}},"response":[{"id":"309ab98f-89bc-4b92-abdd-fd14420edffc","name":"Show","originalRequest":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/facility_types/M4LnyS99xk"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Thu, 24 Oct 2019 13:55:25 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"b51c93055c6ec585eae328f8503de18c\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"acd87460-0867-4af7-aae1-ef3eff6f6d14"},{"key":"X-Runtime","value":"0.094577"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"M4LnyS99xk\",\n        \"type\": \"type\",\n        \"attributes\": {\n            \"id\": \"M4LnyS99xk\",\n            \"created_at\": \"2019-10-07T13:18:42Z\",\n            \"updated_at\": \"2019-10-17T14:29:08Z\",\n            \"name\": {\n                \"fr\": \"Centre hospitalier régional universitaire (CHRU)\"\n            }\n        },\n        \"relationships\": {},\n        \"meta\": {\n            \"included\": [],\n            \"includable\": [\n                \"parents\",\n                \"children\"\n            ],\n            \"licenses\": [\n                {\n                    \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                    \"SPDX\": \"ODbL-1.0\",\n                    \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                    \"targets\": [\n                        \"name\"\n                    ]\n                }\n            ]\n        }\n    }\n}"}],"_postman_id":"05ec128b-b9d9-4d9a-a18e-6aca44f3610a"}],"id":"6334bef7-7fa8-4fc8-8711-102c85cf9e31","_postman_id":"6334bef7-7fa8-4fc8-8711-102c85cf9e31","description":""},{"name":"🚧 Médias","item":[{"name":"Endpoints principaux","item":[{"name":"✅ Index","id":"2a2124c8-8d21-4c1a-8fe0-f3ec2c139b8b","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events","description":"<p>Liste des événements</p>\n","urlObject":{"path":["v2",":instance","events"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"}]}},"response":[{"id":"2b4b47af-8a0a-422b-80e0-a87c04877834","name":"✅ Index","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.publidata.io/v2/:instance/events","host":["https://api.publidata.io"],"path":["v2",":instance","events"],"variable":[{"key":"instance","value":"500-ans-renaissances"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Tue, 06 Nov 2018 14:35:32 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"e272b80759b3239cb223ac313ead9d8a\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"ef157796-c377-4ab4-b340-25fe123f51d3"},{"key":"X-Runtime","value":"0.211831"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"J7dASjXPxB\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"J7dASjXPxB\",\n                \"created_at\": \"2018-11-02T13:36:24Z\",\n                \"updated_at\": \"2018-11-06T14:11:43Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {\n                    \"fr\": \"La 28e édition du Festival International des Jardins abordera un thème cher à la Renaissance.\"\n                },\n                \"name\": {\n                    \"fr\": \"Festival International des Jardins de Chaumont-sur-Loire\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"medium-insert-active\\\"><br></p>\"\n                },\n                \"start_at\": \"2019-04-25T10:00:00Z\",\n                \"end_at\": \"2019-11-03T19:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"y7KpS6Dgxv\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"y7KpS6Dgxv\",\n                \"created_at\": \"2018-10-31T11:26:32Z\",\n                \"updated_at\": \"2018-11-06T10:56:29Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {\n                    \"fr\": \"62eme Colloque International d'études humanistes du centre d'études supérieures de la Renaissance\"\n                },\n                \"name\": {\n                    \"fr\": \"Léonard de Vinci création et innovations \"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"is-active\\\">Le 62ème colloque international d’études humanistes du Centre d’études supérieures de la Renaissance de Tours sera consacré à Léonard de Vinci en 2019.&nbsp;</p><p class=\\\"is-active\\\">Cet événement rassemblera les plus grands spécialistes internationaux du sujet et proposera d’aborder toutes les facettes de l’oeuvre de Léonard sous le prisme de l’invention et de l’innovation : mécanique, médecine, architecture, biomimétisme, etc. Une partie de ce colloque se tiendra dans des lieux marqués par la figure de Léonard de Vinci : le Château du Clos Lucé à Amboise et le Château de Chambord.</p>\"\n                },\n                \"start_at\": \"2019-06-01T00:00:00Z\",\n                \"end_at\": \"2019-06-30T00:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"G7j3SNKzxg\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"G7j3SNKzxg\",\n                \"created_at\": \"2018-10-31T09:20:00Z\",\n                \"updated_at\": \"2018-11-06T10:56:29Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {},\n                \"name\": {\n                    \"fr\": \"Les Borgia à Chinon\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"\\\">La Forteresse royale de Chinon, proposera une reconstitution historique de la venue de César Borgia, fils du pape Alexandre VI pour rencontrer le roi de France à Chinon en 1498 . Reconstitution (cortège équestre). Démonstrations de Calcio Storico (sport florentin de la Renaissance, ancêtre du football actuel…). Dégustations de mets et recettes de la Renaissance florentine. Danses et musiques Renaissance.<br></p>\"\n                },\n                \"start_at\": \"2019-07-21T00:00:00Z\",\n                \"end_at\": \"2019-07-21T00:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"jVJbSWMWVR\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"jVJbSWMWVR\",\n                \"created_at\": \"2018-10-31T08:54:32Z\",\n                \"updated_at\": \"2018-11-06T10:56:28Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {},\n                \"name\": {\n                    \"fr\": \"La renaissance en Val de Loire, en France et en Europe - Festival du film français renaissance\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p>Pour la 21ème édition des Rendez- vous de l’Histoire, le Centre d’Études Supérieures de la Renaissance sera fortement impliqué dans une programmation spécifique « La Renaissance en Val de Loire, en France et en Europe ». Dans le cadre du festival du film français « Renaissance », seront projetés des films historiques accompagnés de moments de réflexion (débats, conférences et ateliers) mettant en perspective la création cinématographique au regard de l’histoire de la peinture historiciste.<br></p>\"\n                },\n                \"start_at\": \"2019-10-01T00:00:00Z\",\n                \"end_at\": \"2019-10-31T00:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"J7dASjXwxB\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"J7dASjXwxB\",\n                \"created_at\": \"2018-10-31T08:42:55Z\",\n                \"updated_at\": \"2018-11-06T10:56:28Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {\n                    \"fr\": \"Parcours numérique, sonore et interactif\"\n                },\n                \"name\": {\n                    \"fr\": \"Renaissance comme Rabelais\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<h3>Parcours numérique, sonore et interactif combinant des moyens techniques innovants capables d’allier  géographie littéraire et géographie réelle. Création d’un parcours sonore géolocalisé à partir d’une application mobile entre La Devinière, maison natale de Rabelais, et l’Abbaye de Seuilly.<br></h3>\"\n                },\n                \"start_at\": \"2019-07-01T00:00:00Z\",\n                \"end_at\": \"2019-10-31T00:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"DVAWS3NQxX\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"DVAWS3NQxX\",\n                \"created_at\": \"2018-10-31T08:34:25Z\",\n                \"updated_at\": \"2018-11-06T10:56:28Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {},\n                \"name\": {\n                    \"fr\": \"Spectacle numérique itinérant Renaissance(S)\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p>Ce spectacle numérique invite le public à s’immerger par le biais des dernières technologies dans un environnement visuel et sonore en plusieurs dimensions. Diverses technologies, de réalité augmentée ou de réalité virtuelle peuvent être détournées par le biais d’une immersion sensori-motrice grâce à une ou plusieurs interfaces visuelles. Ce spectacle proposera une narration dans l’esprit humaniste et novateur de la Renaissance.</p><p>Il évoquera les dimensions créatives, anticipatrices, pluridisciplinaires de Léonard de Vinci, les acteurs, oeuvres, sites patrimoniaux et culturels majeurs du territoire à la Renaissance, le Centre-Val de Loire aujourd’hui et sa projection dans le futur.</p>\"\n                },\n                \"start_at\": \"2019-08-15T19:00:00Z\",\n                \"end_at\": \"2019-09-15T23:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"8VvZS1y0Vv\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"8VvZS1y0Vv\",\n                \"created_at\": \"2018-10-31T08:29:42Z\",\n                \"updated_at\": \"2018-11-06T10:56:28Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {},\n                \"name\": {\n                    \"fr\": \"Magnificences à la cour de France\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"is-active\\\">Ce spectacle de l’ensemble Doulce Mémoire, recrée l’univers d’une fête à la cour de François I<sup>er</sup>, autour de 1515, celles qui virent l’arrivée en France de Léonard de Vinci à l’invitation du roi français. Peintre, inventeur de génie, Léonard était aussi organisateur de fêtes fameuses, dont l’inventivité et la puissance créatrice étaient appréciées les puissants.<br></p>\"\n                },\n                \"start_at\": \"2019-07-23T19:00:00Z\",\n                \"end_at\": \"2019-07-23T23:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"NLwlSvmaVD\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"NLwlSvmaVD\",\n                \"created_at\": \"2018-10-30T16:51:07Z\",\n                \"updated_at\": \"2018-11-06T10:56:27Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {\n                    \"fr\": \"Exposition regroupant des artistes contemporains influencés par Léonard de Vinci et la Renaissance.\"\n                },\n                \"name\": {\n                    \"fr\": \"Hommage contemporain à la Renaissance\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"is-active\\\">Exposition d’artistes contemporains ayant été influencés par Léonard de Vinci et la Renaissance, sur l’exemple de Fabien Merelle, établi à Tours et travaillant sur la scène internationale.&nbsp;</p><p class=\\\"is-active\\\">L’exposition « Hommage à Léonard » transpose dans l’art contemporain l’héritage du maître du Cinquecento mort en Val de Loire il y a 500 ans. Vaste cabinet de curiosités, l’exposition présentée dans les salles historiques du château fait écho au système de pensée&nbsp;<span style=\\\"font-size: 1em; font-family: ProximaNova, Helvetica, Arial, &quot;Sans Serif&quot;;\\\">du Maitre, génie polyvalent où la réalisation ne constitue pas la fin mais le moyen de la réflexion. Conçue comme une sorte de « mise en curiosité » envers les différents apports de Léonard, homme d’esprit universel à l’histoire des arts en Europe, interprétés ou prolongés par différents artistes de notre temps travaillant sur la scène internationale ; l’exposition montre aussi que les échanges entre Italie et France vers 1500, l’italianisme dans les&nbsp;</span><span style=\\\"font-size: 1em; font-family: ProximaNova, Helvetica, Arial, &quot;Sans Serif&quot;;\\\">arts amorcé sous Charles VIII et Louis XII se perpétuent de nos jours, avec les travaux des artistes florentines Antonella Bussanich, Alessandra Capodacqua et Alessandra Ragionier. Comme dans les chapitres d’un livre, chaque salle illustre l’un des thèmes étudiés par Léonard. L’autoportrait / Le portrait / La peinture d’histoire /&nbsp;</span><span style=\\\"font-size: 1em; font-family: ProximaNova, Helvetica, Arial, &quot;Sans Serif&quot;;\\\">Le Paysage / Le codex / La nature morte / Le Portrait féminin / Le Drapé.</span></p>\"\n                },\n                \"start_at\": \"2019-04-01T10:00:00Z\",\n                \"end_at\": \"2019-11-30T18:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"8VOeS416xY\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"8VOeS416xY\",\n                \"created_at\": \"2018-10-29T16:47:42Z\",\n                \"updated_at\": \"2018-11-06T10:56:30Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {\n                    \"fr\": \"Dans le cadre de l'anniversaire des 500ans de la Renaissance, l'artiste Ravo revisite l'oeuvre de François-Guillaume Ménageot \\\"La mort de Léonard de Vinci\\\"\"\n                },\n                \"name\": {\n                    \"fr\": \"Ravo Mattoni invité du Château Royal d' Amboise\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"\\\">Andrea Mattoni alias <b>RAVO</b>, artiste-graffeur italien de son état, a débuté en 2016 un ambitieux projet visant à reproduire, in situ et en très grand format, des chefs-d’œuvre de la peinture classique signés du Caravage, de Delacroix, de Delatour… Profondeur des couleurs, puissance des lignes et de l’échelle, l’hommage de RAVO aux grands maîtres est d’une modernité réjouissante… Le résultat est bluffant.</p><p class=\\\"\\\">De manière à prolonger l’exposition « La Mort de Léonard de Vinci : la construction d’un mythe » préparée avec la BNF, le château royal d’Amboise a demandé à RAVO de réaliser 5 toiles de grandes dimensions (4.5m X 3m). Celles-ci prendront pour sujet des détails du monumental tableau de François-Guillaume Ménageot « La Mort de Léonard de Vinci », et trouveront place sur les murs de la tour cavalière des Minimes, du 2 mai au 2 septembre 2019. Pour honorer cette commande, l’artiste sera en résidence au château royal d’Amboise durant une dizaine de jours, en avril 2019. Il réalisera ses peintures en public.</p><p class=\\\"\\\">Cette exposition est organisée avec le concours de l’association des Ateliers de l’Etoile.</p><p class=\\\"\\\"><span style=\\\"font-size: 1em; font-family: ProximaNova, Helvetica, Arial, &quot;Sans Serif&quot;;\\\"><b>\\\"Exposition « La Mort de Léonard de Vinci : la construction d’un mythe » - Partenariat BNF (Bibliothèque Nationale de France)</b></span><br></p><p class=\\\"\\\">Tous les jours, du 2 mai au 2 septembre 2019.</p><p class=\\\"\\\">La grande exposition intitulée « La Mort de Léonard de Vinci : la construction d’un mythe », articulée autour du monumental tableau (280 cm X 357 cm) de François-Guillaume Ménageot La mort de Léonard de Vinci, et d’une collection de gravures issues des collections nationales, nous éclairera sur la manière dont les contours de l’amitié entre le roi François Ier et Léonard ont été progressivement réécrits par l’Histoire, et assimilés par elle jusqu’à la construction d’un mythe mis au service de l’image de la monarchie française au XVIII<sup>ème</sup> siècle.</p><p>Au cœur de la riche programmation des célébrations du 5ème centenaire, cette exposition majeure viendra aussi rappeler à un public venu des quatre coins du monde la place éternelle qu’occupe Léonard de Vinci en Val de Loire, et à Amboise en particulier où il repose pour l’éternité dans la quiétude de la chapelle du château.\\\"</p>\"\n                },\n                \"start_at\": \"2019-05-02T09:00:00Z\",\n                \"end_at\": \"2019-09-02T18:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"items\": 9,\n        \"count\": 9,\n        \"page\": 1\n    },\n    \"links\": {\n        \"self\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events?page=1\",\n        \"pagination\": {\n            \"first\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events?page=1\",\n            \"last\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events?page=1\"\n        }\n    }\n}"}],"_postman_id":"2a2124c8-8d21-4c1a-8fe0-f3ec2c139b8b"},{"name":"✅ Show","id":"cd6b9640-cc3c-4344-b6e4-77c33dfd3d8d","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/{{instance_id}}/events/:id","description":"<p>Détail d'un événement</p>\n","urlObject":{"path":["v2","{{instance_id}}","events",":id"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[{"id":"77ee9f05-10fc-497d-a29b-c0721f847ec2","name":"✅ Show","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.publidata.io/v2/{{instance_id}}/events/:id","host":["https://api.publidata.io"],"path":["v2","{{instance_id}}","events",":id"],"variable":[{"key":"id","value":"y7KpS6Dgxv"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Tue, 06 Nov 2018 14:50:05 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"811c246d37cc926cc75bf582cd364fb3\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"d619c237-6f78-4100-9d77-b11aa3b6dc53"},{"key":"X-Runtime","value":"0.051868"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"y7KpS6Dgxv\",\n        \"type\": \"event\",\n        \"attributes\": {\n            \"id\": \"y7KpS6Dgxv\",\n            \"created_at\": \"2018-10-31T11:26:32Z\",\n            \"updated_at\": \"2018-11-06T10:56:29Z\",\n            \"cancelled\": false,\n            \"cancellation_reason\": null,\n            \"free_admission\": null,\n            \"free_admission_condition\": null,\n            \"punchline\": {\n                \"fr\": \"62eme Colloque International d'études humanistes du centre d'études supérieures de la Renaissance\"\n            },\n            \"name\": {\n                \"fr\": \"Léonard de Vinci création et innovations \"\n            },\n            \"blurb\": {\n                \"fr\": \"<p class=\\\"is-active\\\">Le 62ème colloque international d’études humanistes du Centre d’études supérieures de la Renaissance de Tours sera consacré à Léonard de Vinci en 2019.&nbsp;</p><p class=\\\"is-active\\\">Cet événement rassemblera les plus grands spécialistes internationaux du sujet et proposera d’aborder toutes les facettes de l’oeuvre de Léonard sous le prisme de l’invention et de l’innovation : mécanique, médecine, architecture, biomimétisme, etc. Une partie de ce colloque se tiendra dans des lieux marqués par la figure de Léonard de Vinci : le Château du Clos Lucé à Amboise et le Château de Chambord.</p>\"\n            },\n            \"start_at\": \"2019-06-01T00:00:00Z\",\n            \"end_at\": \"2019-06-30T00:00:00Z\"\n        },\n        \"relationships\": {},\n        \"links\": {\n            \"self\": {\n                \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv\"\n            },\n            \"relations\": {\n                \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/cities\",\n                \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/companies\",\n                \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/departments\",\n                \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/elects\",\n                \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/etablissement_publics\",\n                \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/event_groups\",\n                \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/events\",\n                \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/facilities\",\n                \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/news\",\n                \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/non_profits\",\n                \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/performers\",\n                \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/projects\",\n                \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/regions\",\n                \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/skills\"\n            },\n            \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/images\",\n            \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/documents\",\n            \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates\",\n            \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/type\",\n            \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/types\"\n        },\n        \"meta\": {\n            \"licenses\": [\n                {\n                    \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                    \"SPDX\": \"ODbL-1.0\",\n                    \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                    \"targets\": [\n                        \"cancelled\",\n                        \"cancellation_reason\",\n                        \"free_admission\",\n                        \"free_admission_condition\",\n                        \"punchline\",\n                        \"name\",\n                        \"blurb\",\n                        \"start_at\",\n                        \"end_at\"\n                    ]\n                }\n            ],\n            \"instances\": {\n                \"500-ans-renaissances\": [\n                    \"fr\"\n                ]\n            }\n        }\n    }\n}"}],"_postman_id":"cd6b9640-cc3c-4344-b6e4-77c33dfd3d8d"},{"name":"✅ Show with included resources","id":"a15d36ad-9b7a-4852-8810-6ee4f65df546","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id?include=dates,types","description":"<p>Avec le paramètre <code>include</code> vous avez la possibilité d'insérer dans la vue principale des ressources liées, vous évitant des requêtes supplémentaires.</p>\n","urlObject":{"path":["v2",":instance","events",":id"],"host":["https://api.publidata.io"],"query":[{"description":{"content":"<p>Liste des ressources à insérer</p>\n","type":"text/plain"},"key":"include","value":"dates,types"}],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[{"id":"2bbe54ad-f8de-441f-97cc-65731528bdc7","name":"✅ Show with included resources","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.publidata.io/v2/:instance/events/:id?include=dates,types","host":["https://api.publidata.io"],"path":["v2",":instance","events",":id"],"query":[{"key":"include","value":"dates,types","description":"Liste des ressources à insérer"}],"variable":[{"key":"instance","value":"500-ans-renaissances"},{"key":"id","value":"y7KpS6Dgxv"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Tue, 06 Nov 2018 14:54:52 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"2c566edafdfca2fe7ed4fc7f8ef3e15b\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"b8d67f08-016a-4d6c-b10e-7d6467c5bcdf"},{"key":"X-Runtime","value":"0.483946"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"y7KpS6Dgxv\",\n        \"type\": \"event\",\n        \"attributes\": {\n            \"id\": \"y7KpS6Dgxv\",\n            \"created_at\": \"2018-10-31T11:26:32Z\",\n            \"updated_at\": \"2018-11-06T10:56:29Z\",\n            \"cancelled\": false,\n            \"cancellation_reason\": null,\n            \"free_admission\": null,\n            \"free_admission_condition\": null,\n            \"punchline\": {\n                \"fr\": \"62eme Colloque International d'études humanistes du centre d'études supérieures de la Renaissance\"\n            },\n            \"name\": {\n                \"fr\": \"Léonard de Vinci création et innovations \"\n            },\n            \"blurb\": {\n                \"fr\": \"<p class=\\\"is-active\\\">Le 62ème colloque international d’études humanistes du Centre d’études supérieures de la Renaissance de Tours sera consacré à Léonard de Vinci en 2019.&nbsp;</p><p class=\\\"is-active\\\">Cet événement rassemblera les plus grands spécialistes internationaux du sujet et proposera d’aborder toutes les facettes de l’oeuvre de Léonard sous le prisme de l’invention et de l’innovation : mécanique, médecine, architecture, biomimétisme, etc. Une partie de ce colloque se tiendra dans des lieux marqués par la figure de Léonard de Vinci : le Château du Clos Lucé à Amboise et le Château de Chambord.</p>\"\n            },\n            \"start_at\": \"2019-06-01T00:00:00Z\",\n            \"end_at\": \"2019-06-30T00:00:00Z\"\n        },\n        \"relationships\": {\n            \"types\": {\n                \"data\": []\n            },\n            \"dates\": {\n                \"data\": [\n                    {\n                        \"id\": \"axGeikm1VN\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"8VZZiNZ8Vd\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"eVgRimO4Lo\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"E79OiqZQLM\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"YVYgiW4lxD\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"87oei8vYLQ\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"gLb4iOga7J\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"o7EMiQDr75\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"B72ZiYOv7O\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"y7KAiEO4Lv\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"d7DzidZMLB\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"DLkqijMy7a\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"G7jaiXOoVg\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"jVJvi2nyVR\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"J7d3igMRVB\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"2VX9iOjl7N\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"DVA6ivYn7X\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"8VvJieDWVv\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"D744i3N078\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"NLwjibKKxD\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"Q7BaiA1AVb\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"Kx09iEraLX\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"y7KAiEOMLv\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"d7DzidZmLB\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"DLkqijM67a\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"G7jaiXOAVg\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"jVJvi2nXVR\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"J7d3igMbVB\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"2VX9iOjd7N\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"DVA6ivYR7X\",\n                        \"type\": \"date\"\n                    }\n                ]\n            }\n        },\n        \"links\": {\n            \"self\": {\n                \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv\"\n            },\n            \"relations\": {\n                \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/cities\",\n                \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/companies\",\n                \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/departments\",\n                \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/elects\",\n                \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/etablissement_publics\",\n                \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/event_groups\",\n                \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/events\",\n                \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/facilities\",\n                \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/news\",\n                \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/non_profits\",\n                \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/performers\",\n                \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/projects\",\n                \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/regions\",\n                \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/skills\"\n            },\n            \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/images\",\n            \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/documents\",\n            \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates\",\n            \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/type\",\n            \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/types\"\n        },\n        \"meta\": {\n            \"included\": [\n                \"dates\",\n                \"types\"\n            ],\n            \"licenses\": [\n                {\n                    \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                    \"SPDX\": \"ODbL-1.0\",\n                    \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                    \"targets\": [\n                        \"cancelled\",\n                        \"cancellation_reason\",\n                        \"free_admission\",\n                        \"free_admission_condition\",\n                        \"punchline\",\n                        \"name\",\n                        \"blurb\",\n                        \"start_at\",\n                        \"end_at\"\n                    ]\n                }\n            ],\n            \"instances\": {\n                \"500-ans-renaissances\": [\n                    \"fr\"\n                ]\n            }\n        }\n    },\n    \"included\": [\n        {\n            \"id\": \"axGeikm1VN\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"axGeikm1VN\",\n                \"created_at\": \"2018-10-31T11:33:15Z\",\n                \"updated_at\": \"2018-10-31T11:33:15Z\",\n                \"start_at\": \"2019-06-30T00:00:00Z\",\n                \"end_at\": \"2019-06-30T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 30 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"8VZZiNZ8Vd\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"8VZZiNZ8Vd\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-29T00:00:00Z\",\n                \"end_at\": \"2019-06-29T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 29 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"eVgRimO4Lo\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"eVgRimO4Lo\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-28T00:00:00Z\",\n                \"end_at\": \"2019-06-28T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 28 Fr 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"E79OiqZQLM\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"E79OiqZQLM\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-27T00:00:00Z\",\n                \"end_at\": \"2019-06-27T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 27 Th 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"YVYgiW4lxD\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"YVYgiW4lxD\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-26T00:00:00Z\",\n                \"end_at\": \"2019-06-26T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 26 We 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"87oei8vYLQ\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"87oei8vYLQ\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-25T00:00:00Z\",\n                \"end_at\": \"2019-06-25T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 25 Tu 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"gLb4iOga7J\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"gLb4iOga7J\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-24T00:00:00Z\",\n                \"end_at\": \"2019-06-24T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 24 Mo 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"o7EMiQDr75\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"o7EMiQDr75\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-23T00:00:00Z\",\n                \"end_at\": \"2019-06-23T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 23 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"B72ZiYOv7O\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"B72ZiYOv7O\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-22T00:00:00Z\",\n                \"end_at\": \"2019-06-22T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 22 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"y7KAiEO4Lv\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"y7KAiEO4Lv\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-21T00:00:00Z\",\n                \"end_at\": \"2019-06-21T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 21 Fr 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"d7DzidZMLB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"d7DzidZMLB\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-20T00:00:00Z\",\n                \"end_at\": \"2019-06-20T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 20 Th 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DLkqijMy7a\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DLkqijMy7a\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-19T00:00:00Z\",\n                \"end_at\": \"2019-06-19T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 19 We 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"G7jaiXOoVg\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"G7jaiXOoVg\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-18T00:00:00Z\",\n                \"end_at\": \"2019-06-18T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 18 Tu 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"jVJvi2nyVR\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"jVJvi2nyVR\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-17T00:00:00Z\",\n                \"end_at\": \"2019-06-17T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 17 Mo 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"J7d3igMRVB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"J7d3igMRVB\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-16T00:00:00Z\",\n                \"end_at\": \"2019-06-16T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 16 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"2VX9iOjl7N\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"2VX9iOjl7N\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-15T00:00:00Z\",\n                \"end_at\": \"2019-06-15T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 15 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DVA6ivYn7X\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DVA6ivYn7X\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-14T00:00:00Z\",\n                \"end_at\": \"2019-06-14T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 14 Fr 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"8VvJieDWVv\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"8VvJieDWVv\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-13T00:00:00Z\",\n                \"end_at\": \"2019-06-13T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 13 Th 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"D744i3N078\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"D744i3N078\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-12T00:00:00Z\",\n                \"end_at\": \"2019-06-12T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 12 We 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"NLwjibKKxD\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"NLwjibKKxD\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-11T00:00:00Z\",\n                \"end_at\": \"2019-06-11T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 11 Tu 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"Q7BaiA1AVb\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"Q7BaiA1AVb\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-10T00:00:00Z\",\n                \"end_at\": \"2019-06-10T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 10 Mo 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"Kx09iEraLX\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"Kx09iEraLX\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-09T00:00:00Z\",\n                \"end_at\": \"2019-06-09T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 09 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"y7KAiEOMLv\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"y7KAiEOMLv\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-08T00:00:00Z\",\n                \"end_at\": \"2019-06-08T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 08 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"d7DzidZmLB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"d7DzidZmLB\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-07T00:00:00Z\",\n                \"end_at\": \"2019-06-07T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 07 Fr 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DLkqijM67a\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DLkqijM67a\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-06T00:00:00Z\",\n                \"end_at\": \"2019-06-06T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 06 Th 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"G7jaiXOAVg\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"G7jaiXOAVg\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-05T00:00:00Z\",\n                \"end_at\": \"2019-06-05T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 05 We 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"jVJvi2nXVR\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"jVJvi2nXVR\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-04T00:00:00Z\",\n                \"end_at\": \"2019-06-04T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 04 Tu 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"J7d3igMbVB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"J7d3igMbVB\",\n                \"created_at\": \"2018-10-31T11:33:11Z\",\n                \"updated_at\": \"2018-10-31T11:33:11Z\",\n                \"start_at\": \"2019-06-03T00:00:00Z\",\n                \"end_at\": \"2019-06-03T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 03 Mo 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"2VX9iOjd7N\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"2VX9iOjd7N\",\n                \"created_at\": \"2018-10-31T11:33:11Z\",\n                \"updated_at\": \"2018-10-31T11:33:11Z\",\n                \"start_at\": \"2019-06-02T00:00:00Z\",\n                \"end_at\": \"2019-06-02T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 02 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DVA6ivYR7X\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DVA6ivYR7X\",\n                \"created_at\": \"2018-10-31T11:33:11Z\",\n                \"updated_at\": \"2018-10-31T11:33:11Z\",\n                \"start_at\": \"2019-06-01T00:00:00Z\",\n                \"end_at\": \"2019-06-01T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 01 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"wo7NbcKj7n\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"wo7NbcKj7n\",\n                \"created_at\": \"2018-10-23T01:23:57Z\",\n                \"updated_at\": \"2018-10-23T01:24:19Z\",\n                \"name\": {\n                    \"fr\": \"Rassemblement\"\n                }\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": \"https://publidata-staging.herokuapp.com/api/v2/event_types/wo7NbcKj7n\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"Wn7lQcrKxm\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"Wn7lQcrKxm\",\n                \"created_at\": \"2018-10-23T01:23:57Z\",\n                \"updated_at\": \"2018-10-23T01:24:19Z\",\n                \"name\": {\n                    \"fr\": \"Colloque\"\n                }\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": \"https://publidata-staging.herokuapp.com/api/v2/event_types/Wn7lQcrKxm\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        }\n    ]\n}"}],"_postman_id":"a15d36ad-9b7a-4852-8810-6ee4f65df546"},{"name":"🚧 Show translated","id":"f4d01b49-2271-4297-a6e7-2db348a192fc","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id?lang=en","description":"<p>Le paramètre <code>lang</code> vous permet de récupérer les contenus éditoriaux d'une ressource dans une langue donnée.</p>\n","urlObject":{"path":["v2",":instance","events",":id"],"host":["https://api.publidata.io"],"query":[{"description":{"content":"<p>Langue désirée</p>\n","type":"text/plain"},"key":"lang","value":"en"}],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"f4d01b49-2271-4297-a6e7-2db348a192fc"},{"name":"🚧 Search","id":"b2d605e3-ed6b-42f4-88ad-14e9df57f5e0","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.publidata.io/v2/:instance/events/?q=Sénart&size=10&page=1&marker=false&instances[]=2&types[]=Event&performers[]=Nakht&facilities[]=8&events[]=1&event_groups[]=1&news[]=1&projects[]=1&cities[]=7&etablissement_publics[]=1&departments[]=1&regions[]=1&skills[]=1&elects[]=1&bbox[]&event_types[]=Oeuvre d'art&event_styles[]=Gymnastique&date[start]=1526054400&date[end]=1526083199&price[min]=10&price[max]=50&free_admission=true&accessibilities[]=has_deaf_accessibility","description":"<p>Recherche d'événements : 🚧 à venir... </p>\n","urlObject":{"path":["v2",":instance","events",""],"host":["https://api.publidata.io"],"query":[{"description":{"content":"<p>Filtre textuel</p>\n","type":"text/plain"},"key":"q","value":"Sénart"},{"description":{"content":"<p>Nombre de résultats retournés (defaut: 10)</p>\n","type":"text/plain"},"key":"size","value":"10"},{"description":{"content":"<p>Pagination (defaut: 1)</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>Filtre booléen pour ne retourner que les locations (default: false)</p>\n","type":"text/plain"},"key":"marker","value":"false"},{"description":{"content":"<p>Filtre par instance (array d'id)</p>\n","type":"text/plain"},"key":"instances[]","value":"2"},{"description":{"content":"<p>Filtre par type de ressource (array de type parmi la liste suivante : News Event Facility Project City Epci Department Region EventGroup Skill Elect Performer Company NonProfit EtablissementPublic)</p>\n","type":"text/plain"},"key":"types[]","value":"Event"},{"description":{"content":"<p>Filtre par artiste lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"performers[]","value":"Nakht"},{"description":{"content":"<p>Filtre par équipement lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"facilities[]","value":"8"},{"description":{"content":"<p>Filtre par événement lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"events[]","value":"1"},{"description":{"content":"<p>Filtre par groupe d'événements lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"event_groups[]","value":"1"},{"description":{"content":"<p>Filtre par actualité liée (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"news[]","value":"1"},{"description":{"content":"<p>Filtre par projet lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"projects[]","value":"1"},{"description":{"content":"<p>Filtre par ville et location liées (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"cities[]","value":"7"},{"description":{"content":"<p>Filtre par établissement public lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"etablissement_publics[]","value":"1"},{"description":{"content":"<p>Filtre par departement lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"departments[]","value":"1"},{"description":{"content":"<p>Filtre par region liée (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"regions[]","value":"1"},{"description":{"content":"<p>Filtre par compétence liée (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"skills[]","value":"1"},{"description":{"content":"<p>Filtre par élu lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"elects[]","value":"1"},{"description":{"content":"<p>Filtre géographique (array de latitudes, longitudes dans l'ordre suivant minX, minY, maxX, maxY)</p>\n","type":"text/plain"},"key":"bbox[]","value":null},{"description":{"content":"<p>Filtre par type d'événement (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"event_types[]","value":"Oeuvre d'art"},{"description":{"content":"<p>Filtre par style d'événement (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"event_styles[]","value":"Gymnastique"},{"description":{"content":"<p>Filtre par date/heure de début (timestamp en seconde)</p>\n","type":"text/plain"},"key":"date[start]","value":"1526054400"},{"description":{"content":"<p>Filtre par date/heure de fin (timestamp en seconde)</p>\n","type":"text/plain"},"key":"date[end]","value":"1526083199"},{"description":{"content":"<p>Filtre de prix minimum</p>\n","type":"text/plain"},"key":"price[min]","value":"10"},{"description":{"content":"<p>Filtre de prix maximum</p>\n","type":"text/plain"},"key":"price[max]","value":"50"},{"description":{"content":"<p>Filtre de gratuité (boolean)</p>\n","type":"text/plain"},"key":"free_admission","value":"true"},{"description":{"content":"<p>Filtre d'accessibilité (array de string)</p>\n","type":"text/plain"},"key":"accessibilities[]","value":"has_deaf_accessibility"}],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"}]}},"response":[{"id":"3aea2377-5a04-4840-a4af-6cfd43b2e246","name":"Search events","originalRequest":{"method":"GET","header":[],"url":{"raw":"www.publidata.io/api/v1/events?q=&options[geo][top_left][lat]=49.05965195372349&options[geo][top_left][lon]=2.1371613664061897&options[geo][bottom_right][lat]=48.21570798955211&options[geo][bottom_right][lon]=2.7688752335936897&options[city]=Combs-la-Ville&options[paging][from]=0&options[event_types][]=Concert&options[dates][start_date]=1521812100000&options[dates][end_date]=1522499700000&options[instances][]=2","host":["www","publidata","io"],"path":["api","v1","events"],"query":[{"key":"q","value":"","description":"Recherche (full-text)"},{"key":"options[geo][top_left][lat]","value":"49.05965195372349","description":"Latitude coin supérieur gauche geo-box (lat)"},{"key":"options[geo][top_left][lon]","value":"2.1371613664061897","description":"Longitude coin supérieur gauche geo-box (lon)"},{"key":"options[geo][bottom_right][lat]","value":"48.21570798955211","description":"Latitude coin inférieur droit geo-box (lat)"},{"key":"options[geo][bottom_right][lon]","value":"2.7688752335936897","description":"Longitude coin inférieur droit geo-box (lon)"},{"key":"options[city]","value":"Combs-la-Ville","description":"Ville (full-text ou code postal)"},{"key":"options[paging][from]","value":"0","description":"Début de la pagination (integer)"},{"key":"options[event_types][]","value":"Concert","description":"Types d'événement (array de string)"},{"key":"options[dates][start_date]","value":"1521812100000","description":"Date de début (format timestamp unix 1508267068688)"},{"key":"options[dates][end_date]","value":"1522499700000","description":"Date de fin (format timestamp unix 1539803068688)"},{"key":"options[instances][]","value":"2"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"took\": 11,\n    \"timed_out\": false,\n    \"_shards\": {\n        \"total\": 1,\n        \"successful\": 1,\n        \"failed\": 0\n    },\n    \"hits\": {\n        \"total\": 2,\n        \"max_score\": 0.9812665,\n        \"hits\": [\n            {\n                \"_index\": \"events\",\n                \"_type\": \"event\",\n                \"_id\": \"3241\",\n                \"_score\": 0.9812665,\n                \"_source\": {\n                    \"id\": 3241,\n                    \"name\": \"Concert des orchestres\",\n                    \"slug\": \"concert-des-orchestres\",\n                    \"status\": \"published\",\n                    \"free_admission\": true,\n                    \"start_date\": \"2018-03-23T00:00:00.000+01:00\",\n                    \"end_date\": \"2018-03-23T00:00:00.000+01:00\",\n                    \"punchline\": \"Le vendredi 23 mars 2018 à 20h au Théâtre de la Coupole, les musiciens du Conservatoire Maurice Ohana de Combs-la-ville vous attendent pour leur rendez-vous annuel...\",\n                    \"blurb\": \"Cette soirée donne la possibilité à plusieurs formations orchestrales du conservatoire Maurice Ohana de se produire sur scène. \\r\\n\\r\\nProgramme musical éclectique et varié, ce concert  permet de vivre la musique ensemble et de la partager sans modération avec le public.\",\n                    \"linked_objects\": [\n                        {\n                            \"id\": 180,\n                            \"type\": \"Facility\",\n                            \"name\": \"La Coupole\"\n                        },\n                        {\n                            \"id\": 12,\n                            \"type\": \"City\",\n                            \"name\": \"Combs-la-Ville\"\n                        }\n                    ],\n                    \"cover_picture\": {\n                        \"id\": 22632,\n                        \"name\": \"image de couverture de Concert des orchestres\",\n                        \"alt\": \"image de couverture de Concert des orchestres\",\n                        \"description\": \"image de couverture de Concert des orchestres\",\n                        \"slug\": null,\n                        \"image_urls_as_json\": {\n                            \"image_original_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/632/original/open-uri20171002-4-1etqlbo?1506962457\",\n                            \"image_small_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/632/image_small/open-uri20171002-4-1etqlbo?1506962457\",\n                            \"image_medium_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/632/image_medium/open-uri20171002-4-1etqlbo?1506962457\",\n                            \"image_large_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/632/image_large/open-uri20171002-4-1etqlbo?1506962457\"\n                        }\n                    },\n                    \"instances\": [\n                        {\n                            \"id\": 2,\n                            \"slug\": \"portail-sortir-gps\"\n                        }\n                    ],\n                    \"event_type\": {\n                        \"id\": 13,\n                        \"name\": \"Concert\"\n                    },\n                    \"event_styles\": [\n                        {\n                            \"id\": 82,\n                            \"name\": \"World Music\"\n                        }\n                    ],\n                    \"event_dates\": [\n                        {\n                            \"id\": 37799,\n                            \"start_hour\": \"2000-01-01T20:00:00.000Z\",\n                            \"end_hour\": \"2000-01-01T22:00:00.000Z\",\n                            \"date\": \"2018-03-23T00:00:00.000+01:00\",\n                            \"sold_out\": false,\n                            \"start_date\": \"2018-03-23T20:00:00.000+00:00\",\n                            \"end_date\": \"2018-03-23T22:00:00.000+00:00\"\n                        }\n                    ],\n                    \"facilities\": [\n                        {\n                            \"id\": 180,\n                            \"name\": \"La Coupole\",\n                            \"slug\": \"la-coupole\",\n                            \"address\": \"Rue Jean François Millet, 77380 Combs-la-Ville, France\",\n                            \"location\": {\n                                \"lat\": 48.659695,\n                                \"lon\": 2.5662415\n                            }\n                        }\n                    ],\n                    \"locations\": [],\n                    \"fees\": [],\n                    \"tags\": [],\n                    \"pages\": [\n                        {\n                            \"id\": 7659,\n                            \"instance\": {\n                                \"id\": 2,\n                                \"slug\": \"portail-sortir-gps\"\n                            }\n                        }\n                    ]\n                }\n            },\n            {\n                \"_index\": \"events\",\n                \"_type\": \"event\",\n                \"_id\": \"3983\",\n                \"_score\": 0.9794048,\n                \"_source\": {\n                    \"id\": 3983,\n                    \"name\": \"Après-midi musicale: Claude Debussy\",\n                    \"slug\": \"apres-midi-musicale-claude-debussy\",\n                    \"status\": \"published\",\n                    \"free_admission\": true,\n                    \"start_date\": \"2018-03-24T00:00:00.000+01:00\",\n                    \"end_date\": \"2018-03-24T00:00:00.000+01:00\",\n                    \"punchline\": \"A l'occasion du centenaire de la mort de Claude Debussy, la media-ludothèque et le conservatoire Maurice Ohana vous invitent à une après-midi musical, le samedi 24 mars à partir de 15h30.\",\n                    \"blurb\": \"Claude Debussy (1862-1918) était un compositeur français. Pour célébrer son centenaire, nous vous invitons à un après-midi musical. Au programme, une conférence par Bruno Giner sur le compositeur à 15h30. \\r\\nPuis, à 18h, les élèves du conservatoire interpréteront une sélection d’œuvres de Claude Debussy.\",\n                    \"linked_objects\": [\n                        {\n                            \"id\": 42,\n                            \"type\": \"Facility\",\n                            \"name\": \"Médiathèque de Combs-la-Ville\"\n                        },\n                        {\n                            \"id\": 12,\n                            \"type\": \"City\",\n                            \"name\": \"Combs-la-Ville\"\n                        }\n                    ],\n                    \"cover_picture\": {\n                        \"id\": 24665,\n                        \"name\": \"image de couverture de Après-midi musicale: Claude Debussy\",\n                        \"alt\": \"image de couverture de Après-midi musicale: Claude Debussy\",\n                        \"description\": \"image de couverture de Après-midi musicale: Claude Debussy\",\n                        \"slug\": null,\n                        \"image_urls_as_json\": {\n                            \"image_original_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/665/original/Photo_23a_Claude_Debussy.jpg?1516441408\",\n                            \"image_small_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/665/image_small/Photo_23a_Claude_Debussy.jpg?1516441408\",\n                            \"image_medium_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/665/image_medium/Photo_23a_Claude_Debussy.jpg?1516441408\",\n                            \"image_large_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/665/image_large/Photo_23a_Claude_Debussy.jpg?1516441408\"\n                        }\n                    },\n                    \"instances\": [\n                        {\n                            \"id\": 2,\n                            \"slug\": \"portail-sortir-gps\"\n                        }\n                    ],\n                    \"event_type\": {\n                        \"id\": 13,\n                        \"name\": \"Concert\"\n                    },\n                    \"event_styles\": [\n                        {\n                            \"id\": 111,\n                            \"name\": \"Musique Classique\"\n                        }\n                    ],\n                    \"event_dates\": [\n                        {\n                            \"id\": 41100,\n                            \"start_hour\": \"2000-01-01T15:30:00.000Z\",\n                            \"end_hour\": \"2000-01-01T19:30:00.000Z\",\n                            \"date\": \"2018-03-24T00:00:00.000+01:00\",\n                            \"sold_out\": false,\n                            \"start_date\": \"2018-03-24T15:30:00.000+00:00\",\n                            \"end_date\": \"2018-03-24T19:30:00.000+00:00\"\n                        }\n                    ],\n                    \"facilities\": [\n                        {\n                            \"id\": 42,\n                            \"name\": \"Médiathèque de Combs-la-Ville\",\n                            \"slug\": \"mediatheque-de-combs-la-ville\",\n                            \"address\": \"Rue Jean François Millet, 77380 Combs-la-Ville, France\",\n                            \"location\": {\n                                \"lat\": 48.659695,\n                                \"lon\": 2.5662415\n                            }\n                        }\n                    ],\n                    \"locations\": [],\n                    \"fees\": [],\n                    \"accessibility\": {\n                        \"id\": 1766,\n                        \"deaf_lsf\": false,\n                        \"deaf_vision_based\": false,\n                        \"deaf_subtitle\": false,\n                        \"deaf_hearing_loop\": false,\n                        \"blind_audio_description\": false,\n                        \"blind_darkness_based\": false,\n                        \"blind_text_based\": false,\n                        \"blind_braille\": false,\n                        \"blind_large_print\": false,\n                        \"motor_disabled_access\": true,\n                        \"has_accessibility\": true,\n                        \"has_deaf_accessibility\": false,\n                        \"has_blind_accessibility\": false\n                    },\n                    \"tags\": [\n                        \"Culture\"\n                    ],\n                    \"pages\": [\n                        {\n                            \"id\": 8636,\n                            \"instance\": {\n                                \"id\": 2,\n                                \"slug\": \"portail-sortir-gps\"\n                            }\n                        }\n                    ]\n                }\n            }\n        ]\n    },\n    \"aggregations\": {\n        \"event_styles_terms_agg\": {\n            \"doc_count\": 2,\n            \"name\": {\n                \"doc_count_error_upper_bound\": 0,\n                \"sum_other_doc_count\": 0,\n                \"buckets\": [\n                    {\n                        \"key\": \"111\",\n                        \"doc_count\": 1,\n                        \"name\": {\n                            \"doc_count_error_upper_bound\": 0,\n                            \"sum_other_doc_count\": 0,\n                            \"buckets\": [\n                                {\n                                    \"key\": \"classique\",\n                                    \"doc_count\": 1\n                                },\n                                {\n                                    \"key\": \"musique\",\n                                    \"doc_count\": 1\n                                }\n                            ]\n                        }\n                    },\n                    {\n                        \"key\": \"82\",\n                        \"doc_count\": 1,\n                        \"name\": {\n                            \"doc_count_error_upper_bound\": 0,\n                            \"sum_other_doc_count\": 0,\n                            \"buckets\": [\n                                {\n                                    \"key\": \"music\",\n                                    \"doc_count\": 1\n                                },\n                                {\n                                    \"key\": \"world\",\n                                    \"doc_count\": 1\n                                }\n                            ]\n                        }\n                    }\n                ]\n            }\n        },\n        \"events\": {\n            \"doc_count\": 3838,\n            \"dates\": {\n                \"doc_count\": 11064,\n                \"this_month\": {\n                    \"doc_count\": 737,\n                    \"events\": {\n                        \"doc_count\": 278\n                    }\n                },\n                \"this_week_end\": {\n                    \"doc_count\": 81,\n                    \"events\": {\n                        \"doc_count\": 54\n                    }\n                },\n                \"past\": {\n                    \"doc_count\": 10070,\n                    \"events\": {\n                        \"doc_count\": 3132\n                    }\n                },\n                \"today\": {\n                    \"doc_count\": 34,\n                    \"events\": {\n                        \"doc_count\": 28\n                    }\n                },\n                \"tomorrow\": {\n                    \"doc_count\": 22,\n                    \"events\": {\n                        \"doc_count\": 19\n                    }\n                },\n                \"last_days\": {\n                    \"doc_count\": 133,\n                    \"events\": {\n                        \"doc_count\": 75\n                    }\n                },\n                \"upcoming\": {\n                    \"doc_count\": 1028,\n                    \"events\": {\n                        \"doc_count\": 390\n                    }\n                },\n                \"this_week\": {\n                    \"doc_count\": 197,\n                    \"events\": {\n                        \"doc_count\": 96\n                    }\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"b2d605e3-ed6b-42f4-88ad-14e9df57f5e0"}],"id":"58538ea0-464a-4145-be9a-1e71d7982c6e","_postman_id":"58538ea0-464a-4145-be9a-1e71d7982c6e","description":""},{"name":"Ressources liées","item":[{"name":"✅ Types","id":"f8f3e474-458a-4c79-b187-656f23c10632","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/types","description":"<p>Type(s) de la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","types"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[{"id":"e30dc512-6ad2-47f5-8ab2-6188fb737c6b","name":"✅ Types","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.publidata.io/v2/:instance/events/:id/types","host":["https://api.publidata.io"],"path":["v2",":instance","events",":id","types"],"variable":[{"key":"instance","value":"500-ans-renaissances"},{"key":"id","value":"y7KpS6Dgxv"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Tue, 06 Nov 2018 14:56:10 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"aca7a58992ce54decfd0aa1309558bf9\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"d9a108a9-5d7c-486f-9b8f-620b97ceecb4"},{"key":"X-Runtime","value":"0.137086"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"wo7NbcKj7n\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"wo7NbcKj7n\",\n                \"created_at\": \"2018-10-23T01:23:57Z\",\n                \"updated_at\": \"2018-10-23T01:24:19Z\",\n                \"name\": {\n                    \"fr\": \"Rassemblement\"\n                }\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": \"https://publidata-staging.herokuapp.com/api/v2/event_types/wo7NbcKj7n\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"Wn7lQcrKxm\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"Wn7lQcrKxm\",\n                \"created_at\": \"2018-10-23T01:23:57Z\",\n                \"updated_at\": \"2018-10-23T01:24:19Z\",\n                \"name\": {\n                    \"fr\": \"Colloque\"\n                }\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": \"https://publidata-staging.herokuapp.com/api/v2/event_types/Wn7lQcrKxm\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        }\n    ],\n    \"meta\": {\n        \"items\": 2,\n        \"count\": 2,\n        \"page\": 1\n    },\n    \"links\": {\n        \"self\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/types?page=1\",\n        \"pagination\": {\n            \"first\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/types?page=1\",\n            \"last\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/types?page=1\"\n        }\n    }\n}"}],"_postman_id":"f8f3e474-458a-4c79-b187-656f23c10632"},{"name":"🚧 Themes","id":"5dd70f35-347b-4b98-aaee-9d319a9f909a","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/themes","description":"<p>Thème(s) associé(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","themes"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"5dd70f35-347b-4b98-aaee-9d319a9f909a"},{"name":"✅ Dates","id":"93136e67-f162-4e76-b7fa-24e1fc3e457e","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/dates","description":"<p>Date(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","dates"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[{"id":"4c6cfdc1-eb7a-4757-95c0-798ecca8e55f","name":"✅ Dates","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.publidata.io/v2/:instance/events/:id/dates","host":["https://api.publidata.io"],"path":["v2",":instance","events",":id","dates"],"variable":[{"key":"instance","value":"500-ans-renaissances"},{"key":"id","value":"y7KpS6Dgxv"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Tue, 06 Nov 2018 14:57:37 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"5019bf7102c4e9c481afd4dc20c410e1\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"5b74b321-cdd9-461b-a32e-4263c646d08b"},{"key":"X-Runtime","value":"0.316049"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"DVA6ivYR7X\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DVA6ivYR7X\",\n                \"created_at\": \"2018-10-31T11:33:11Z\",\n                \"updated_at\": \"2018-10-31T11:33:11Z\",\n                \"start_at\": \"2019-06-01T00:00:00Z\",\n                \"end_at\": \"2019-06-01T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 01 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"2VX9iOjd7N\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"2VX9iOjd7N\",\n                \"created_at\": \"2018-10-31T11:33:11Z\",\n                \"updated_at\": \"2018-10-31T11:33:11Z\",\n                \"start_at\": \"2019-06-02T00:00:00Z\",\n                \"end_at\": \"2019-06-02T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 02 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"J7d3igMbVB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"J7d3igMbVB\",\n                \"created_at\": \"2018-10-31T11:33:11Z\",\n                \"updated_at\": \"2018-10-31T11:33:11Z\",\n                \"start_at\": \"2019-06-03T00:00:00Z\",\n                \"end_at\": \"2019-06-03T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 03 Mo 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"jVJvi2nXVR\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"jVJvi2nXVR\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-04T00:00:00Z\",\n                \"end_at\": \"2019-06-04T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 04 Tu 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"G7jaiXOAVg\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"G7jaiXOAVg\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-05T00:00:00Z\",\n                \"end_at\": \"2019-06-05T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 05 We 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DLkqijM67a\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DLkqijM67a\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-06T00:00:00Z\",\n                \"end_at\": \"2019-06-06T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 06 Th 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"d7DzidZmLB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"d7DzidZmLB\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-07T00:00:00Z\",\n                \"end_at\": \"2019-06-07T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 07 Fr 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"y7KAiEOMLv\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"y7KAiEOMLv\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-08T00:00:00Z\",\n                \"end_at\": \"2019-06-08T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 08 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"Kx09iEraLX\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"Kx09iEraLX\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-09T00:00:00Z\",\n                \"end_at\": \"2019-06-09T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 09 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"Q7BaiA1AVb\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"Q7BaiA1AVb\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-10T00:00:00Z\",\n                \"end_at\": \"2019-06-10T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 10 Mo 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"NLwjibKKxD\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"NLwjibKKxD\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-11T00:00:00Z\",\n                \"end_at\": \"2019-06-11T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 11 Tu 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"D744i3N078\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"D744i3N078\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-12T00:00:00Z\",\n                \"end_at\": \"2019-06-12T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 12 We 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"8VvJieDWVv\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"8VvJieDWVv\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-13T00:00:00Z\",\n                \"end_at\": \"2019-06-13T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 13 Th 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DVA6ivYn7X\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DVA6ivYn7X\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-14T00:00:00Z\",\n                \"end_at\": \"2019-06-14T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 14 Fr 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"2VX9iOjl7N\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"2VX9iOjl7N\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-15T00:00:00Z\",\n                \"end_at\": \"2019-06-15T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 15 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"J7d3igMRVB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"J7d3igMRVB\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-16T00:00:00Z\",\n                \"end_at\": \"2019-06-16T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 16 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"jVJvi2nyVR\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"jVJvi2nyVR\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-17T00:00:00Z\",\n                \"end_at\": \"2019-06-17T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 17 Mo 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"G7jaiXOoVg\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"G7jaiXOoVg\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-18T00:00:00Z\",\n                \"end_at\": \"2019-06-18T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 18 Tu 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DLkqijMy7a\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DLkqijMy7a\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-19T00:00:00Z\",\n                \"end_at\": \"2019-06-19T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 19 We 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"d7DzidZMLB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"d7DzidZMLB\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-20T00:00:00Z\",\n                \"end_at\": \"2019-06-20T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 20 Th 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        }\n    ],\n    \"meta\": {\n        \"items\": 20,\n        \"count\": 30,\n        \"page\": 1\n    },\n    \"links\": {\n        \"self\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates?page=1\",\n        \"pagination\": {\n            \"first\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates?page=1\",\n            \"next\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates?page=2\",\n            \"last\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates?page=2\"\n        }\n    }\n}"}],"_postman_id":"93136e67-f162-4e76-b7fa-24e1fc3e457e"},{"name":"🚧 Tickets","id":"ce7fbb40-d7d4-48ef-9fe8-b784b4a5e193","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/tickets","description":"<p>Billetterie(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","tickets"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"ce7fbb40-d7d4-48ef-9fe8-b784b4a5e193"},{"name":"🚧 Fees","id":"472432c0-b18a-4191-a914-b4522bfe11dc","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/fees","description":"<p>Prix lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","fees"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"472432c0-b18a-4191-a914-b4522bfe11dc"},{"name":"🚧 Contacts","id":"b5995785-9847-4bb0-aa6b-006ca095cdbb","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/contacts","description":"<p>Information(s) de contact liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","contacts"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"b5995785-9847-4bb0-aa6b-006ca095cdbb"},{"name":"🚧 Socials","id":"54a618c7-9d79-41e8-93e3-06b3fb035967","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/socials","description":"<p>Information(s) sociale(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","socials"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"54a618c7-9d79-41e8-93e3-06b3fb035967"},{"name":"🚧 Public","id":"47eb4135-1ce2-4b41-a02f-20601dde560b","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/public","description":"<p>Public associé à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","public"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"47eb4135-1ce2-4b41-a02f-20601dde560b"},{"name":"🚧 Accessibility","id":"9342a495-ec08-461c-a05d-178dd1df1b82","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/accessibility","description":"<p>Information(s) d'accessibilité liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","accessibility"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"9342a495-ec08-461c-a05d-178dd1df1b82"},{"name":"🚧 Partners","id":"425366c3-1153-464b-a24f-55405952050b","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/partners","description":"<p>Partenaire(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","partners"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"425366c3-1153-464b-a24f-55405952050b"},{"name":"🚧 Instances","id":"9c37b3d2-c6f5-4202-9046-9a0a60d1f7d0","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/instances","description":"<p>Instance(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","instances"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"9c37b3d2-c6f5-4202-9046-9a0a60d1f7d0"},{"name":"🚧 Pages","id":"1b07ac1c-0cde-4257-af70-e072605d6b0c","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/skills","description":"<p>Page(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","skills"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"1b07ac1c-0cde-4257-af70-e072605d6b0c"},{"name":"🚧 Contributors","id":"78453495-8893-4a9b-bee1-1e4f76ce0d88","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/contributors","description":"<p>Contributeur(s) / mainteneur(s) de la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","contributors"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"78453495-8893-4a9b-bee1-1e4f76ce0d88"}],"id":"6974e975-1c5f-497e-9d49-debd1e7ee2a4","_postman_id":"6974e975-1c5f-497e-9d49-debd1e7ee2a4","description":""},{"name":"Relations","item":[{"name":"🚧 Relations","id":"565e72d3-47fa-4b21-ae52-c97a6623eb63","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/themes","description":"<p>Ressource(s) associée(s) à ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","themes"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"565e72d3-47fa-4b21-ae52-c97a6623eb63"},{"name":"🚧 Facilities","id":"9768b537-64ed-4299-bb3d-75922860f440","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/facilities","description":"<p>Équipement(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","facilities"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"9768b537-64ed-4299-bb3d-75922860f440"},{"name":"🚧 Cities","id":"24f41255-a5db-4e38-84ff-eb56fbe46f20","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/cities","description":"<p>Commune(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","cities"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"24f41255-a5db-4e38-84ff-eb56fbe46f20"},{"name":"🚧 Departments","id":"80499970-d201-48a8-8d74-ccee11a0c19a","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/departments","description":"<p>Départements(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","departments"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"80499970-d201-48a8-8d74-ccee11a0c19a"},{"name":"🚧 Regions","id":"8a604cac-ee9d-4e61-a95d-1482ad9441ab","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/regions","description":"<p>Région(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","regions"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"8a604cac-ee9d-4e61-a95d-1482ad9441ab"},{"name":"🚧 News","id":"94eb9c55-641a-4c3e-a505-9a91a54fdf95","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/news","description":"<p>Actualité(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","news"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"94eb9c55-641a-4c3e-a505-9a91a54fdf95"},{"name":"✅ Events","id":"ce09cdbb-c582-4032-9f52-563ba9fd0b47","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/events","description":"<p>Événement(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","events"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"ce09cdbb-c582-4032-9f52-563ba9fd0b47"},{"name":"🚧 EventGroups","id":"92e1a835-6268-4788-85e6-1bfec75d1761","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/event_groups","description":"<p>Groupe(s) d'événement(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","event_groups"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"92e1a835-6268-4788-85e6-1bfec75d1761"},{"name":"🚧 Projects","id":"8c074df3-8bb1-4022-acbe-fcec3e64bb14","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/projects","description":"<p>Projet(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","projects"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"8c074df3-8bb1-4022-acbe-fcec3e64bb14"},{"name":"🚧 Performers","id":"4a87b4b5-6bae-4dfe-a1ca-ab2b44e7f288","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/performers","description":"<p>Artiste(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","performers"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"4a87b4b5-6bae-4dfe-a1ca-ab2b44e7f288"},{"name":"🚧 Companies","id":"e96f54d9-df44-439d-816e-3b66aa18c42c","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/companies","description":"<p>Entreprise(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","companies"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"e96f54d9-df44-439d-816e-3b66aa18c42c"},{"name":"🚧 NonProfits","id":"26c64b50-7993-4a94-aace-aead35434e62","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/non_profits","description":"<p>Associations(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","non_profits"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"26c64b50-7993-4a94-aace-aead35434e62"},{"name":"🚧 EtablissementPublics","id":"648d9d01-784c-4700-9dc3-5013a08db9f8","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/etablissement_publics","description":"<p>Établissement(s) public(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","etablissement_publics"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"648d9d01-784c-4700-9dc3-5013a08db9f8"},{"name":"🚧 Skills","id":"b04220c2-184b-40e5-a9ee-f58db03c65ea","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/skills","description":"<p>Compétence(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","skills"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"b04220c2-184b-40e5-a9ee-f58db03c65ea"},{"name":"🚧 Elects","id":"ac120161-9c23-4e31-a67d-5b2da77a07f8","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/elects","description":"<p>Élus(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","elects"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"ac120161-9c23-4e31-a67d-5b2da77a07f8"}],"id":"f7cf11d0-c263-4ce1-afb4-c57fbda0dcfa","description":"<p>A venir... 🚧</p>\n","event":[{"listen":"prerequest","script":{"id":"487c0f48-a1cd-4aae-af2f-4b62ccf8bb0b","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"4dfafa06-8884-4b36-9c42-31cba1746986","type":"text/javascript","exec":[""]}}],"_postman_id":"f7cf11d0-c263-4ce1-afb4-c57fbda0dcfa"},{"name":"Médias","item":[{"name":"🚧 Medias","id":"eb0308d3-6080-40df-a5de-8ac4b03cdd8b","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/medias","description":"<p>Média(s) associé(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","medias"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"eb0308d3-6080-40df-a5de-8ac4b03cdd8b"},{"name":"✅ Images","id":"8fb57575-5e51-4b05-8fdd-bb6eb13fee90","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/images","description":"<p>Image(s) associée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","images"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"8fb57575-5e51-4b05-8fdd-bb6eb13fee90"},{"name":"✅ Documents","id":"dd653f4a-cd80-4b02-9009-b138d136c091","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/documents","description":"<p>Document(s) associé(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","documents"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"dd653f4a-cd80-4b02-9009-b138d136c091"}],"id":"5dd6607e-52c7-47eb-b801-222403987566","_postman_id":"5dd6607e-52c7-47eb-b801-222403987566","description":""}],"id":"8912bab5-ae04-4593-ab51-8b085a36d256","description":"<p>Les événements</p>\n","event":[{"listen":"prerequest","script":{"id":"768578b7-1e5d-45b7-ab56-2a8b856f2061","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"a419bb76-510b-4b2b-bc5d-608de7e9b0d3","type":"text/javascript","exec":[""]}}],"_postman_id":"8912bab5-ae04-4593-ab51-8b085a36d256"},{"name":"🚧 Organisations","item":[{"name":"Endpoints principaux","item":[{"name":"✅ Index","id":"583582ca-731c-48ed-9317-bb4666edc484","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events","description":"<p>Liste des événements</p>\n","urlObject":{"path":["v2",":instance","events"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"}]}},"response":[{"id":"fc554d5a-6fcb-46ee-ab2c-aa41e762f9ed","name":"✅ Index","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.publidata.io/v2/:instance/events","host":["https://api.publidata.io"],"path":["v2",":instance","events"],"variable":[{"key":"instance","value":"500-ans-renaissances"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Tue, 06 Nov 2018 14:35:32 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"e272b80759b3239cb223ac313ead9d8a\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"ef157796-c377-4ab4-b340-25fe123f51d3"},{"key":"X-Runtime","value":"0.211831"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"J7dASjXPxB\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"J7dASjXPxB\",\n                \"created_at\": \"2018-11-02T13:36:24Z\",\n                \"updated_at\": \"2018-11-06T14:11:43Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {\n                    \"fr\": \"La 28e édition du Festival International des Jardins abordera un thème cher à la Renaissance.\"\n                },\n                \"name\": {\n                    \"fr\": \"Festival International des Jardins de Chaumont-sur-Loire\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"medium-insert-active\\\"><br></p>\"\n                },\n                \"start_at\": \"2019-04-25T10:00:00Z\",\n                \"end_at\": \"2019-11-03T19:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"y7KpS6Dgxv\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"y7KpS6Dgxv\",\n                \"created_at\": \"2018-10-31T11:26:32Z\",\n                \"updated_at\": \"2018-11-06T10:56:29Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {\n                    \"fr\": \"62eme Colloque International d'études humanistes du centre d'études supérieures de la Renaissance\"\n                },\n                \"name\": {\n                    \"fr\": \"Léonard de Vinci création et innovations \"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"is-active\\\">Le 62ème colloque international d’études humanistes du Centre d’études supérieures de la Renaissance de Tours sera consacré à Léonard de Vinci en 2019.&nbsp;</p><p class=\\\"is-active\\\">Cet événement rassemblera les plus grands spécialistes internationaux du sujet et proposera d’aborder toutes les facettes de l’oeuvre de Léonard sous le prisme de l’invention et de l’innovation : mécanique, médecine, architecture, biomimétisme, etc. Une partie de ce colloque se tiendra dans des lieux marqués par la figure de Léonard de Vinci : le Château du Clos Lucé à Amboise et le Château de Chambord.</p>\"\n                },\n                \"start_at\": \"2019-06-01T00:00:00Z\",\n                \"end_at\": \"2019-06-30T00:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"G7j3SNKzxg\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"G7j3SNKzxg\",\n                \"created_at\": \"2018-10-31T09:20:00Z\",\n                \"updated_at\": \"2018-11-06T10:56:29Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {},\n                \"name\": {\n                    \"fr\": \"Les Borgia à Chinon\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"\\\">La Forteresse royale de Chinon, proposera une reconstitution historique de la venue de César Borgia, fils du pape Alexandre VI pour rencontrer le roi de France à Chinon en 1498 . Reconstitution (cortège équestre). Démonstrations de Calcio Storico (sport florentin de la Renaissance, ancêtre du football actuel…). Dégustations de mets et recettes de la Renaissance florentine. Danses et musiques Renaissance.<br></p>\"\n                },\n                \"start_at\": \"2019-07-21T00:00:00Z\",\n                \"end_at\": \"2019-07-21T00:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"jVJbSWMWVR\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"jVJbSWMWVR\",\n                \"created_at\": \"2018-10-31T08:54:32Z\",\n                \"updated_at\": \"2018-11-06T10:56:28Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {},\n                \"name\": {\n                    \"fr\": \"La renaissance en Val de Loire, en France et en Europe - Festival du film français renaissance\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p>Pour la 21ème édition des Rendez- vous de l’Histoire, le Centre d’Études Supérieures de la Renaissance sera fortement impliqué dans une programmation spécifique « La Renaissance en Val de Loire, en France et en Europe ». Dans le cadre du festival du film français « Renaissance », seront projetés des films historiques accompagnés de moments de réflexion (débats, conférences et ateliers) mettant en perspective la création cinématographique au regard de l’histoire de la peinture historiciste.<br></p>\"\n                },\n                \"start_at\": \"2019-10-01T00:00:00Z\",\n                \"end_at\": \"2019-10-31T00:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"J7dASjXwxB\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"J7dASjXwxB\",\n                \"created_at\": \"2018-10-31T08:42:55Z\",\n                \"updated_at\": \"2018-11-06T10:56:28Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {\n                    \"fr\": \"Parcours numérique, sonore et interactif\"\n                },\n                \"name\": {\n                    \"fr\": \"Renaissance comme Rabelais\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<h3>Parcours numérique, sonore et interactif combinant des moyens techniques innovants capables d’allier  géographie littéraire et géographie réelle. Création d’un parcours sonore géolocalisé à partir d’une application mobile entre La Devinière, maison natale de Rabelais, et l’Abbaye de Seuilly.<br></h3>\"\n                },\n                \"start_at\": \"2019-07-01T00:00:00Z\",\n                \"end_at\": \"2019-10-31T00:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"DVAWS3NQxX\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"DVAWS3NQxX\",\n                \"created_at\": \"2018-10-31T08:34:25Z\",\n                \"updated_at\": \"2018-11-06T10:56:28Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {},\n                \"name\": {\n                    \"fr\": \"Spectacle numérique itinérant Renaissance(S)\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p>Ce spectacle numérique invite le public à s’immerger par le biais des dernières technologies dans un environnement visuel et sonore en plusieurs dimensions. Diverses technologies, de réalité augmentée ou de réalité virtuelle peuvent être détournées par le biais d’une immersion sensori-motrice grâce à une ou plusieurs interfaces visuelles. Ce spectacle proposera une narration dans l’esprit humaniste et novateur de la Renaissance.</p><p>Il évoquera les dimensions créatives, anticipatrices, pluridisciplinaires de Léonard de Vinci, les acteurs, oeuvres, sites patrimoniaux et culturels majeurs du territoire à la Renaissance, le Centre-Val de Loire aujourd’hui et sa projection dans le futur.</p>\"\n                },\n                \"start_at\": \"2019-08-15T19:00:00Z\",\n                \"end_at\": \"2019-09-15T23:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"8VvZS1y0Vv\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"8VvZS1y0Vv\",\n                \"created_at\": \"2018-10-31T08:29:42Z\",\n                \"updated_at\": \"2018-11-06T10:56:28Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {},\n                \"name\": {\n                    \"fr\": \"Magnificences à la cour de France\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"is-active\\\">Ce spectacle de l’ensemble Doulce Mémoire, recrée l’univers d’une fête à la cour de François I<sup>er</sup>, autour de 1515, celles qui virent l’arrivée en France de Léonard de Vinci à l’invitation du roi français. Peintre, inventeur de génie, Léonard était aussi organisateur de fêtes fameuses, dont l’inventivité et la puissance créatrice étaient appréciées les puissants.<br></p>\"\n                },\n                \"start_at\": \"2019-07-23T19:00:00Z\",\n                \"end_at\": \"2019-07-23T23:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"NLwlSvmaVD\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"NLwlSvmaVD\",\n                \"created_at\": \"2018-10-30T16:51:07Z\",\n                \"updated_at\": \"2018-11-06T10:56:27Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {\n                    \"fr\": \"Exposition regroupant des artistes contemporains influencés par Léonard de Vinci et la Renaissance.\"\n                },\n                \"name\": {\n                    \"fr\": \"Hommage contemporain à la Renaissance\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"is-active\\\">Exposition d’artistes contemporains ayant été influencés par Léonard de Vinci et la Renaissance, sur l’exemple de Fabien Merelle, établi à Tours et travaillant sur la scène internationale.&nbsp;</p><p class=\\\"is-active\\\">L’exposition « Hommage à Léonard » transpose dans l’art contemporain l’héritage du maître du Cinquecento mort en Val de Loire il y a 500 ans. Vaste cabinet de curiosités, l’exposition présentée dans les salles historiques du château fait écho au système de pensée&nbsp;<span style=\\\"font-size: 1em; font-family: ProximaNova, Helvetica, Arial, &quot;Sans Serif&quot;;\\\">du Maitre, génie polyvalent où la réalisation ne constitue pas la fin mais le moyen de la réflexion. Conçue comme une sorte de « mise en curiosité » envers les différents apports de Léonard, homme d’esprit universel à l’histoire des arts en Europe, interprétés ou prolongés par différents artistes de notre temps travaillant sur la scène internationale ; l’exposition montre aussi que les échanges entre Italie et France vers 1500, l’italianisme dans les&nbsp;</span><span style=\\\"font-size: 1em; font-family: ProximaNova, Helvetica, Arial, &quot;Sans Serif&quot;;\\\">arts amorcé sous Charles VIII et Louis XII se perpétuent de nos jours, avec les travaux des artistes florentines Antonella Bussanich, Alessandra Capodacqua et Alessandra Ragionier. Comme dans les chapitres d’un livre, chaque salle illustre l’un des thèmes étudiés par Léonard. L’autoportrait / Le portrait / La peinture d’histoire /&nbsp;</span><span style=\\\"font-size: 1em; font-family: ProximaNova, Helvetica, Arial, &quot;Sans Serif&quot;;\\\">Le Paysage / Le codex / La nature morte / Le Portrait féminin / Le Drapé.</span></p>\"\n                },\n                \"start_at\": \"2019-04-01T10:00:00Z\",\n                \"end_at\": \"2019-11-30T18:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"8VOeS416xY\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"8VOeS416xY\",\n                \"created_at\": \"2018-10-29T16:47:42Z\",\n                \"updated_at\": \"2018-11-06T10:56:30Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {\n                    \"fr\": \"Dans le cadre de l'anniversaire des 500ans de la Renaissance, l'artiste Ravo revisite l'oeuvre de François-Guillaume Ménageot \\\"La mort de Léonard de Vinci\\\"\"\n                },\n                \"name\": {\n                    \"fr\": \"Ravo Mattoni invité du Château Royal d' Amboise\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"\\\">Andrea Mattoni alias <b>RAVO</b>, artiste-graffeur italien de son état, a débuté en 2016 un ambitieux projet visant à reproduire, in situ et en très grand format, des chefs-d’œuvre de la peinture classique signés du Caravage, de Delacroix, de Delatour… Profondeur des couleurs, puissance des lignes et de l’échelle, l’hommage de RAVO aux grands maîtres est d’une modernité réjouissante… Le résultat est bluffant.</p><p class=\\\"\\\">De manière à prolonger l’exposition « La Mort de Léonard de Vinci : la construction d’un mythe » préparée avec la BNF, le château royal d’Amboise a demandé à RAVO de réaliser 5 toiles de grandes dimensions (4.5m X 3m). Celles-ci prendront pour sujet des détails du monumental tableau de François-Guillaume Ménageot « La Mort de Léonard de Vinci », et trouveront place sur les murs de la tour cavalière des Minimes, du 2 mai au 2 septembre 2019. Pour honorer cette commande, l’artiste sera en résidence au château royal d’Amboise durant une dizaine de jours, en avril 2019. Il réalisera ses peintures en public.</p><p class=\\\"\\\">Cette exposition est organisée avec le concours de l’association des Ateliers de l’Etoile.</p><p class=\\\"\\\"><span style=\\\"font-size: 1em; font-family: ProximaNova, Helvetica, Arial, &quot;Sans Serif&quot;;\\\"><b>\\\"Exposition « La Mort de Léonard de Vinci : la construction d’un mythe » - Partenariat BNF (Bibliothèque Nationale de France)</b></span><br></p><p class=\\\"\\\">Tous les jours, du 2 mai au 2 septembre 2019.</p><p class=\\\"\\\">La grande exposition intitulée « La Mort de Léonard de Vinci : la construction d’un mythe », articulée autour du monumental tableau (280 cm X 357 cm) de François-Guillaume Ménageot La mort de Léonard de Vinci, et d’une collection de gravures issues des collections nationales, nous éclairera sur la manière dont les contours de l’amitié entre le roi François Ier et Léonard ont été progressivement réécrits par l’Histoire, et assimilés par elle jusqu’à la construction d’un mythe mis au service de l’image de la monarchie française au XVIII<sup>ème</sup> siècle.</p><p>Au cœur de la riche programmation des célébrations du 5ème centenaire, cette exposition majeure viendra aussi rappeler à un public venu des quatre coins du monde la place éternelle qu’occupe Léonard de Vinci en Val de Loire, et à Amboise en particulier où il repose pour l’éternité dans la quiétude de la chapelle du château.\\\"</p>\"\n                },\n                \"start_at\": \"2019-05-02T09:00:00Z\",\n                \"end_at\": \"2019-09-02T18:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"items\": 9,\n        \"count\": 9,\n        \"page\": 1\n    },\n    \"links\": {\n        \"self\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events?page=1\",\n        \"pagination\": {\n            \"first\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events?page=1\",\n            \"last\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events?page=1\"\n        }\n    }\n}"}],"_postman_id":"583582ca-731c-48ed-9317-bb4666edc484"},{"name":"✅ Show","id":"571b562b-f480-443b-a0b8-867d5ac1a236","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/{{instance_id}}/events/:id","description":"<p>Détail d'un événement</p>\n","urlObject":{"path":["v2","{{instance_id}}","events",":id"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[{"id":"636cb202-8e54-4eb0-b865-7bb58746546e","name":"✅ Show","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.publidata.io/v2/{{instance_id}}/events/:id","host":["https://api.publidata.io"],"path":["v2","{{instance_id}}","events",":id"],"variable":[{"key":"id","value":"y7KpS6Dgxv"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Tue, 06 Nov 2018 14:50:05 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"811c246d37cc926cc75bf582cd364fb3\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"d619c237-6f78-4100-9d77-b11aa3b6dc53"},{"key":"X-Runtime","value":"0.051868"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"y7KpS6Dgxv\",\n        \"type\": \"event\",\n        \"attributes\": {\n            \"id\": \"y7KpS6Dgxv\",\n            \"created_at\": \"2018-10-31T11:26:32Z\",\n            \"updated_at\": \"2018-11-06T10:56:29Z\",\n            \"cancelled\": false,\n            \"cancellation_reason\": null,\n            \"free_admission\": null,\n            \"free_admission_condition\": null,\n            \"punchline\": {\n                \"fr\": \"62eme Colloque International d'études humanistes du centre d'études supérieures de la Renaissance\"\n            },\n            \"name\": {\n                \"fr\": \"Léonard de Vinci création et innovations \"\n            },\n            \"blurb\": {\n                \"fr\": \"<p class=\\\"is-active\\\">Le 62ème colloque international d’études humanistes du Centre d’études supérieures de la Renaissance de Tours sera consacré à Léonard de Vinci en 2019.&nbsp;</p><p class=\\\"is-active\\\">Cet événement rassemblera les plus grands spécialistes internationaux du sujet et proposera d’aborder toutes les facettes de l’oeuvre de Léonard sous le prisme de l’invention et de l’innovation : mécanique, médecine, architecture, biomimétisme, etc. Une partie de ce colloque se tiendra dans des lieux marqués par la figure de Léonard de Vinci : le Château du Clos Lucé à Amboise et le Château de Chambord.</p>\"\n            },\n            \"start_at\": \"2019-06-01T00:00:00Z\",\n            \"end_at\": \"2019-06-30T00:00:00Z\"\n        },\n        \"relationships\": {},\n        \"links\": {\n            \"self\": {\n                \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv\"\n            },\n            \"relations\": {\n                \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/cities\",\n                \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/companies\",\n                \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/departments\",\n                \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/elects\",\n                \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/etablissement_publics\",\n                \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/event_groups\",\n                \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/events\",\n                \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/facilities\",\n                \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/news\",\n                \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/non_profits\",\n                \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/performers\",\n                \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/projects\",\n                \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/regions\",\n                \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/skills\"\n            },\n            \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/images\",\n            \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/documents\",\n            \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates\",\n            \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/type\",\n            \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/types\"\n        },\n        \"meta\": {\n            \"licenses\": [\n                {\n                    \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                    \"SPDX\": \"ODbL-1.0\",\n                    \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                    \"targets\": [\n                        \"cancelled\",\n                        \"cancellation_reason\",\n                        \"free_admission\",\n                        \"free_admission_condition\",\n                        \"punchline\",\n                        \"name\",\n                        \"blurb\",\n                        \"start_at\",\n                        \"end_at\"\n                    ]\n                }\n            ],\n            \"instances\": {\n                \"500-ans-renaissances\": [\n                    \"fr\"\n                ]\n            }\n        }\n    }\n}"}],"_postman_id":"571b562b-f480-443b-a0b8-867d5ac1a236"},{"name":"✅ Show with included resources","id":"cf5a9f2c-63dd-43a6-9a5d-f15af978ace3","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id?include=dates,types","description":"<p>Avec le paramètre <code>include</code> vous avez la possibilité d'insérer dans la vue principale des ressources liées, vous évitant des requêtes supplémentaires.</p>\n","urlObject":{"path":["v2",":instance","events",":id"],"host":["https://api.publidata.io"],"query":[{"description":{"content":"<p>Liste des ressources à insérer</p>\n","type":"text/plain"},"key":"include","value":"dates,types"}],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[{"id":"323a6e05-c9ab-4489-8299-25a6c8a4de08","name":"✅ Show with included resources","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.publidata.io/v2/:instance/events/:id?include=dates,types","host":["https://api.publidata.io"],"path":["v2",":instance","events",":id"],"query":[{"key":"include","value":"dates,types","description":"Liste des ressources à insérer"}],"variable":[{"key":"instance","value":"500-ans-renaissances"},{"key":"id","value":"y7KpS6Dgxv"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Tue, 06 Nov 2018 14:54:52 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"2c566edafdfca2fe7ed4fc7f8ef3e15b\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"b8d67f08-016a-4d6c-b10e-7d6467c5bcdf"},{"key":"X-Runtime","value":"0.483946"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"y7KpS6Dgxv\",\n        \"type\": \"event\",\n        \"attributes\": {\n            \"id\": \"y7KpS6Dgxv\",\n            \"created_at\": \"2018-10-31T11:26:32Z\",\n            \"updated_at\": \"2018-11-06T10:56:29Z\",\n            \"cancelled\": false,\n            \"cancellation_reason\": null,\n            \"free_admission\": null,\n            \"free_admission_condition\": null,\n            \"punchline\": {\n                \"fr\": \"62eme Colloque International d'études humanistes du centre d'études supérieures de la Renaissance\"\n            },\n            \"name\": {\n                \"fr\": \"Léonard de Vinci création et innovations \"\n            },\n            \"blurb\": {\n                \"fr\": \"<p class=\\\"is-active\\\">Le 62ème colloque international d’études humanistes du Centre d’études supérieures de la Renaissance de Tours sera consacré à Léonard de Vinci en 2019.&nbsp;</p><p class=\\\"is-active\\\">Cet événement rassemblera les plus grands spécialistes internationaux du sujet et proposera d’aborder toutes les facettes de l’oeuvre de Léonard sous le prisme de l’invention et de l’innovation : mécanique, médecine, architecture, biomimétisme, etc. Une partie de ce colloque se tiendra dans des lieux marqués par la figure de Léonard de Vinci : le Château du Clos Lucé à Amboise et le Château de Chambord.</p>\"\n            },\n            \"start_at\": \"2019-06-01T00:00:00Z\",\n            \"end_at\": \"2019-06-30T00:00:00Z\"\n        },\n        \"relationships\": {\n            \"types\": {\n                \"data\": []\n            },\n            \"dates\": {\n                \"data\": [\n                    {\n                        \"id\": \"axGeikm1VN\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"8VZZiNZ8Vd\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"eVgRimO4Lo\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"E79OiqZQLM\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"YVYgiW4lxD\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"87oei8vYLQ\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"gLb4iOga7J\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"o7EMiQDr75\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"B72ZiYOv7O\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"y7KAiEO4Lv\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"d7DzidZMLB\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"DLkqijMy7a\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"G7jaiXOoVg\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"jVJvi2nyVR\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"J7d3igMRVB\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"2VX9iOjl7N\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"DVA6ivYn7X\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"8VvJieDWVv\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"D744i3N078\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"NLwjibKKxD\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"Q7BaiA1AVb\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"Kx09iEraLX\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"y7KAiEOMLv\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"d7DzidZmLB\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"DLkqijM67a\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"G7jaiXOAVg\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"jVJvi2nXVR\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"J7d3igMbVB\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"2VX9iOjd7N\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"DVA6ivYR7X\",\n                        \"type\": \"date\"\n                    }\n                ]\n            }\n        },\n        \"links\": {\n            \"self\": {\n                \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv\"\n            },\n            \"relations\": {\n                \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/cities\",\n                \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/companies\",\n                \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/departments\",\n                \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/elects\",\n                \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/etablissement_publics\",\n                \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/event_groups\",\n                \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/events\",\n                \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/facilities\",\n                \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/news\",\n                \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/non_profits\",\n                \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/performers\",\n                \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/projects\",\n                \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/regions\",\n                \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/skills\"\n            },\n            \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/images\",\n            \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/documents\",\n            \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates\",\n            \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/type\",\n            \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/types\"\n        },\n        \"meta\": {\n            \"included\": [\n                \"dates\",\n                \"types\"\n            ],\n            \"licenses\": [\n                {\n                    \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                    \"SPDX\": \"ODbL-1.0\",\n                    \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                    \"targets\": [\n                        \"cancelled\",\n                        \"cancellation_reason\",\n                        \"free_admission\",\n                        \"free_admission_condition\",\n                        \"punchline\",\n                        \"name\",\n                        \"blurb\",\n                        \"start_at\",\n                        \"end_at\"\n                    ]\n                }\n            ],\n            \"instances\": {\n                \"500-ans-renaissances\": [\n                    \"fr\"\n                ]\n            }\n        }\n    },\n    \"included\": [\n        {\n            \"id\": \"axGeikm1VN\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"axGeikm1VN\",\n                \"created_at\": \"2018-10-31T11:33:15Z\",\n                \"updated_at\": \"2018-10-31T11:33:15Z\",\n                \"start_at\": \"2019-06-30T00:00:00Z\",\n                \"end_at\": \"2019-06-30T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 30 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"8VZZiNZ8Vd\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"8VZZiNZ8Vd\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-29T00:00:00Z\",\n                \"end_at\": \"2019-06-29T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 29 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"eVgRimO4Lo\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"eVgRimO4Lo\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-28T00:00:00Z\",\n                \"end_at\": \"2019-06-28T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 28 Fr 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"E79OiqZQLM\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"E79OiqZQLM\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-27T00:00:00Z\",\n                \"end_at\": \"2019-06-27T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 27 Th 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"YVYgiW4lxD\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"YVYgiW4lxD\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-26T00:00:00Z\",\n                \"end_at\": \"2019-06-26T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 26 We 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"87oei8vYLQ\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"87oei8vYLQ\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-25T00:00:00Z\",\n                \"end_at\": \"2019-06-25T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 25 Tu 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"gLb4iOga7J\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"gLb4iOga7J\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-24T00:00:00Z\",\n                \"end_at\": \"2019-06-24T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 24 Mo 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"o7EMiQDr75\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"o7EMiQDr75\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-23T00:00:00Z\",\n                \"end_at\": \"2019-06-23T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 23 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"B72ZiYOv7O\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"B72ZiYOv7O\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-22T00:00:00Z\",\n                \"end_at\": \"2019-06-22T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 22 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"y7KAiEO4Lv\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"y7KAiEO4Lv\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-21T00:00:00Z\",\n                \"end_at\": \"2019-06-21T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 21 Fr 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"d7DzidZMLB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"d7DzidZMLB\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-20T00:00:00Z\",\n                \"end_at\": \"2019-06-20T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 20 Th 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DLkqijMy7a\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DLkqijMy7a\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-19T00:00:00Z\",\n                \"end_at\": \"2019-06-19T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 19 We 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"G7jaiXOoVg\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"G7jaiXOoVg\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-18T00:00:00Z\",\n                \"end_at\": \"2019-06-18T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 18 Tu 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"jVJvi2nyVR\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"jVJvi2nyVR\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-17T00:00:00Z\",\n                \"end_at\": \"2019-06-17T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 17 Mo 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"J7d3igMRVB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"J7d3igMRVB\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-16T00:00:00Z\",\n                \"end_at\": \"2019-06-16T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 16 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"2VX9iOjl7N\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"2VX9iOjl7N\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-15T00:00:00Z\",\n                \"end_at\": \"2019-06-15T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 15 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DVA6ivYn7X\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DVA6ivYn7X\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-14T00:00:00Z\",\n                \"end_at\": \"2019-06-14T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 14 Fr 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"8VvJieDWVv\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"8VvJieDWVv\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-13T00:00:00Z\",\n                \"end_at\": \"2019-06-13T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 13 Th 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"D744i3N078\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"D744i3N078\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-12T00:00:00Z\",\n                \"end_at\": \"2019-06-12T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 12 We 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"NLwjibKKxD\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"NLwjibKKxD\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-11T00:00:00Z\",\n                \"end_at\": \"2019-06-11T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 11 Tu 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"Q7BaiA1AVb\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"Q7BaiA1AVb\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-10T00:00:00Z\",\n                \"end_at\": \"2019-06-10T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 10 Mo 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"Kx09iEraLX\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"Kx09iEraLX\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-09T00:00:00Z\",\n                \"end_at\": \"2019-06-09T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 09 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"y7KAiEOMLv\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"y7KAiEOMLv\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-08T00:00:00Z\",\n                \"end_at\": \"2019-06-08T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 08 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"d7DzidZmLB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"d7DzidZmLB\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-07T00:00:00Z\",\n                \"end_at\": \"2019-06-07T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 07 Fr 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DLkqijM67a\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DLkqijM67a\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-06T00:00:00Z\",\n                \"end_at\": \"2019-06-06T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 06 Th 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"G7jaiXOAVg\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"G7jaiXOAVg\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-05T00:00:00Z\",\n                \"end_at\": \"2019-06-05T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 05 We 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"jVJvi2nXVR\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"jVJvi2nXVR\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-04T00:00:00Z\",\n                \"end_at\": \"2019-06-04T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 04 Tu 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"J7d3igMbVB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"J7d3igMbVB\",\n                \"created_at\": \"2018-10-31T11:33:11Z\",\n                \"updated_at\": \"2018-10-31T11:33:11Z\",\n                \"start_at\": \"2019-06-03T00:00:00Z\",\n                \"end_at\": \"2019-06-03T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 03 Mo 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"2VX9iOjd7N\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"2VX9iOjd7N\",\n                \"created_at\": \"2018-10-31T11:33:11Z\",\n                \"updated_at\": \"2018-10-31T11:33:11Z\",\n                \"start_at\": \"2019-06-02T00:00:00Z\",\n                \"end_at\": \"2019-06-02T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 02 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DVA6ivYR7X\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DVA6ivYR7X\",\n                \"created_at\": \"2018-10-31T11:33:11Z\",\n                \"updated_at\": \"2018-10-31T11:33:11Z\",\n                \"start_at\": \"2019-06-01T00:00:00Z\",\n                \"end_at\": \"2019-06-01T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 01 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"wo7NbcKj7n\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"wo7NbcKj7n\",\n                \"created_at\": \"2018-10-23T01:23:57Z\",\n                \"updated_at\": \"2018-10-23T01:24:19Z\",\n                \"name\": {\n                    \"fr\": \"Rassemblement\"\n                }\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": \"https://publidata-staging.herokuapp.com/api/v2/event_types/wo7NbcKj7n\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"Wn7lQcrKxm\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"Wn7lQcrKxm\",\n                \"created_at\": \"2018-10-23T01:23:57Z\",\n                \"updated_at\": \"2018-10-23T01:24:19Z\",\n                \"name\": {\n                    \"fr\": \"Colloque\"\n                }\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": \"https://publidata-staging.herokuapp.com/api/v2/event_types/Wn7lQcrKxm\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        }\n    ]\n}"}],"_postman_id":"cf5a9f2c-63dd-43a6-9a5d-f15af978ace3"},{"name":"🚧 Show translated","id":"0ec13210-bf95-492a-ba16-76c615b9b8c9","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id?lang=en","description":"<p>Le paramètre <code>lang</code> vous permet de récupérer les contenus éditoriaux d'une ressource dans une langue donnée.</p>\n","urlObject":{"path":["v2",":instance","events",":id"],"host":["https://api.publidata.io"],"query":[{"description":{"content":"<p>Langue désirée</p>\n","type":"text/plain"},"key":"lang","value":"en"}],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"0ec13210-bf95-492a-ba16-76c615b9b8c9"},{"name":"🚧 Search","id":"e82a495b-2722-445a-b904-cb55da25dc5f","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.publidata.io/v2/:instance/events/?q=Sénart&size=10&page=1&marker=false&instances[]=2&types[]=Event&performers[]=Nakht&facilities[]=8&events[]=1&event_groups[]=1&news[]=1&projects[]=1&cities[]=7&etablissement_publics[]=1&departments[]=1&regions[]=1&skills[]=1&elects[]=1&bbox[]&event_types[]=Oeuvre d'art&event_styles[]=Gymnastique&date[start]=1526054400&date[end]=1526083199&price[min]=10&price[max]=50&free_admission=true&accessibilities[]=has_deaf_accessibility","description":"<p>Recherche d'événements : 🚧 à venir... </p>\n","urlObject":{"path":["v2",":instance","events",""],"host":["https://api.publidata.io"],"query":[{"description":{"content":"<p>Filtre textuel</p>\n","type":"text/plain"},"key":"q","value":"Sénart"},{"description":{"content":"<p>Nombre de résultats retournés (defaut: 10)</p>\n","type":"text/plain"},"key":"size","value":"10"},{"description":{"content":"<p>Pagination (defaut: 1)</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>Filtre booléen pour ne retourner que les locations (default: false)</p>\n","type":"text/plain"},"key":"marker","value":"false"},{"description":{"content":"<p>Filtre par instance (array d'id)</p>\n","type":"text/plain"},"key":"instances[]","value":"2"},{"description":{"content":"<p>Filtre par type de ressource (array de type parmi la liste suivante : News Event Facility Project City Epci Department Region EventGroup Skill Elect Performer Company NonProfit EtablissementPublic)</p>\n","type":"text/plain"},"key":"types[]","value":"Event"},{"description":{"content":"<p>Filtre par artiste lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"performers[]","value":"Nakht"},{"description":{"content":"<p>Filtre par équipement lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"facilities[]","value":"8"},{"description":{"content":"<p>Filtre par événement lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"events[]","value":"1"},{"description":{"content":"<p>Filtre par groupe d'événements lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"event_groups[]","value":"1"},{"description":{"content":"<p>Filtre par actualité liée (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"news[]","value":"1"},{"description":{"content":"<p>Filtre par projet lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"projects[]","value":"1"},{"description":{"content":"<p>Filtre par ville et location liées (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"cities[]","value":"7"},{"description":{"content":"<p>Filtre par établissement public lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"etablissement_publics[]","value":"1"},{"description":{"content":"<p>Filtre par departement lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"departments[]","value":"1"},{"description":{"content":"<p>Filtre par region liée (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"regions[]","value":"1"},{"description":{"content":"<p>Filtre par compétence liée (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"skills[]","value":"1"},{"description":{"content":"<p>Filtre par élu lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"elects[]","value":"1"},{"description":{"content":"<p>Filtre géographique (array de latitudes, longitudes dans l'ordre suivant minX, minY, maxX, maxY)</p>\n","type":"text/plain"},"key":"bbox[]","value":null},{"description":{"content":"<p>Filtre par type d'événement (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"event_types[]","value":"Oeuvre d'art"},{"description":{"content":"<p>Filtre par style d'événement (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"event_styles[]","value":"Gymnastique"},{"description":{"content":"<p>Filtre par date/heure de début (timestamp en seconde)</p>\n","type":"text/plain"},"key":"date[start]","value":"1526054400"},{"description":{"content":"<p>Filtre par date/heure de fin (timestamp en seconde)</p>\n","type":"text/plain"},"key":"date[end]","value":"1526083199"},{"description":{"content":"<p>Filtre de prix minimum</p>\n","type":"text/plain"},"key":"price[min]","value":"10"},{"description":{"content":"<p>Filtre de prix maximum</p>\n","type":"text/plain"},"key":"price[max]","value":"50"},{"description":{"content":"<p>Filtre de gratuité (boolean)</p>\n","type":"text/plain"},"key":"free_admission","value":"true"},{"description":{"content":"<p>Filtre d'accessibilité (array de string)</p>\n","type":"text/plain"},"key":"accessibilities[]","value":"has_deaf_accessibility"}],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"}]}},"response":[{"id":"7f179c03-c81c-4109-b8df-87a89b53dcce","name":"Search events","originalRequest":{"method":"GET","header":[],"url":{"raw":"www.publidata.io/api/v1/events?q=&options[geo][top_left][lat]=49.05965195372349&options[geo][top_left][lon]=2.1371613664061897&options[geo][bottom_right][lat]=48.21570798955211&options[geo][bottom_right][lon]=2.7688752335936897&options[city]=Combs-la-Ville&options[paging][from]=0&options[event_types][]=Concert&options[dates][start_date]=1521812100000&options[dates][end_date]=1522499700000&options[instances][]=2","host":["www","publidata","io"],"path":["api","v1","events"],"query":[{"key":"q","value":"","description":"Recherche (full-text)"},{"key":"options[geo][top_left][lat]","value":"49.05965195372349","description":"Latitude coin supérieur gauche geo-box (lat)"},{"key":"options[geo][top_left][lon]","value":"2.1371613664061897","description":"Longitude coin supérieur gauche geo-box (lon)"},{"key":"options[geo][bottom_right][lat]","value":"48.21570798955211","description":"Latitude coin inférieur droit geo-box (lat)"},{"key":"options[geo][bottom_right][lon]","value":"2.7688752335936897","description":"Longitude coin inférieur droit geo-box (lon)"},{"key":"options[city]","value":"Combs-la-Ville","description":"Ville (full-text ou code postal)"},{"key":"options[paging][from]","value":"0","description":"Début de la pagination (integer)"},{"key":"options[event_types][]","value":"Concert","description":"Types d'événement (array de string)"},{"key":"options[dates][start_date]","value":"1521812100000","description":"Date de début (format timestamp unix 1508267068688)"},{"key":"options[dates][end_date]","value":"1522499700000","description":"Date de fin (format timestamp unix 1539803068688)"},{"key":"options[instances][]","value":"2"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"took\": 11,\n    \"timed_out\": false,\n    \"_shards\": {\n        \"total\": 1,\n        \"successful\": 1,\n        \"failed\": 0\n    },\n    \"hits\": {\n        \"total\": 2,\n        \"max_score\": 0.9812665,\n        \"hits\": [\n            {\n                \"_index\": \"events\",\n                \"_type\": \"event\",\n                \"_id\": \"3241\",\n                \"_score\": 0.9812665,\n                \"_source\": {\n                    \"id\": 3241,\n                    \"name\": \"Concert des orchestres\",\n                    \"slug\": \"concert-des-orchestres\",\n                    \"status\": \"published\",\n                    \"free_admission\": true,\n                    \"start_date\": \"2018-03-23T00:00:00.000+01:00\",\n                    \"end_date\": \"2018-03-23T00:00:00.000+01:00\",\n                    \"punchline\": \"Le vendredi 23 mars 2018 à 20h au Théâtre de la Coupole, les musiciens du Conservatoire Maurice Ohana de Combs-la-ville vous attendent pour leur rendez-vous annuel...\",\n                    \"blurb\": \"Cette soirée donne la possibilité à plusieurs formations orchestrales du conservatoire Maurice Ohana de se produire sur scène. \\r\\n\\r\\nProgramme musical éclectique et varié, ce concert  permet de vivre la musique ensemble et de la partager sans modération avec le public.\",\n                    \"linked_objects\": [\n                        {\n                            \"id\": 180,\n                            \"type\": \"Facility\",\n                            \"name\": \"La Coupole\"\n                        },\n                        {\n                            \"id\": 12,\n                            \"type\": \"City\",\n                            \"name\": \"Combs-la-Ville\"\n                        }\n                    ],\n                    \"cover_picture\": {\n                        \"id\": 22632,\n                        \"name\": \"image de couverture de Concert des orchestres\",\n                        \"alt\": \"image de couverture de Concert des orchestres\",\n                        \"description\": \"image de couverture de Concert des orchestres\",\n                        \"slug\": null,\n                        \"image_urls_as_json\": {\n                            \"image_original_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/632/original/open-uri20171002-4-1etqlbo?1506962457\",\n                            \"image_small_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/632/image_small/open-uri20171002-4-1etqlbo?1506962457\",\n                            \"image_medium_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/632/image_medium/open-uri20171002-4-1etqlbo?1506962457\",\n                            \"image_large_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/632/image_large/open-uri20171002-4-1etqlbo?1506962457\"\n                        }\n                    },\n                    \"instances\": [\n                        {\n                            \"id\": 2,\n                            \"slug\": \"portail-sortir-gps\"\n                        }\n                    ],\n                    \"event_type\": {\n                        \"id\": 13,\n                        \"name\": \"Concert\"\n                    },\n                    \"event_styles\": [\n                        {\n                            \"id\": 82,\n                            \"name\": \"World Music\"\n                        }\n                    ],\n                    \"event_dates\": [\n                        {\n                            \"id\": 37799,\n                            \"start_hour\": \"2000-01-01T20:00:00.000Z\",\n                            \"end_hour\": \"2000-01-01T22:00:00.000Z\",\n                            \"date\": \"2018-03-23T00:00:00.000+01:00\",\n                            \"sold_out\": false,\n                            \"start_date\": \"2018-03-23T20:00:00.000+00:00\",\n                            \"end_date\": \"2018-03-23T22:00:00.000+00:00\"\n                        }\n                    ],\n                    \"facilities\": [\n                        {\n                            \"id\": 180,\n                            \"name\": \"La Coupole\",\n                            \"slug\": \"la-coupole\",\n                            \"address\": \"Rue Jean François Millet, 77380 Combs-la-Ville, France\",\n                            \"location\": {\n                                \"lat\": 48.659695,\n                                \"lon\": 2.5662415\n                            }\n                        }\n                    ],\n                    \"locations\": [],\n                    \"fees\": [],\n                    \"tags\": [],\n                    \"pages\": [\n                        {\n                            \"id\": 7659,\n                            \"instance\": {\n                                \"id\": 2,\n                                \"slug\": \"portail-sortir-gps\"\n                            }\n                        }\n                    ]\n                }\n            },\n            {\n                \"_index\": \"events\",\n                \"_type\": \"event\",\n                \"_id\": \"3983\",\n                \"_score\": 0.9794048,\n                \"_source\": {\n                    \"id\": 3983,\n                    \"name\": \"Après-midi musicale: Claude Debussy\",\n                    \"slug\": \"apres-midi-musicale-claude-debussy\",\n                    \"status\": \"published\",\n                    \"free_admission\": true,\n                    \"start_date\": \"2018-03-24T00:00:00.000+01:00\",\n                    \"end_date\": \"2018-03-24T00:00:00.000+01:00\",\n                    \"punchline\": \"A l'occasion du centenaire de la mort de Claude Debussy, la media-ludothèque et le conservatoire Maurice Ohana vous invitent à une après-midi musical, le samedi 24 mars à partir de 15h30.\",\n                    \"blurb\": \"Claude Debussy (1862-1918) était un compositeur français. Pour célébrer son centenaire, nous vous invitons à un après-midi musical. Au programme, une conférence par Bruno Giner sur le compositeur à 15h30. \\r\\nPuis, à 18h, les élèves du conservatoire interpréteront une sélection d’œuvres de Claude Debussy.\",\n                    \"linked_objects\": [\n                        {\n                            \"id\": 42,\n                            \"type\": \"Facility\",\n                            \"name\": \"Médiathèque de Combs-la-Ville\"\n                        },\n                        {\n                            \"id\": 12,\n                            \"type\": \"City\",\n                            \"name\": \"Combs-la-Ville\"\n                        }\n                    ],\n                    \"cover_picture\": {\n                        \"id\": 24665,\n                        \"name\": \"image de couverture de Après-midi musicale: Claude Debussy\",\n                        \"alt\": \"image de couverture de Après-midi musicale: Claude Debussy\",\n                        \"description\": \"image de couverture de Après-midi musicale: Claude Debussy\",\n                        \"slug\": null,\n                        \"image_urls_as_json\": {\n                            \"image_original_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/665/original/Photo_23a_Claude_Debussy.jpg?1516441408\",\n                            \"image_small_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/665/image_small/Photo_23a_Claude_Debussy.jpg?1516441408\",\n                            \"image_medium_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/665/image_medium/Photo_23a_Claude_Debussy.jpg?1516441408\",\n                            \"image_large_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/665/image_large/Photo_23a_Claude_Debussy.jpg?1516441408\"\n                        }\n                    },\n                    \"instances\": [\n                        {\n                            \"id\": 2,\n                            \"slug\": \"portail-sortir-gps\"\n                        }\n                    ],\n                    \"event_type\": {\n                        \"id\": 13,\n                        \"name\": \"Concert\"\n                    },\n                    \"event_styles\": [\n                        {\n                            \"id\": 111,\n                            \"name\": \"Musique Classique\"\n                        }\n                    ],\n                    \"event_dates\": [\n                        {\n                            \"id\": 41100,\n                            \"start_hour\": \"2000-01-01T15:30:00.000Z\",\n                            \"end_hour\": \"2000-01-01T19:30:00.000Z\",\n                            \"date\": \"2018-03-24T00:00:00.000+01:00\",\n                            \"sold_out\": false,\n                            \"start_date\": \"2018-03-24T15:30:00.000+00:00\",\n                            \"end_date\": \"2018-03-24T19:30:00.000+00:00\"\n                        }\n                    ],\n                    \"facilities\": [\n                        {\n                            \"id\": 42,\n                            \"name\": \"Médiathèque de Combs-la-Ville\",\n                            \"slug\": \"mediatheque-de-combs-la-ville\",\n                            \"address\": \"Rue Jean François Millet, 77380 Combs-la-Ville, France\",\n                            \"location\": {\n                                \"lat\": 48.659695,\n                                \"lon\": 2.5662415\n                            }\n                        }\n                    ],\n                    \"locations\": [],\n                    \"fees\": [],\n                    \"accessibility\": {\n                        \"id\": 1766,\n                        \"deaf_lsf\": false,\n                        \"deaf_vision_based\": false,\n                        \"deaf_subtitle\": false,\n                        \"deaf_hearing_loop\": false,\n                        \"blind_audio_description\": false,\n                        \"blind_darkness_based\": false,\n                        \"blind_text_based\": false,\n                        \"blind_braille\": false,\n                        \"blind_large_print\": false,\n                        \"motor_disabled_access\": true,\n                        \"has_accessibility\": true,\n                        \"has_deaf_accessibility\": false,\n                        \"has_blind_accessibility\": false\n                    },\n                    \"tags\": [\n                        \"Culture\"\n                    ],\n                    \"pages\": [\n                        {\n                            \"id\": 8636,\n                            \"instance\": {\n                                \"id\": 2,\n                                \"slug\": \"portail-sortir-gps\"\n                            }\n                        }\n                    ]\n                }\n            }\n        ]\n    },\n    \"aggregations\": {\n        \"event_styles_terms_agg\": {\n            \"doc_count\": 2,\n            \"name\": {\n                \"doc_count_error_upper_bound\": 0,\n                \"sum_other_doc_count\": 0,\n                \"buckets\": [\n                    {\n                        \"key\": \"111\",\n                        \"doc_count\": 1,\n                        \"name\": {\n                            \"doc_count_error_upper_bound\": 0,\n                            \"sum_other_doc_count\": 0,\n                            \"buckets\": [\n                                {\n                                    \"key\": \"classique\",\n                                    \"doc_count\": 1\n                                },\n                                {\n                                    \"key\": \"musique\",\n                                    \"doc_count\": 1\n                                }\n                            ]\n                        }\n                    },\n                    {\n                        \"key\": \"82\",\n                        \"doc_count\": 1,\n                        \"name\": {\n                            \"doc_count_error_upper_bound\": 0,\n                            \"sum_other_doc_count\": 0,\n                            \"buckets\": [\n                                {\n                                    \"key\": \"music\",\n                                    \"doc_count\": 1\n                                },\n                                {\n                                    \"key\": \"world\",\n                                    \"doc_count\": 1\n                                }\n                            ]\n                        }\n                    }\n                ]\n            }\n        },\n        \"events\": {\n            \"doc_count\": 3838,\n            \"dates\": {\n                \"doc_count\": 11064,\n                \"this_month\": {\n                    \"doc_count\": 737,\n                    \"events\": {\n                        \"doc_count\": 278\n                    }\n                },\n                \"this_week_end\": {\n                    \"doc_count\": 81,\n                    \"events\": {\n                        \"doc_count\": 54\n                    }\n                },\n                \"past\": {\n                    \"doc_count\": 10070,\n                    \"events\": {\n                        \"doc_count\": 3132\n                    }\n                },\n                \"today\": {\n                    \"doc_count\": 34,\n                    \"events\": {\n                        \"doc_count\": 28\n                    }\n                },\n                \"tomorrow\": {\n                    \"doc_count\": 22,\n                    \"events\": {\n                        \"doc_count\": 19\n                    }\n                },\n                \"last_days\": {\n                    \"doc_count\": 133,\n                    \"events\": {\n                        \"doc_count\": 75\n                    }\n                },\n                \"upcoming\": {\n                    \"doc_count\": 1028,\n                    \"events\": {\n                        \"doc_count\": 390\n                    }\n                },\n                \"this_week\": {\n                    \"doc_count\": 197,\n                    \"events\": {\n                        \"doc_count\": 96\n                    }\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"e82a495b-2722-445a-b904-cb55da25dc5f"}],"id":"231530a5-7d3c-474d-b893-ee7c478c385a","_postman_id":"231530a5-7d3c-474d-b893-ee7c478c385a","description":""},{"name":"Ressources liées","item":[{"name":"✅ Types","id":"595aa69a-dff6-43e7-b65e-3abd9961e953","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/types","description":"<p>Type(s) de la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","types"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[{"id":"f8dc8b94-03c5-427d-a71a-89d1d6f8ac1f","name":"✅ Types","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.publidata.io/v2/:instance/events/:id/types","host":["https://api.publidata.io"],"path":["v2",":instance","events",":id","types"],"variable":[{"key":"instance","value":"500-ans-renaissances"},{"key":"id","value":"y7KpS6Dgxv"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Tue, 06 Nov 2018 14:56:10 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"aca7a58992ce54decfd0aa1309558bf9\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"d9a108a9-5d7c-486f-9b8f-620b97ceecb4"},{"key":"X-Runtime","value":"0.137086"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"wo7NbcKj7n\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"wo7NbcKj7n\",\n                \"created_at\": \"2018-10-23T01:23:57Z\",\n                \"updated_at\": \"2018-10-23T01:24:19Z\",\n                \"name\": {\n                    \"fr\": \"Rassemblement\"\n                }\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": \"https://publidata-staging.herokuapp.com/api/v2/event_types/wo7NbcKj7n\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"Wn7lQcrKxm\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"Wn7lQcrKxm\",\n                \"created_at\": \"2018-10-23T01:23:57Z\",\n                \"updated_at\": \"2018-10-23T01:24:19Z\",\n                \"name\": {\n                    \"fr\": \"Colloque\"\n                }\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": \"https://publidata-staging.herokuapp.com/api/v2/event_types/Wn7lQcrKxm\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        }\n    ],\n    \"meta\": {\n        \"items\": 2,\n        \"count\": 2,\n        \"page\": 1\n    },\n    \"links\": {\n        \"self\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/types?page=1\",\n        \"pagination\": {\n            \"first\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/types?page=1\",\n            \"last\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/types?page=1\"\n        }\n    }\n}"}],"_postman_id":"595aa69a-dff6-43e7-b65e-3abd9961e953"},{"name":"🚧 Themes","id":"42bd1da5-98f9-4d54-a008-bf64ac72b26a","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/themes","description":"<p>Thème(s) associé(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","themes"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"42bd1da5-98f9-4d54-a008-bf64ac72b26a"},{"name":"✅ Dates","id":"9e21cfa7-e20f-4fd5-b576-40b4bc30dcc9","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/dates","description":"<p>Date(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","dates"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[{"id":"173f07ba-d9db-4a39-b6da-fe04eaafe055","name":"✅ Dates","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.publidata.io/v2/:instance/events/:id/dates","host":["https://api.publidata.io"],"path":["v2",":instance","events",":id","dates"],"variable":[{"key":"instance","value":"500-ans-renaissances"},{"key":"id","value":"y7KpS6Dgxv"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Tue, 06 Nov 2018 14:57:37 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"5019bf7102c4e9c481afd4dc20c410e1\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"5b74b321-cdd9-461b-a32e-4263c646d08b"},{"key":"X-Runtime","value":"0.316049"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"DVA6ivYR7X\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DVA6ivYR7X\",\n                \"created_at\": \"2018-10-31T11:33:11Z\",\n                \"updated_at\": \"2018-10-31T11:33:11Z\",\n                \"start_at\": \"2019-06-01T00:00:00Z\",\n                \"end_at\": \"2019-06-01T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 01 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"2VX9iOjd7N\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"2VX9iOjd7N\",\n                \"created_at\": \"2018-10-31T11:33:11Z\",\n                \"updated_at\": \"2018-10-31T11:33:11Z\",\n                \"start_at\": \"2019-06-02T00:00:00Z\",\n                \"end_at\": \"2019-06-02T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 02 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"J7d3igMbVB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"J7d3igMbVB\",\n                \"created_at\": \"2018-10-31T11:33:11Z\",\n                \"updated_at\": \"2018-10-31T11:33:11Z\",\n                \"start_at\": \"2019-06-03T00:00:00Z\",\n                \"end_at\": \"2019-06-03T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 03 Mo 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"jVJvi2nXVR\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"jVJvi2nXVR\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-04T00:00:00Z\",\n                \"end_at\": \"2019-06-04T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 04 Tu 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"G7jaiXOAVg\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"G7jaiXOAVg\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-05T00:00:00Z\",\n                \"end_at\": \"2019-06-05T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 05 We 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DLkqijM67a\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DLkqijM67a\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-06T00:00:00Z\",\n                \"end_at\": \"2019-06-06T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 06 Th 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"d7DzidZmLB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"d7DzidZmLB\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-07T00:00:00Z\",\n                \"end_at\": \"2019-06-07T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 07 Fr 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"y7KAiEOMLv\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"y7KAiEOMLv\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-08T00:00:00Z\",\n                \"end_at\": \"2019-06-08T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 08 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"Kx09iEraLX\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"Kx09iEraLX\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-09T00:00:00Z\",\n                \"end_at\": \"2019-06-09T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 09 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"Q7BaiA1AVb\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"Q7BaiA1AVb\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-10T00:00:00Z\",\n                \"end_at\": \"2019-06-10T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 10 Mo 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"NLwjibKKxD\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"NLwjibKKxD\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-11T00:00:00Z\",\n                \"end_at\": \"2019-06-11T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 11 Tu 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"D744i3N078\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"D744i3N078\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-12T00:00:00Z\",\n                \"end_at\": \"2019-06-12T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 12 We 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"8VvJieDWVv\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"8VvJieDWVv\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-13T00:00:00Z\",\n                \"end_at\": \"2019-06-13T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 13 Th 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DVA6ivYn7X\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DVA6ivYn7X\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-14T00:00:00Z\",\n                \"end_at\": \"2019-06-14T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 14 Fr 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"2VX9iOjl7N\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"2VX9iOjl7N\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-15T00:00:00Z\",\n                \"end_at\": \"2019-06-15T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 15 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"J7d3igMRVB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"J7d3igMRVB\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-16T00:00:00Z\",\n                \"end_at\": \"2019-06-16T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 16 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"jVJvi2nyVR\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"jVJvi2nyVR\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-17T00:00:00Z\",\n                \"end_at\": \"2019-06-17T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 17 Mo 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"G7jaiXOoVg\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"G7jaiXOoVg\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-18T00:00:00Z\",\n                \"end_at\": \"2019-06-18T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 18 Tu 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DLkqijMy7a\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DLkqijMy7a\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-19T00:00:00Z\",\n                \"end_at\": \"2019-06-19T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 19 We 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"d7DzidZMLB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"d7DzidZMLB\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-20T00:00:00Z\",\n                \"end_at\": \"2019-06-20T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 20 Th 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        }\n    ],\n    \"meta\": {\n        \"items\": 20,\n        \"count\": 30,\n        \"page\": 1\n    },\n    \"links\": {\n        \"self\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates?page=1\",\n        \"pagination\": {\n            \"first\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates?page=1\",\n            \"next\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates?page=2\",\n            \"last\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates?page=2\"\n        }\n    }\n}"}],"_postman_id":"9e21cfa7-e20f-4fd5-b576-40b4bc30dcc9"},{"name":"🚧 Tickets","id":"e1e8c748-dabd-40ba-8c08-ce2eef33a264","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/tickets","description":"<p>Billetterie(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","tickets"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"e1e8c748-dabd-40ba-8c08-ce2eef33a264"},{"name":"🚧 Fees","id":"8fba34df-3968-4a4a-b7d8-a55ffce897ee","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/fees","description":"<p>Prix lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","fees"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"8fba34df-3968-4a4a-b7d8-a55ffce897ee"},{"name":"🚧 Contacts","id":"bb2735c7-3e7e-4dfc-be0b-b5f5cafa3450","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/contacts","description":"<p>Information(s) de contact liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","contacts"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"bb2735c7-3e7e-4dfc-be0b-b5f5cafa3450"},{"name":"🚧 Socials","id":"88e0e97a-2155-47c8-b852-f41e4f12ec29","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/socials","description":"<p>Information(s) sociale(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","socials"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"88e0e97a-2155-47c8-b852-f41e4f12ec29"},{"name":"🚧 Public","id":"ff2235ff-b032-42e6-824c-21d7bfd97c12","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/public","description":"<p>Public associé à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","public"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"ff2235ff-b032-42e6-824c-21d7bfd97c12"},{"name":"🚧 Accessibility","id":"3866cb7a-2301-4d0b-8144-a6c357bf5d44","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/accessibility","description":"<p>Information(s) d'accessibilité liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","accessibility"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"3866cb7a-2301-4d0b-8144-a6c357bf5d44"},{"name":"🚧 Partners","id":"329692b1-cacf-41a9-95cc-acbf8da62a8a","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/partners","description":"<p>Partenaire(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","partners"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"329692b1-cacf-41a9-95cc-acbf8da62a8a"},{"name":"🚧 Instances","id":"dcf3410e-75c6-4092-87bb-f8025bd3c5d0","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/instances","description":"<p>Instance(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","instances"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"dcf3410e-75c6-4092-87bb-f8025bd3c5d0"},{"name":"🚧 Pages","id":"a14ec424-3adf-4d8c-b669-2ecd5187d7d2","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/skills","description":"<p>Page(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","skills"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"a14ec424-3adf-4d8c-b669-2ecd5187d7d2"},{"name":"🚧 Contributors","id":"4fc4cc90-3b80-468a-82a3-fdd197f10c3d","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/contributors","description":"<p>Contributeur(s) / mainteneur(s) de la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","contributors"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"4fc4cc90-3b80-468a-82a3-fdd197f10c3d"}],"id":"d7139a64-cf8c-494c-9ce0-ef9bc12af801","_postman_id":"d7139a64-cf8c-494c-9ce0-ef9bc12af801","description":""},{"name":"Relations","item":[{"name":"🚧 Relations","id":"92dee2b4-933f-4b8c-99dc-4ebd9dd5f31f","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/themes","description":"<p>Ressource(s) associée(s) à ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","themes"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"92dee2b4-933f-4b8c-99dc-4ebd9dd5f31f"},{"name":"🚧 Facilities","id":"b66a18c2-db20-4062-ac19-f93caec171e0","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/facilities","description":"<p>Équipement(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","facilities"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"b66a18c2-db20-4062-ac19-f93caec171e0"},{"name":"🚧 Cities","id":"cc58de9d-abd5-4d6e-b6b7-ab38ba470041","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/cities","description":"<p>Commune(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","cities"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"cc58de9d-abd5-4d6e-b6b7-ab38ba470041"},{"name":"🚧 Departments","id":"20dbef1e-a493-46b2-bec1-f34a87d7114c","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/departments","description":"<p>Départements(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","departments"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"20dbef1e-a493-46b2-bec1-f34a87d7114c"},{"name":"🚧 Regions","id":"45acdb3c-9c7c-405c-af62-616d82854c69","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/regions","description":"<p>Région(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","regions"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"45acdb3c-9c7c-405c-af62-616d82854c69"},{"name":"🚧 News","id":"dcda2511-649a-4daa-ab3b-8b8681cc4956","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/news","description":"<p>Actualité(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","news"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"dcda2511-649a-4daa-ab3b-8b8681cc4956"},{"name":"✅ Events","id":"67b44a8e-a570-43b5-b0f4-015ec62a5dfc","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/events","description":"<p>Événement(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","events"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"67b44a8e-a570-43b5-b0f4-015ec62a5dfc"},{"name":"🚧 EventGroups","id":"8289511c-80d5-482b-bad7-16505c9819cd","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/event_groups","description":"<p>Groupe(s) d'événement(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","event_groups"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"8289511c-80d5-482b-bad7-16505c9819cd"},{"name":"🚧 Projects","id":"bbf193f0-8e82-4072-b85f-4689880af04f","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/projects","description":"<p>Projet(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","projects"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"bbf193f0-8e82-4072-b85f-4689880af04f"},{"name":"🚧 Performers","id":"9f3f69c9-3a2a-4cba-83da-a52799b5ba8b","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/performers","description":"<p>Artiste(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","performers"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"9f3f69c9-3a2a-4cba-83da-a52799b5ba8b"},{"name":"🚧 Companies","id":"f5ce4626-e0b3-44bd-9321-8a039e2169ef","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/companies","description":"<p>Entreprise(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","companies"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"f5ce4626-e0b3-44bd-9321-8a039e2169ef"},{"name":"🚧 NonProfits","id":"d4230887-62a8-47e2-904e-07fd79237372","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/non_profits","description":"<p>Associations(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","non_profits"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"d4230887-62a8-47e2-904e-07fd79237372"},{"name":"🚧 EtablissementPublics","id":"601aad65-97d0-435c-84fc-8a1619b22a61","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/etablissement_publics","description":"<p>Établissement(s) public(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","etablissement_publics"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"601aad65-97d0-435c-84fc-8a1619b22a61"},{"name":"🚧 Skills","id":"e596841d-d6ed-4c7d-b748-e19ceeb99dbc","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/skills","description":"<p>Compétence(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","skills"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"e596841d-d6ed-4c7d-b748-e19ceeb99dbc"},{"name":"🚧 Elects","id":"2cbdc496-cc6f-4bb5-8ef6-89fe898921b3","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/elects","description":"<p>Élus(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","elects"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"2cbdc496-cc6f-4bb5-8ef6-89fe898921b3"}],"id":"5e661458-9b1a-489c-8adb-047a9c622cf5","description":"<p>A venir... 🚧</p>\n","event":[{"listen":"prerequest","script":{"id":"487c0f48-a1cd-4aae-af2f-4b62ccf8bb0b","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"4dfafa06-8884-4b36-9c42-31cba1746986","type":"text/javascript","exec":[""]}}],"_postman_id":"5e661458-9b1a-489c-8adb-047a9c622cf5"},{"name":"Médias","item":[{"name":"🚧 Medias","id":"25d1f3e1-9ca9-49c9-b355-809d3d4395a1","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/medias","description":"<p>Média(s) associé(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","medias"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"25d1f3e1-9ca9-49c9-b355-809d3d4395a1"},{"name":"✅ Images","id":"5967e093-647f-4330-8943-5fcc5997c46b","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/images","description":"<p>Image(s) associée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","images"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"5967e093-647f-4330-8943-5fcc5997c46b"},{"name":"✅ Documents","id":"8bffe494-8e2f-4e03-8d92-35066e978c61","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/documents","description":"<p>Document(s) associé(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","documents"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"8bffe494-8e2f-4e03-8d92-35066e978c61"}],"id":"fccd715e-2a53-457b-973e-f84c494cfee3","_postman_id":"fccd715e-2a53-457b-973e-f84c494cfee3","description":""}],"id":"d29670be-4f38-40ba-bccb-5b59776002d7","description":"<p>Les événements</p>\n","event":[{"listen":"prerequest","script":{"id":"768578b7-1e5d-45b7-ab56-2a8b856f2061","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"a419bb76-510b-4b2b-bc5d-608de7e9b0d3","type":"text/javascript","exec":[""]}}],"_postman_id":"d29670be-4f38-40ba-bccb-5b59776002d7"},{"name":"🚧 Villes","item":[{"name":"Endpoints principaux","item":[{"name":"✅ Index","id":"fb386421-302e-4ee8-9d5f-ccbada450820","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events","description":"<p>Liste des événements</p>\n","urlObject":{"path":["v2",":instance","events"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"}]}},"response":[{"id":"3b4c98de-88a2-414e-9885-f936c87af8c4","name":"✅ Index","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.publidata.io/v2/:instance/events","host":["https://api.publidata.io"],"path":["v2",":instance","events"],"variable":[{"key":"instance","value":"500-ans-renaissances"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Tue, 06 Nov 2018 14:35:32 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"e272b80759b3239cb223ac313ead9d8a\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"ef157796-c377-4ab4-b340-25fe123f51d3"},{"key":"X-Runtime","value":"0.211831"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"J7dASjXPxB\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"J7dASjXPxB\",\n                \"created_at\": \"2018-11-02T13:36:24Z\",\n                \"updated_at\": \"2018-11-06T14:11:43Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {\n                    \"fr\": \"La 28e édition du Festival International des Jardins abordera un thème cher à la Renaissance.\"\n                },\n                \"name\": {\n                    \"fr\": \"Festival International des Jardins de Chaumont-sur-Loire\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"medium-insert-active\\\"><br></p>\"\n                },\n                \"start_at\": \"2019-04-25T10:00:00Z\",\n                \"end_at\": \"2019-11-03T19:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"y7KpS6Dgxv\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"y7KpS6Dgxv\",\n                \"created_at\": \"2018-10-31T11:26:32Z\",\n                \"updated_at\": \"2018-11-06T10:56:29Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {\n                    \"fr\": \"62eme Colloque International d'études humanistes du centre d'études supérieures de la Renaissance\"\n                },\n                \"name\": {\n                    \"fr\": \"Léonard de Vinci création et innovations \"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"is-active\\\">Le 62ème colloque international d’études humanistes du Centre d’études supérieures de la Renaissance de Tours sera consacré à Léonard de Vinci en 2019.&nbsp;</p><p class=\\\"is-active\\\">Cet événement rassemblera les plus grands spécialistes internationaux du sujet et proposera d’aborder toutes les facettes de l’oeuvre de Léonard sous le prisme de l’invention et de l’innovation : mécanique, médecine, architecture, biomimétisme, etc. Une partie de ce colloque se tiendra dans des lieux marqués par la figure de Léonard de Vinci : le Château du Clos Lucé à Amboise et le Château de Chambord.</p>\"\n                },\n                \"start_at\": \"2019-06-01T00:00:00Z\",\n                \"end_at\": \"2019-06-30T00:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"G7j3SNKzxg\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"G7j3SNKzxg\",\n                \"created_at\": \"2018-10-31T09:20:00Z\",\n                \"updated_at\": \"2018-11-06T10:56:29Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {},\n                \"name\": {\n                    \"fr\": \"Les Borgia à Chinon\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"\\\">La Forteresse royale de Chinon, proposera une reconstitution historique de la venue de César Borgia, fils du pape Alexandre VI pour rencontrer le roi de France à Chinon en 1498 . Reconstitution (cortège équestre). Démonstrations de Calcio Storico (sport florentin de la Renaissance, ancêtre du football actuel…). Dégustations de mets et recettes de la Renaissance florentine. Danses et musiques Renaissance.<br></p>\"\n                },\n                \"start_at\": \"2019-07-21T00:00:00Z\",\n                \"end_at\": \"2019-07-21T00:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"jVJbSWMWVR\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"jVJbSWMWVR\",\n                \"created_at\": \"2018-10-31T08:54:32Z\",\n                \"updated_at\": \"2018-11-06T10:56:28Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {},\n                \"name\": {\n                    \"fr\": \"La renaissance en Val de Loire, en France et en Europe - Festival du film français renaissance\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p>Pour la 21ème édition des Rendez- vous de l’Histoire, le Centre d’Études Supérieures de la Renaissance sera fortement impliqué dans une programmation spécifique « La Renaissance en Val de Loire, en France et en Europe ». Dans le cadre du festival du film français « Renaissance », seront projetés des films historiques accompagnés de moments de réflexion (débats, conférences et ateliers) mettant en perspective la création cinématographique au regard de l’histoire de la peinture historiciste.<br></p>\"\n                },\n                \"start_at\": \"2019-10-01T00:00:00Z\",\n                \"end_at\": \"2019-10-31T00:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"J7dASjXwxB\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"J7dASjXwxB\",\n                \"created_at\": \"2018-10-31T08:42:55Z\",\n                \"updated_at\": \"2018-11-06T10:56:28Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {\n                    \"fr\": \"Parcours numérique, sonore et interactif\"\n                },\n                \"name\": {\n                    \"fr\": \"Renaissance comme Rabelais\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<h3>Parcours numérique, sonore et interactif combinant des moyens techniques innovants capables d’allier  géographie littéraire et géographie réelle. Création d’un parcours sonore géolocalisé à partir d’une application mobile entre La Devinière, maison natale de Rabelais, et l’Abbaye de Seuilly.<br></h3>\"\n                },\n                \"start_at\": \"2019-07-01T00:00:00Z\",\n                \"end_at\": \"2019-10-31T00:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"DVAWS3NQxX\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"DVAWS3NQxX\",\n                \"created_at\": \"2018-10-31T08:34:25Z\",\n                \"updated_at\": \"2018-11-06T10:56:28Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {},\n                \"name\": {\n                    \"fr\": \"Spectacle numérique itinérant Renaissance(S)\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p>Ce spectacle numérique invite le public à s’immerger par le biais des dernières technologies dans un environnement visuel et sonore en plusieurs dimensions. Diverses technologies, de réalité augmentée ou de réalité virtuelle peuvent être détournées par le biais d’une immersion sensori-motrice grâce à une ou plusieurs interfaces visuelles. Ce spectacle proposera une narration dans l’esprit humaniste et novateur de la Renaissance.</p><p>Il évoquera les dimensions créatives, anticipatrices, pluridisciplinaires de Léonard de Vinci, les acteurs, oeuvres, sites patrimoniaux et culturels majeurs du territoire à la Renaissance, le Centre-Val de Loire aujourd’hui et sa projection dans le futur.</p>\"\n                },\n                \"start_at\": \"2019-08-15T19:00:00Z\",\n                \"end_at\": \"2019-09-15T23:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"8VvZS1y0Vv\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"8VvZS1y0Vv\",\n                \"created_at\": \"2018-10-31T08:29:42Z\",\n                \"updated_at\": \"2018-11-06T10:56:28Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {},\n                \"name\": {\n                    \"fr\": \"Magnificences à la cour de France\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"is-active\\\">Ce spectacle de l’ensemble Doulce Mémoire, recrée l’univers d’une fête à la cour de François I<sup>er</sup>, autour de 1515, celles qui virent l’arrivée en France de Léonard de Vinci à l’invitation du roi français. Peintre, inventeur de génie, Léonard était aussi organisateur de fêtes fameuses, dont l’inventivité et la puissance créatrice étaient appréciées les puissants.<br></p>\"\n                },\n                \"start_at\": \"2019-07-23T19:00:00Z\",\n                \"end_at\": \"2019-07-23T23:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"NLwlSvmaVD\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"NLwlSvmaVD\",\n                \"created_at\": \"2018-10-30T16:51:07Z\",\n                \"updated_at\": \"2018-11-06T10:56:27Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {\n                    \"fr\": \"Exposition regroupant des artistes contemporains influencés par Léonard de Vinci et la Renaissance.\"\n                },\n                \"name\": {\n                    \"fr\": \"Hommage contemporain à la Renaissance\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"is-active\\\">Exposition d’artistes contemporains ayant été influencés par Léonard de Vinci et la Renaissance, sur l’exemple de Fabien Merelle, établi à Tours et travaillant sur la scène internationale.&nbsp;</p><p class=\\\"is-active\\\">L’exposition « Hommage à Léonard » transpose dans l’art contemporain l’héritage du maître du Cinquecento mort en Val de Loire il y a 500 ans. Vaste cabinet de curiosités, l’exposition présentée dans les salles historiques du château fait écho au système de pensée&nbsp;<span style=\\\"font-size: 1em; font-family: ProximaNova, Helvetica, Arial, &quot;Sans Serif&quot;;\\\">du Maitre, génie polyvalent où la réalisation ne constitue pas la fin mais le moyen de la réflexion. Conçue comme une sorte de « mise en curiosité » envers les différents apports de Léonard, homme d’esprit universel à l’histoire des arts en Europe, interprétés ou prolongés par différents artistes de notre temps travaillant sur la scène internationale ; l’exposition montre aussi que les échanges entre Italie et France vers 1500, l’italianisme dans les&nbsp;</span><span style=\\\"font-size: 1em; font-family: ProximaNova, Helvetica, Arial, &quot;Sans Serif&quot;;\\\">arts amorcé sous Charles VIII et Louis XII se perpétuent de nos jours, avec les travaux des artistes florentines Antonella Bussanich, Alessandra Capodacqua et Alessandra Ragionier. Comme dans les chapitres d’un livre, chaque salle illustre l’un des thèmes étudiés par Léonard. L’autoportrait / Le portrait / La peinture d’histoire /&nbsp;</span><span style=\\\"font-size: 1em; font-family: ProximaNova, Helvetica, Arial, &quot;Sans Serif&quot;;\\\">Le Paysage / Le codex / La nature morte / Le Portrait féminin / Le Drapé.</span></p>\"\n                },\n                \"start_at\": \"2019-04-01T10:00:00Z\",\n                \"end_at\": \"2019-11-30T18:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"8VOeS416xY\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"8VOeS416xY\",\n                \"created_at\": \"2018-10-29T16:47:42Z\",\n                \"updated_at\": \"2018-11-06T10:56:30Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {\n                    \"fr\": \"Dans le cadre de l'anniversaire des 500ans de la Renaissance, l'artiste Ravo revisite l'oeuvre de François-Guillaume Ménageot \\\"La mort de Léonard de Vinci\\\"\"\n                },\n                \"name\": {\n                    \"fr\": \"Ravo Mattoni invité du Château Royal d' Amboise\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"\\\">Andrea Mattoni alias <b>RAVO</b>, artiste-graffeur italien de son état, a débuté en 2016 un ambitieux projet visant à reproduire, in situ et en très grand format, des chefs-d’œuvre de la peinture classique signés du Caravage, de Delacroix, de Delatour… Profondeur des couleurs, puissance des lignes et de l’échelle, l’hommage de RAVO aux grands maîtres est d’une modernité réjouissante… Le résultat est bluffant.</p><p class=\\\"\\\">De manière à prolonger l’exposition « La Mort de Léonard de Vinci : la construction d’un mythe » préparée avec la BNF, le château royal d’Amboise a demandé à RAVO de réaliser 5 toiles de grandes dimensions (4.5m X 3m). Celles-ci prendront pour sujet des détails du monumental tableau de François-Guillaume Ménageot « La Mort de Léonard de Vinci », et trouveront place sur les murs de la tour cavalière des Minimes, du 2 mai au 2 septembre 2019. Pour honorer cette commande, l’artiste sera en résidence au château royal d’Amboise durant une dizaine de jours, en avril 2019. Il réalisera ses peintures en public.</p><p class=\\\"\\\">Cette exposition est organisée avec le concours de l’association des Ateliers de l’Etoile.</p><p class=\\\"\\\"><span style=\\\"font-size: 1em; font-family: ProximaNova, Helvetica, Arial, &quot;Sans Serif&quot;;\\\"><b>\\\"Exposition « La Mort de Léonard de Vinci : la construction d’un mythe » - Partenariat BNF (Bibliothèque Nationale de France)</b></span><br></p><p class=\\\"\\\">Tous les jours, du 2 mai au 2 septembre 2019.</p><p class=\\\"\\\">La grande exposition intitulée « La Mort de Léonard de Vinci : la construction d’un mythe », articulée autour du monumental tableau (280 cm X 357 cm) de François-Guillaume Ménageot La mort de Léonard de Vinci, et d’une collection de gravures issues des collections nationales, nous éclairera sur la manière dont les contours de l’amitié entre le roi François Ier et Léonard ont été progressivement réécrits par l’Histoire, et assimilés par elle jusqu’à la construction d’un mythe mis au service de l’image de la monarchie française au XVIII<sup>ème</sup> siècle.</p><p>Au cœur de la riche programmation des célébrations du 5ème centenaire, cette exposition majeure viendra aussi rappeler à un public venu des quatre coins du monde la place éternelle qu’occupe Léonard de Vinci en Val de Loire, et à Amboise en particulier où il repose pour l’éternité dans la quiétude de la chapelle du château.\\\"</p>\"\n                },\n                \"start_at\": \"2019-05-02T09:00:00Z\",\n                \"end_at\": \"2019-09-02T18:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"items\": 9,\n        \"count\": 9,\n        \"page\": 1\n    },\n    \"links\": {\n        \"self\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events?page=1\",\n        \"pagination\": {\n            \"first\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events?page=1\",\n            \"last\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events?page=1\"\n        }\n    }\n}"}],"_postman_id":"fb386421-302e-4ee8-9d5f-ccbada450820"},{"name":"✅ Show","id":"06ff20b8-bd53-4eab-9d5c-a6b980623677","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/{{instance_id}}/events/:id","description":"<p>Détail d'un événement</p>\n","urlObject":{"path":["v2","{{instance_id}}","events",":id"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[{"id":"a969dd29-1d83-4e29-afbc-a8b12c16d505","name":"✅ Show","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.publidata.io/v2/{{instance_id}}/events/:id","host":["https://api.publidata.io"],"path":["v2","{{instance_id}}","events",":id"],"variable":[{"key":"id","value":"y7KpS6Dgxv"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Tue, 06 Nov 2018 14:50:05 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"811c246d37cc926cc75bf582cd364fb3\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"d619c237-6f78-4100-9d77-b11aa3b6dc53"},{"key":"X-Runtime","value":"0.051868"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"y7KpS6Dgxv\",\n        \"type\": \"event\",\n        \"attributes\": {\n            \"id\": \"y7KpS6Dgxv\",\n            \"created_at\": \"2018-10-31T11:26:32Z\",\n            \"updated_at\": \"2018-11-06T10:56:29Z\",\n            \"cancelled\": false,\n            \"cancellation_reason\": null,\n            \"free_admission\": null,\n            \"free_admission_condition\": null,\n            \"punchline\": {\n                \"fr\": \"62eme Colloque International d'études humanistes du centre d'études supérieures de la Renaissance\"\n            },\n            \"name\": {\n                \"fr\": \"Léonard de Vinci création et innovations \"\n            },\n            \"blurb\": {\n                \"fr\": \"<p class=\\\"is-active\\\">Le 62ème colloque international d’études humanistes du Centre d’études supérieures de la Renaissance de Tours sera consacré à Léonard de Vinci en 2019.&nbsp;</p><p class=\\\"is-active\\\">Cet événement rassemblera les plus grands spécialistes internationaux du sujet et proposera d’aborder toutes les facettes de l’oeuvre de Léonard sous le prisme de l’invention et de l’innovation : mécanique, médecine, architecture, biomimétisme, etc. Une partie de ce colloque se tiendra dans des lieux marqués par la figure de Léonard de Vinci : le Château du Clos Lucé à Amboise et le Château de Chambord.</p>\"\n            },\n            \"start_at\": \"2019-06-01T00:00:00Z\",\n            \"end_at\": \"2019-06-30T00:00:00Z\"\n        },\n        \"relationships\": {},\n        \"links\": {\n            \"self\": {\n                \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv\"\n            },\n            \"relations\": {\n                \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/cities\",\n                \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/companies\",\n                \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/departments\",\n                \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/elects\",\n                \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/etablissement_publics\",\n                \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/event_groups\",\n                \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/events\",\n                \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/facilities\",\n                \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/news\",\n                \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/non_profits\",\n                \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/performers\",\n                \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/projects\",\n                \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/regions\",\n                \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/skills\"\n            },\n            \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/images\",\n            \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/documents\",\n            \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates\",\n            \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/type\",\n            \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/types\"\n        },\n        \"meta\": {\n            \"licenses\": [\n                {\n                    \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                    \"SPDX\": \"ODbL-1.0\",\n                    \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                    \"targets\": [\n                        \"cancelled\",\n                        \"cancellation_reason\",\n                        \"free_admission\",\n                        \"free_admission_condition\",\n                        \"punchline\",\n                        \"name\",\n                        \"blurb\",\n                        \"start_at\",\n                        \"end_at\"\n                    ]\n                }\n            ],\n            \"instances\": {\n                \"500-ans-renaissances\": [\n                    \"fr\"\n                ]\n            }\n        }\n    }\n}"}],"_postman_id":"06ff20b8-bd53-4eab-9d5c-a6b980623677"},{"name":"✅ Show with included resources","id":"cd833db4-db51-448f-ada8-70c5cd78b46d","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id?include=dates,types","description":"<p>Avec le paramètre <code>include</code> vous avez la possibilité d'insérer dans la vue principale des ressources liées, vous évitant des requêtes supplémentaires.</p>\n","urlObject":{"path":["v2",":instance","events",":id"],"host":["https://api.publidata.io"],"query":[{"description":{"content":"<p>Liste des ressources à insérer</p>\n","type":"text/plain"},"key":"include","value":"dates,types"}],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[{"id":"b746a0d1-0711-4b8d-aae5-02cdf248c71b","name":"✅ Show with included resources","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.publidata.io/v2/:instance/events/:id?include=dates,types","host":["https://api.publidata.io"],"path":["v2",":instance","events",":id"],"query":[{"key":"include","value":"dates,types","description":"Liste des ressources à insérer"}],"variable":[{"key":"instance","value":"500-ans-renaissances"},{"key":"id","value":"y7KpS6Dgxv"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Tue, 06 Nov 2018 14:54:52 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"2c566edafdfca2fe7ed4fc7f8ef3e15b\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"b8d67f08-016a-4d6c-b10e-7d6467c5bcdf"},{"key":"X-Runtime","value":"0.483946"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"y7KpS6Dgxv\",\n        \"type\": \"event\",\n        \"attributes\": {\n            \"id\": \"y7KpS6Dgxv\",\n            \"created_at\": \"2018-10-31T11:26:32Z\",\n            \"updated_at\": \"2018-11-06T10:56:29Z\",\n            \"cancelled\": false,\n            \"cancellation_reason\": null,\n            \"free_admission\": null,\n            \"free_admission_condition\": null,\n            \"punchline\": {\n                \"fr\": \"62eme Colloque International d'études humanistes du centre d'études supérieures de la Renaissance\"\n            },\n            \"name\": {\n                \"fr\": \"Léonard de Vinci création et innovations \"\n            },\n            \"blurb\": {\n                \"fr\": \"<p class=\\\"is-active\\\">Le 62ème colloque international d’études humanistes du Centre d’études supérieures de la Renaissance de Tours sera consacré à Léonard de Vinci en 2019.&nbsp;</p><p class=\\\"is-active\\\">Cet événement rassemblera les plus grands spécialistes internationaux du sujet et proposera d’aborder toutes les facettes de l’oeuvre de Léonard sous le prisme de l’invention et de l’innovation : mécanique, médecine, architecture, biomimétisme, etc. Une partie de ce colloque se tiendra dans des lieux marqués par la figure de Léonard de Vinci : le Château du Clos Lucé à Amboise et le Château de Chambord.</p>\"\n            },\n            \"start_at\": \"2019-06-01T00:00:00Z\",\n            \"end_at\": \"2019-06-30T00:00:00Z\"\n        },\n        \"relationships\": {\n            \"types\": {\n                \"data\": []\n            },\n            \"dates\": {\n                \"data\": [\n                    {\n                        \"id\": \"axGeikm1VN\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"8VZZiNZ8Vd\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"eVgRimO4Lo\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"E79OiqZQLM\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"YVYgiW4lxD\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"87oei8vYLQ\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"gLb4iOga7J\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"o7EMiQDr75\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"B72ZiYOv7O\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"y7KAiEO4Lv\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"d7DzidZMLB\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"DLkqijMy7a\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"G7jaiXOoVg\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"jVJvi2nyVR\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"J7d3igMRVB\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"2VX9iOjl7N\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"DVA6ivYn7X\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"8VvJieDWVv\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"D744i3N078\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"NLwjibKKxD\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"Q7BaiA1AVb\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"Kx09iEraLX\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"y7KAiEOMLv\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"d7DzidZmLB\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"DLkqijM67a\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"G7jaiXOAVg\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"jVJvi2nXVR\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"J7d3igMbVB\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"2VX9iOjd7N\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"DVA6ivYR7X\",\n                        \"type\": \"date\"\n                    }\n                ]\n            }\n        },\n        \"links\": {\n            \"self\": {\n                \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv\"\n            },\n            \"relations\": {\n                \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/cities\",\n                \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/companies\",\n                \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/departments\",\n                \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/elects\",\n                \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/etablissement_publics\",\n                \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/event_groups\",\n                \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/events\",\n                \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/facilities\",\n                \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/news\",\n                \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/non_profits\",\n                \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/performers\",\n                \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/projects\",\n                \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/regions\",\n                \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/skills\"\n            },\n            \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/images\",\n            \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/documents\",\n            \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates\",\n            \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/type\",\n            \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/types\"\n        },\n        \"meta\": {\n            \"included\": [\n                \"dates\",\n                \"types\"\n            ],\n            \"licenses\": [\n                {\n                    \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                    \"SPDX\": \"ODbL-1.0\",\n                    \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                    \"targets\": [\n                        \"cancelled\",\n                        \"cancellation_reason\",\n                        \"free_admission\",\n                        \"free_admission_condition\",\n                        \"punchline\",\n                        \"name\",\n                        \"blurb\",\n                        \"start_at\",\n                        \"end_at\"\n                    ]\n                }\n            ],\n            \"instances\": {\n                \"500-ans-renaissances\": [\n                    \"fr\"\n                ]\n            }\n        }\n    },\n    \"included\": [\n        {\n            \"id\": \"axGeikm1VN\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"axGeikm1VN\",\n                \"created_at\": \"2018-10-31T11:33:15Z\",\n                \"updated_at\": \"2018-10-31T11:33:15Z\",\n                \"start_at\": \"2019-06-30T00:00:00Z\",\n                \"end_at\": \"2019-06-30T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 30 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"8VZZiNZ8Vd\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"8VZZiNZ8Vd\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-29T00:00:00Z\",\n                \"end_at\": \"2019-06-29T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 29 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"eVgRimO4Lo\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"eVgRimO4Lo\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-28T00:00:00Z\",\n                \"end_at\": \"2019-06-28T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 28 Fr 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"E79OiqZQLM\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"E79OiqZQLM\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-27T00:00:00Z\",\n                \"end_at\": \"2019-06-27T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 27 Th 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"YVYgiW4lxD\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"YVYgiW4lxD\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-26T00:00:00Z\",\n                \"end_at\": \"2019-06-26T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 26 We 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"87oei8vYLQ\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"87oei8vYLQ\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-25T00:00:00Z\",\n                \"end_at\": \"2019-06-25T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 25 Tu 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"gLb4iOga7J\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"gLb4iOga7J\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-24T00:00:00Z\",\n                \"end_at\": \"2019-06-24T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 24 Mo 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"o7EMiQDr75\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"o7EMiQDr75\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-23T00:00:00Z\",\n                \"end_at\": \"2019-06-23T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 23 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"B72ZiYOv7O\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"B72ZiYOv7O\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-22T00:00:00Z\",\n                \"end_at\": \"2019-06-22T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 22 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"y7KAiEO4Lv\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"y7KAiEO4Lv\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-21T00:00:00Z\",\n                \"end_at\": \"2019-06-21T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 21 Fr 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"d7DzidZMLB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"d7DzidZMLB\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-20T00:00:00Z\",\n                \"end_at\": \"2019-06-20T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 20 Th 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DLkqijMy7a\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DLkqijMy7a\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-19T00:00:00Z\",\n                \"end_at\": \"2019-06-19T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 19 We 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"G7jaiXOoVg\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"G7jaiXOoVg\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-18T00:00:00Z\",\n                \"end_at\": \"2019-06-18T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 18 Tu 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"jVJvi2nyVR\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"jVJvi2nyVR\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-17T00:00:00Z\",\n                \"end_at\": \"2019-06-17T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 17 Mo 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"J7d3igMRVB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"J7d3igMRVB\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-16T00:00:00Z\",\n                \"end_at\": \"2019-06-16T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 16 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"2VX9iOjl7N\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"2VX9iOjl7N\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-15T00:00:00Z\",\n                \"end_at\": \"2019-06-15T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 15 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DVA6ivYn7X\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DVA6ivYn7X\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-14T00:00:00Z\",\n                \"end_at\": \"2019-06-14T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 14 Fr 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"8VvJieDWVv\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"8VvJieDWVv\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-13T00:00:00Z\",\n                \"end_at\": \"2019-06-13T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 13 Th 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"D744i3N078\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"D744i3N078\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-12T00:00:00Z\",\n                \"end_at\": \"2019-06-12T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 12 We 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"NLwjibKKxD\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"NLwjibKKxD\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-11T00:00:00Z\",\n                \"end_at\": \"2019-06-11T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 11 Tu 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"Q7BaiA1AVb\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"Q7BaiA1AVb\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-10T00:00:00Z\",\n                \"end_at\": \"2019-06-10T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 10 Mo 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"Kx09iEraLX\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"Kx09iEraLX\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-09T00:00:00Z\",\n                \"end_at\": \"2019-06-09T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 09 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"y7KAiEOMLv\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"y7KAiEOMLv\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-08T00:00:00Z\",\n                \"end_at\": \"2019-06-08T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 08 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"d7DzidZmLB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"d7DzidZmLB\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-07T00:00:00Z\",\n                \"end_at\": \"2019-06-07T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 07 Fr 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DLkqijM67a\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DLkqijM67a\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-06T00:00:00Z\",\n                \"end_at\": \"2019-06-06T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 06 Th 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"G7jaiXOAVg\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"G7jaiXOAVg\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-05T00:00:00Z\",\n                \"end_at\": \"2019-06-05T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 05 We 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"jVJvi2nXVR\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"jVJvi2nXVR\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-04T00:00:00Z\",\n                \"end_at\": \"2019-06-04T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 04 Tu 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"J7d3igMbVB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"J7d3igMbVB\",\n                \"created_at\": \"2018-10-31T11:33:11Z\",\n                \"updated_at\": \"2018-10-31T11:33:11Z\",\n                \"start_at\": \"2019-06-03T00:00:00Z\",\n                \"end_at\": \"2019-06-03T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 03 Mo 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"2VX9iOjd7N\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"2VX9iOjd7N\",\n                \"created_at\": \"2018-10-31T11:33:11Z\",\n                \"updated_at\": \"2018-10-31T11:33:11Z\",\n                \"start_at\": \"2019-06-02T00:00:00Z\",\n                \"end_at\": \"2019-06-02T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 02 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DVA6ivYR7X\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DVA6ivYR7X\",\n                \"created_at\": \"2018-10-31T11:33:11Z\",\n                \"updated_at\": \"2018-10-31T11:33:11Z\",\n                \"start_at\": \"2019-06-01T00:00:00Z\",\n                \"end_at\": \"2019-06-01T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 01 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"wo7NbcKj7n\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"wo7NbcKj7n\",\n                \"created_at\": \"2018-10-23T01:23:57Z\",\n                \"updated_at\": \"2018-10-23T01:24:19Z\",\n                \"name\": {\n                    \"fr\": \"Rassemblement\"\n                }\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": \"https://publidata-staging.herokuapp.com/api/v2/event_types/wo7NbcKj7n\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"Wn7lQcrKxm\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"Wn7lQcrKxm\",\n                \"created_at\": \"2018-10-23T01:23:57Z\",\n                \"updated_at\": \"2018-10-23T01:24:19Z\",\n                \"name\": {\n                    \"fr\": \"Colloque\"\n                }\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": \"https://publidata-staging.herokuapp.com/api/v2/event_types/Wn7lQcrKxm\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        }\n    ]\n}"}],"_postman_id":"cd833db4-db51-448f-ada8-70c5cd78b46d"},{"name":"🚧 Show translated","id":"f0050915-b8d4-48d2-b9e4-bdccb772921e","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id?lang=en","description":"<p>Le paramètre <code>lang</code> vous permet de récupérer les contenus éditoriaux d'une ressource dans une langue donnée.</p>\n","urlObject":{"path":["v2",":instance","events",":id"],"host":["https://api.publidata.io"],"query":[{"description":{"content":"<p>Langue désirée</p>\n","type":"text/plain"},"key":"lang","value":"en"}],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"f0050915-b8d4-48d2-b9e4-bdccb772921e"},{"name":"🚧 Search","id":"89274e70-a216-4dcf-9323-5902a61e183f","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.publidata.io/v2/:instance/events/?q=Sénart&size=10&page=1&marker=false&instances[]=2&types[]=Event&performers[]=Nakht&facilities[]=8&events[]=1&event_groups[]=1&news[]=1&projects[]=1&cities[]=7&etablissement_publics[]=1&departments[]=1&regions[]=1&skills[]=1&elects[]=1&bbox[]&event_types[]=Oeuvre d'art&event_styles[]=Gymnastique&date[start]=1526054400&date[end]=1526083199&price[min]=10&price[max]=50&free_admission=true&accessibilities[]=has_deaf_accessibility","description":"<p>Recherche d'événements : 🚧 à venir... </p>\n","urlObject":{"path":["v2",":instance","events",""],"host":["https://api.publidata.io"],"query":[{"description":{"content":"<p>Filtre textuel</p>\n","type":"text/plain"},"key":"q","value":"Sénart"},{"description":{"content":"<p>Nombre de résultats retournés (defaut: 10)</p>\n","type":"text/plain"},"key":"size","value":"10"},{"description":{"content":"<p>Pagination (defaut: 1)</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>Filtre booléen pour ne retourner que les locations (default: false)</p>\n","type":"text/plain"},"key":"marker","value":"false"},{"description":{"content":"<p>Filtre par instance (array d'id)</p>\n","type":"text/plain"},"key":"instances[]","value":"2"},{"description":{"content":"<p>Filtre par type de ressource (array de type parmi la liste suivante : News Event Facility Project City Epci Department Region EventGroup Skill Elect Performer Company NonProfit EtablissementPublic)</p>\n","type":"text/plain"},"key":"types[]","value":"Event"},{"description":{"content":"<p>Filtre par artiste lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"performers[]","value":"Nakht"},{"description":{"content":"<p>Filtre par équipement lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"facilities[]","value":"8"},{"description":{"content":"<p>Filtre par événement lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"events[]","value":"1"},{"description":{"content":"<p>Filtre par groupe d'événements lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"event_groups[]","value":"1"},{"description":{"content":"<p>Filtre par actualité liée (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"news[]","value":"1"},{"description":{"content":"<p>Filtre par projet lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"projects[]","value":"1"},{"description":{"content":"<p>Filtre par ville et location liées (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"cities[]","value":"7"},{"description":{"content":"<p>Filtre par établissement public lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"etablissement_publics[]","value":"1"},{"description":{"content":"<p>Filtre par departement lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"departments[]","value":"1"},{"description":{"content":"<p>Filtre par region liée (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"regions[]","value":"1"},{"description":{"content":"<p>Filtre par compétence liée (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"skills[]","value":"1"},{"description":{"content":"<p>Filtre par élu lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"elects[]","value":"1"},{"description":{"content":"<p>Filtre géographique (array de latitudes, longitudes dans l'ordre suivant minX, minY, maxX, maxY)</p>\n","type":"text/plain"},"key":"bbox[]","value":null},{"description":{"content":"<p>Filtre par type d'événement (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"event_types[]","value":"Oeuvre d'art"},{"description":{"content":"<p>Filtre par style d'événement (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"event_styles[]","value":"Gymnastique"},{"description":{"content":"<p>Filtre par date/heure de début (timestamp en seconde)</p>\n","type":"text/plain"},"key":"date[start]","value":"1526054400"},{"description":{"content":"<p>Filtre par date/heure de fin (timestamp en seconde)</p>\n","type":"text/plain"},"key":"date[end]","value":"1526083199"},{"description":{"content":"<p>Filtre de prix minimum</p>\n","type":"text/plain"},"key":"price[min]","value":"10"},{"description":{"content":"<p>Filtre de prix maximum</p>\n","type":"text/plain"},"key":"price[max]","value":"50"},{"description":{"content":"<p>Filtre de gratuité (boolean)</p>\n","type":"text/plain"},"key":"free_admission","value":"true"},{"description":{"content":"<p>Filtre d'accessibilité (array de string)</p>\n","type":"text/plain"},"key":"accessibilities[]","value":"has_deaf_accessibility"}],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"}]}},"response":[{"id":"52b7932b-213b-4bb9-99f7-d3ec3a54276c","name":"Search events","originalRequest":{"method":"GET","header":[],"url":{"raw":"www.publidata.io/api/v1/events?q=&options[geo][top_left][lat]=49.05965195372349&options[geo][top_left][lon]=2.1371613664061897&options[geo][bottom_right][lat]=48.21570798955211&options[geo][bottom_right][lon]=2.7688752335936897&options[city]=Combs-la-Ville&options[paging][from]=0&options[event_types][]=Concert&options[dates][start_date]=1521812100000&options[dates][end_date]=1522499700000&options[instances][]=2","host":["www","publidata","io"],"path":["api","v1","events"],"query":[{"key":"q","value":"","description":"Recherche (full-text)"},{"key":"options[geo][top_left][lat]","value":"49.05965195372349","description":"Latitude coin supérieur gauche geo-box (lat)"},{"key":"options[geo][top_left][lon]","value":"2.1371613664061897","description":"Longitude coin supérieur gauche geo-box (lon)"},{"key":"options[geo][bottom_right][lat]","value":"48.21570798955211","description":"Latitude coin inférieur droit geo-box (lat)"},{"key":"options[geo][bottom_right][lon]","value":"2.7688752335936897","description":"Longitude coin inférieur droit geo-box (lon)"},{"key":"options[city]","value":"Combs-la-Ville","description":"Ville (full-text ou code postal)"},{"key":"options[paging][from]","value":"0","description":"Début de la pagination (integer)"},{"key":"options[event_types][]","value":"Concert","description":"Types d'événement (array de string)"},{"key":"options[dates][start_date]","value":"1521812100000","description":"Date de début (format timestamp unix 1508267068688)"},{"key":"options[dates][end_date]","value":"1522499700000","description":"Date de fin (format timestamp unix 1539803068688)"},{"key":"options[instances][]","value":"2"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"took\": 11,\n    \"timed_out\": false,\n    \"_shards\": {\n        \"total\": 1,\n        \"successful\": 1,\n        \"failed\": 0\n    },\n    \"hits\": {\n        \"total\": 2,\n        \"max_score\": 0.9812665,\n        \"hits\": [\n            {\n                \"_index\": \"events\",\n                \"_type\": \"event\",\n                \"_id\": \"3241\",\n                \"_score\": 0.9812665,\n                \"_source\": {\n                    \"id\": 3241,\n                    \"name\": \"Concert des orchestres\",\n                    \"slug\": \"concert-des-orchestres\",\n                    \"status\": \"published\",\n                    \"free_admission\": true,\n                    \"start_date\": \"2018-03-23T00:00:00.000+01:00\",\n                    \"end_date\": \"2018-03-23T00:00:00.000+01:00\",\n                    \"punchline\": \"Le vendredi 23 mars 2018 à 20h au Théâtre de la Coupole, les musiciens du Conservatoire Maurice Ohana de Combs-la-ville vous attendent pour leur rendez-vous annuel...\",\n                    \"blurb\": \"Cette soirée donne la possibilité à plusieurs formations orchestrales du conservatoire Maurice Ohana de se produire sur scène. \\r\\n\\r\\nProgramme musical éclectique et varié, ce concert  permet de vivre la musique ensemble et de la partager sans modération avec le public.\",\n                    \"linked_objects\": [\n                        {\n                            \"id\": 180,\n                            \"type\": \"Facility\",\n                            \"name\": \"La Coupole\"\n                        },\n                        {\n                            \"id\": 12,\n                            \"type\": \"City\",\n                            \"name\": \"Combs-la-Ville\"\n                        }\n                    ],\n                    \"cover_picture\": {\n                        \"id\": 22632,\n                        \"name\": \"image de couverture de Concert des orchestres\",\n                        \"alt\": \"image de couverture de Concert des orchestres\",\n                        \"description\": \"image de couverture de Concert des orchestres\",\n                        \"slug\": null,\n                        \"image_urls_as_json\": {\n                            \"image_original_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/632/original/open-uri20171002-4-1etqlbo?1506962457\",\n                            \"image_small_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/632/image_small/open-uri20171002-4-1etqlbo?1506962457\",\n                            \"image_medium_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/632/image_medium/open-uri20171002-4-1etqlbo?1506962457\",\n                            \"image_large_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/632/image_large/open-uri20171002-4-1etqlbo?1506962457\"\n                        }\n                    },\n                    \"instances\": [\n                        {\n                            \"id\": 2,\n                            \"slug\": \"portail-sortir-gps\"\n                        }\n                    ],\n                    \"event_type\": {\n                        \"id\": 13,\n                        \"name\": \"Concert\"\n                    },\n                    \"event_styles\": [\n                        {\n                            \"id\": 82,\n                            \"name\": \"World Music\"\n                        }\n                    ],\n                    \"event_dates\": [\n                        {\n                            \"id\": 37799,\n                            \"start_hour\": \"2000-01-01T20:00:00.000Z\",\n                            \"end_hour\": \"2000-01-01T22:00:00.000Z\",\n                            \"date\": \"2018-03-23T00:00:00.000+01:00\",\n                            \"sold_out\": false,\n                            \"start_date\": \"2018-03-23T20:00:00.000+00:00\",\n                            \"end_date\": \"2018-03-23T22:00:00.000+00:00\"\n                        }\n                    ],\n                    \"facilities\": [\n                        {\n                            \"id\": 180,\n                            \"name\": \"La Coupole\",\n                            \"slug\": \"la-coupole\",\n                            \"address\": \"Rue Jean François Millet, 77380 Combs-la-Ville, France\",\n                            \"location\": {\n                                \"lat\": 48.659695,\n                                \"lon\": 2.5662415\n                            }\n                        }\n                    ],\n                    \"locations\": [],\n                    \"fees\": [],\n                    \"tags\": [],\n                    \"pages\": [\n                        {\n                            \"id\": 7659,\n                            \"instance\": {\n                                \"id\": 2,\n                                \"slug\": \"portail-sortir-gps\"\n                            }\n                        }\n                    ]\n                }\n            },\n            {\n                \"_index\": \"events\",\n                \"_type\": \"event\",\n                \"_id\": \"3983\",\n                \"_score\": 0.9794048,\n                \"_source\": {\n                    \"id\": 3983,\n                    \"name\": \"Après-midi musicale: Claude Debussy\",\n                    \"slug\": \"apres-midi-musicale-claude-debussy\",\n                    \"status\": \"published\",\n                    \"free_admission\": true,\n                    \"start_date\": \"2018-03-24T00:00:00.000+01:00\",\n                    \"end_date\": \"2018-03-24T00:00:00.000+01:00\",\n                    \"punchline\": \"A l'occasion du centenaire de la mort de Claude Debussy, la media-ludothèque et le conservatoire Maurice Ohana vous invitent à une après-midi musical, le samedi 24 mars à partir de 15h30.\",\n                    \"blurb\": \"Claude Debussy (1862-1918) était un compositeur français. Pour célébrer son centenaire, nous vous invitons à un après-midi musical. Au programme, une conférence par Bruno Giner sur le compositeur à 15h30. \\r\\nPuis, à 18h, les élèves du conservatoire interpréteront une sélection d’œuvres de Claude Debussy.\",\n                    \"linked_objects\": [\n                        {\n                            \"id\": 42,\n                            \"type\": \"Facility\",\n                            \"name\": \"Médiathèque de Combs-la-Ville\"\n                        },\n                        {\n                            \"id\": 12,\n                            \"type\": \"City\",\n                            \"name\": \"Combs-la-Ville\"\n                        }\n                    ],\n                    \"cover_picture\": {\n                        \"id\": 24665,\n                        \"name\": \"image de couverture de Après-midi musicale: Claude Debussy\",\n                        \"alt\": \"image de couverture de Après-midi musicale: Claude Debussy\",\n                        \"description\": \"image de couverture de Après-midi musicale: Claude Debussy\",\n                        \"slug\": null,\n                        \"image_urls_as_json\": {\n                            \"image_original_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/665/original/Photo_23a_Claude_Debussy.jpg?1516441408\",\n                            \"image_small_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/665/image_small/Photo_23a_Claude_Debussy.jpg?1516441408\",\n                            \"image_medium_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/665/image_medium/Photo_23a_Claude_Debussy.jpg?1516441408\",\n                            \"image_large_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/665/image_large/Photo_23a_Claude_Debussy.jpg?1516441408\"\n                        }\n                    },\n                    \"instances\": [\n                        {\n                            \"id\": 2,\n                            \"slug\": \"portail-sortir-gps\"\n                        }\n                    ],\n                    \"event_type\": {\n                        \"id\": 13,\n                        \"name\": \"Concert\"\n                    },\n                    \"event_styles\": [\n                        {\n                            \"id\": 111,\n                            \"name\": \"Musique Classique\"\n                        }\n                    ],\n                    \"event_dates\": [\n                        {\n                            \"id\": 41100,\n                            \"start_hour\": \"2000-01-01T15:30:00.000Z\",\n                            \"end_hour\": \"2000-01-01T19:30:00.000Z\",\n                            \"date\": \"2018-03-24T00:00:00.000+01:00\",\n                            \"sold_out\": false,\n                            \"start_date\": \"2018-03-24T15:30:00.000+00:00\",\n                            \"end_date\": \"2018-03-24T19:30:00.000+00:00\"\n                        }\n                    ],\n                    \"facilities\": [\n                        {\n                            \"id\": 42,\n                            \"name\": \"Médiathèque de Combs-la-Ville\",\n                            \"slug\": \"mediatheque-de-combs-la-ville\",\n                            \"address\": \"Rue Jean François Millet, 77380 Combs-la-Ville, France\",\n                            \"location\": {\n                                \"lat\": 48.659695,\n                                \"lon\": 2.5662415\n                            }\n                        }\n                    ],\n                    \"locations\": [],\n                    \"fees\": [],\n                    \"accessibility\": {\n                        \"id\": 1766,\n                        \"deaf_lsf\": false,\n                        \"deaf_vision_based\": false,\n                        \"deaf_subtitle\": false,\n                        \"deaf_hearing_loop\": false,\n                        \"blind_audio_description\": false,\n                        \"blind_darkness_based\": false,\n                        \"blind_text_based\": false,\n                        \"blind_braille\": false,\n                        \"blind_large_print\": false,\n                        \"motor_disabled_access\": true,\n                        \"has_accessibility\": true,\n                        \"has_deaf_accessibility\": false,\n                        \"has_blind_accessibility\": false\n                    },\n                    \"tags\": [\n                        \"Culture\"\n                    ],\n                    \"pages\": [\n                        {\n                            \"id\": 8636,\n                            \"instance\": {\n                                \"id\": 2,\n                                \"slug\": \"portail-sortir-gps\"\n                            }\n                        }\n                    ]\n                }\n            }\n        ]\n    },\n    \"aggregations\": {\n        \"event_styles_terms_agg\": {\n            \"doc_count\": 2,\n            \"name\": {\n                \"doc_count_error_upper_bound\": 0,\n                \"sum_other_doc_count\": 0,\n                \"buckets\": [\n                    {\n                        \"key\": \"111\",\n                        \"doc_count\": 1,\n                        \"name\": {\n                            \"doc_count_error_upper_bound\": 0,\n                            \"sum_other_doc_count\": 0,\n                            \"buckets\": [\n                                {\n                                    \"key\": \"classique\",\n                                    \"doc_count\": 1\n                                },\n                                {\n                                    \"key\": \"musique\",\n                                    \"doc_count\": 1\n                                }\n                            ]\n                        }\n                    },\n                    {\n                        \"key\": \"82\",\n                        \"doc_count\": 1,\n                        \"name\": {\n                            \"doc_count_error_upper_bound\": 0,\n                            \"sum_other_doc_count\": 0,\n                            \"buckets\": [\n                                {\n                                    \"key\": \"music\",\n                                    \"doc_count\": 1\n                                },\n                                {\n                                    \"key\": \"world\",\n                                    \"doc_count\": 1\n                                }\n                            ]\n                        }\n                    }\n                ]\n            }\n        },\n        \"events\": {\n            \"doc_count\": 3838,\n            \"dates\": {\n                \"doc_count\": 11064,\n                \"this_month\": {\n                    \"doc_count\": 737,\n                    \"events\": {\n                        \"doc_count\": 278\n                    }\n                },\n                \"this_week_end\": {\n                    \"doc_count\": 81,\n                    \"events\": {\n                        \"doc_count\": 54\n                    }\n                },\n                \"past\": {\n                    \"doc_count\": 10070,\n                    \"events\": {\n                        \"doc_count\": 3132\n                    }\n                },\n                \"today\": {\n                    \"doc_count\": 34,\n                    \"events\": {\n                        \"doc_count\": 28\n                    }\n                },\n                \"tomorrow\": {\n                    \"doc_count\": 22,\n                    \"events\": {\n                        \"doc_count\": 19\n                    }\n                },\n                \"last_days\": {\n                    \"doc_count\": 133,\n                    \"events\": {\n                        \"doc_count\": 75\n                    }\n                },\n                \"upcoming\": {\n                    \"doc_count\": 1028,\n                    \"events\": {\n                        \"doc_count\": 390\n                    }\n                },\n                \"this_week\": {\n                    \"doc_count\": 197,\n                    \"events\": {\n                        \"doc_count\": 96\n                    }\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"89274e70-a216-4dcf-9323-5902a61e183f"}],"id":"e860613c-5f83-4d3a-a024-a50c9335ce9d","_postman_id":"e860613c-5f83-4d3a-a024-a50c9335ce9d","description":""},{"name":"Ressources liées","item":[{"name":"✅ Types","id":"2c75b0e4-ff87-4030-b48b-9c639d3e96c7","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/types","description":"<p>Type(s) de la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","types"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[{"id":"14e46c08-8452-462c-914c-ff3209c201c6","name":"✅ Types","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.publidata.io/v2/:instance/events/:id/types","host":["https://api.publidata.io"],"path":["v2",":instance","events",":id","types"],"variable":[{"key":"instance","value":"500-ans-renaissances"},{"key":"id","value":"y7KpS6Dgxv"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Tue, 06 Nov 2018 14:56:10 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"aca7a58992ce54decfd0aa1309558bf9\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"d9a108a9-5d7c-486f-9b8f-620b97ceecb4"},{"key":"X-Runtime","value":"0.137086"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"wo7NbcKj7n\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"wo7NbcKj7n\",\n                \"created_at\": \"2018-10-23T01:23:57Z\",\n                \"updated_at\": \"2018-10-23T01:24:19Z\",\n                \"name\": {\n                    \"fr\": \"Rassemblement\"\n                }\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": \"https://publidata-staging.herokuapp.com/api/v2/event_types/wo7NbcKj7n\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"Wn7lQcrKxm\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"Wn7lQcrKxm\",\n                \"created_at\": \"2018-10-23T01:23:57Z\",\n                \"updated_at\": \"2018-10-23T01:24:19Z\",\n                \"name\": {\n                    \"fr\": \"Colloque\"\n                }\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": \"https://publidata-staging.herokuapp.com/api/v2/event_types/Wn7lQcrKxm\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        }\n    ],\n    \"meta\": {\n        \"items\": 2,\n        \"count\": 2,\n        \"page\": 1\n    },\n    \"links\": {\n        \"self\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/types?page=1\",\n        \"pagination\": {\n            \"first\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/types?page=1\",\n            \"last\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/types?page=1\"\n        }\n    }\n}"}],"_postman_id":"2c75b0e4-ff87-4030-b48b-9c639d3e96c7"},{"name":"🚧 Themes","id":"f1c4aca5-e2bb-4178-812b-e34b4597f870","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/themes","description":"<p>Thème(s) associé(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","themes"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"f1c4aca5-e2bb-4178-812b-e34b4597f870"},{"name":"✅ Dates","id":"4e9bd0a1-5e6f-4780-9f85-e2dd64e5c9a2","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/dates","description":"<p>Date(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","dates"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[{"id":"43f9e48e-e7c8-46e3-94e4-a2a095a0ae86","name":"✅ Dates","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.publidata.io/v2/:instance/events/:id/dates","host":["https://api.publidata.io"],"path":["v2",":instance","events",":id","dates"],"variable":[{"key":"instance","value":"500-ans-renaissances"},{"key":"id","value":"y7KpS6Dgxv"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Tue, 06 Nov 2018 14:57:37 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"5019bf7102c4e9c481afd4dc20c410e1\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"5b74b321-cdd9-461b-a32e-4263c646d08b"},{"key":"X-Runtime","value":"0.316049"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"DVA6ivYR7X\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DVA6ivYR7X\",\n                \"created_at\": \"2018-10-31T11:33:11Z\",\n                \"updated_at\": \"2018-10-31T11:33:11Z\",\n                \"start_at\": \"2019-06-01T00:00:00Z\",\n                \"end_at\": \"2019-06-01T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 01 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"2VX9iOjd7N\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"2VX9iOjd7N\",\n                \"created_at\": \"2018-10-31T11:33:11Z\",\n                \"updated_at\": \"2018-10-31T11:33:11Z\",\n                \"start_at\": \"2019-06-02T00:00:00Z\",\n                \"end_at\": \"2019-06-02T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 02 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"J7d3igMbVB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"J7d3igMbVB\",\n                \"created_at\": \"2018-10-31T11:33:11Z\",\n                \"updated_at\": \"2018-10-31T11:33:11Z\",\n                \"start_at\": \"2019-06-03T00:00:00Z\",\n                \"end_at\": \"2019-06-03T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 03 Mo 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"jVJvi2nXVR\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"jVJvi2nXVR\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-04T00:00:00Z\",\n                \"end_at\": \"2019-06-04T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 04 Tu 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"G7jaiXOAVg\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"G7jaiXOAVg\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-05T00:00:00Z\",\n                \"end_at\": \"2019-06-05T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 05 We 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DLkqijM67a\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DLkqijM67a\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-06T00:00:00Z\",\n                \"end_at\": \"2019-06-06T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 06 Th 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"d7DzidZmLB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"d7DzidZmLB\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-07T00:00:00Z\",\n                \"end_at\": \"2019-06-07T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 07 Fr 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"y7KAiEOMLv\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"y7KAiEOMLv\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-08T00:00:00Z\",\n                \"end_at\": \"2019-06-08T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 08 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"Kx09iEraLX\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"Kx09iEraLX\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-09T00:00:00Z\",\n                \"end_at\": \"2019-06-09T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 09 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"Q7BaiA1AVb\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"Q7BaiA1AVb\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-10T00:00:00Z\",\n                \"end_at\": \"2019-06-10T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 10 Mo 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"NLwjibKKxD\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"NLwjibKKxD\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-11T00:00:00Z\",\n                \"end_at\": \"2019-06-11T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 11 Tu 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"D744i3N078\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"D744i3N078\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-12T00:00:00Z\",\n                \"end_at\": \"2019-06-12T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 12 We 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"8VvJieDWVv\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"8VvJieDWVv\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-13T00:00:00Z\",\n                \"end_at\": \"2019-06-13T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 13 Th 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DVA6ivYn7X\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DVA6ivYn7X\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-14T00:00:00Z\",\n                \"end_at\": \"2019-06-14T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 14 Fr 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"2VX9iOjl7N\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"2VX9iOjl7N\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-15T00:00:00Z\",\n                \"end_at\": \"2019-06-15T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 15 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"J7d3igMRVB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"J7d3igMRVB\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-16T00:00:00Z\",\n                \"end_at\": \"2019-06-16T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 16 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"jVJvi2nyVR\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"jVJvi2nyVR\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-17T00:00:00Z\",\n                \"end_at\": \"2019-06-17T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 17 Mo 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"G7jaiXOoVg\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"G7jaiXOoVg\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-18T00:00:00Z\",\n                \"end_at\": \"2019-06-18T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 18 Tu 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DLkqijMy7a\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DLkqijMy7a\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-19T00:00:00Z\",\n                \"end_at\": \"2019-06-19T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 19 We 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"d7DzidZMLB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"d7DzidZMLB\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-20T00:00:00Z\",\n                \"end_at\": \"2019-06-20T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 20 Th 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        }\n    ],\n    \"meta\": {\n        \"items\": 20,\n        \"count\": 30,\n        \"page\": 1\n    },\n    \"links\": {\n        \"self\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates?page=1\",\n        \"pagination\": {\n            \"first\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates?page=1\",\n            \"next\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates?page=2\",\n            \"last\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates?page=2\"\n        }\n    }\n}"}],"_postman_id":"4e9bd0a1-5e6f-4780-9f85-e2dd64e5c9a2"},{"name":"🚧 Tickets","id":"1468646e-117e-413d-acb5-c70194a9392c","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/tickets","description":"<p>Billetterie(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","tickets"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"1468646e-117e-413d-acb5-c70194a9392c"},{"name":"🚧 Fees","id":"2da855e1-8a5d-42bc-8820-34488957a34f","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/fees","description":"<p>Prix lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","fees"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"2da855e1-8a5d-42bc-8820-34488957a34f"},{"name":"🚧 Contacts","id":"a586a7af-5305-4cc4-8c83-78e0faac1f2a","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/contacts","description":"<p>Information(s) de contact liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","contacts"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"a586a7af-5305-4cc4-8c83-78e0faac1f2a"},{"name":"🚧 Socials","id":"5ce5098e-a4ea-426d-8c42-347e261fd36d","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/socials","description":"<p>Information(s) sociale(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","socials"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"5ce5098e-a4ea-426d-8c42-347e261fd36d"},{"name":"🚧 Public","id":"267d64a6-4762-496b-90dd-387e02bea846","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/public","description":"<p>Public associé à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","public"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"267d64a6-4762-496b-90dd-387e02bea846"},{"name":"🚧 Accessibility","id":"72261244-f6ce-433e-856a-1e9323495c21","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/accessibility","description":"<p>Information(s) d'accessibilité liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","accessibility"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"72261244-f6ce-433e-856a-1e9323495c21"},{"name":"🚧 Partners","id":"79335d6c-a45a-4add-a01b-be611d8d7002","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/partners","description":"<p>Partenaire(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","partners"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"79335d6c-a45a-4add-a01b-be611d8d7002"},{"name":"🚧 Instances","id":"c0d1949f-17fb-4593-978a-1944c0094fb3","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/instances","description":"<p>Instance(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","instances"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"c0d1949f-17fb-4593-978a-1944c0094fb3"},{"name":"🚧 Pages","id":"943e7907-5ef9-4941-944a-4f5679613d3d","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/skills","description":"<p>Page(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","skills"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"943e7907-5ef9-4941-944a-4f5679613d3d"},{"name":"🚧 Contributors","id":"be817bd3-2853-4482-aa83-585d3a2afa2c","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/contributors","description":"<p>Contributeur(s) / mainteneur(s) de la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","contributors"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"be817bd3-2853-4482-aa83-585d3a2afa2c"}],"id":"50705626-2734-433f-a782-434f0a365620","_postman_id":"50705626-2734-433f-a782-434f0a365620","description":""},{"name":"Relations","item":[{"name":"🚧 Relations","id":"cb3181c3-a6a6-4078-b804-3a5f0aec11ea","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/themes","description":"<p>Ressource(s) associée(s) à ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","themes"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"cb3181c3-a6a6-4078-b804-3a5f0aec11ea"},{"name":"🚧 Facilities","id":"999d5d11-71a5-45a1-b269-792148f5850f","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/facilities","description":"<p>Équipement(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","facilities"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"999d5d11-71a5-45a1-b269-792148f5850f"},{"name":"🚧 Cities","id":"4a4b0d89-c7b4-4cc5-a911-ff71b761a63b","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/cities","description":"<p>Commune(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","cities"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"4a4b0d89-c7b4-4cc5-a911-ff71b761a63b"},{"name":"🚧 Departments","id":"732740ac-ce07-4c08-94d6-0cad54307d23","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/departments","description":"<p>Départements(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","departments"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"732740ac-ce07-4c08-94d6-0cad54307d23"},{"name":"🚧 Regions","id":"0f87afce-680f-4368-bd51-68b2ffd541f5","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/regions","description":"<p>Région(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","regions"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"0f87afce-680f-4368-bd51-68b2ffd541f5"},{"name":"🚧 News","id":"766ef02a-bb01-4b7d-aa88-99ee33617c58","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/news","description":"<p>Actualité(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","news"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"766ef02a-bb01-4b7d-aa88-99ee33617c58"},{"name":"✅ Events","id":"65c212ac-ee29-49da-95cc-2d9c32da5d43","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/events","description":"<p>Événement(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","events"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"65c212ac-ee29-49da-95cc-2d9c32da5d43"},{"name":"🚧 EventGroups","id":"73c33539-16ff-4d25-9323-b6af5af20071","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/event_groups","description":"<p>Groupe(s) d'événement(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","event_groups"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"73c33539-16ff-4d25-9323-b6af5af20071"},{"name":"🚧 Projects","id":"f78c9894-ceca-487a-985b-8e4e6f60440e","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/projects","description":"<p>Projet(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","projects"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"f78c9894-ceca-487a-985b-8e4e6f60440e"},{"name":"🚧 Performers","id":"a38e859b-bc61-4e3d-9ed6-ca0d648be8dd","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/performers","description":"<p>Artiste(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","performers"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"a38e859b-bc61-4e3d-9ed6-ca0d648be8dd"},{"name":"🚧 Companies","id":"a69c6e85-d1f5-43eb-932a-93320bf01bac","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/companies","description":"<p>Entreprise(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","companies"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"a69c6e85-d1f5-43eb-932a-93320bf01bac"},{"name":"🚧 NonProfits","id":"0af32493-036f-4495-ab03-6d09baa516d1","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/non_profits","description":"<p>Associations(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","non_profits"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"0af32493-036f-4495-ab03-6d09baa516d1"},{"name":"🚧 EtablissementPublics","id":"2b4f1047-760b-4467-96df-93323fefe287","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/etablissement_publics","description":"<p>Établissement(s) public(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","etablissement_publics"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"2b4f1047-760b-4467-96df-93323fefe287"},{"name":"🚧 Skills","id":"5abd077d-2838-4655-96fb-d8f22662bffa","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/skills","description":"<p>Compétence(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","skills"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"5abd077d-2838-4655-96fb-d8f22662bffa"},{"name":"🚧 Elects","id":"37985990-9f06-4009-9679-35e9838ad02c","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/elects","description":"<p>Élus(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","elects"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"37985990-9f06-4009-9679-35e9838ad02c"}],"id":"fdc7f3ee-9456-4f96-97c3-bdb6712f3d6b","description":"<p>A venir... 🚧</p>\n","event":[{"listen":"prerequest","script":{"id":"487c0f48-a1cd-4aae-af2f-4b62ccf8bb0b","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"4dfafa06-8884-4b36-9c42-31cba1746986","type":"text/javascript","exec":[""]}}],"_postman_id":"fdc7f3ee-9456-4f96-97c3-bdb6712f3d6b"},{"name":"Médias","item":[{"name":"🚧 Medias","id":"bd0e2da8-d49b-44ec-8fdf-536501b69dd6","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/medias","description":"<p>Média(s) associé(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","medias"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"bd0e2da8-d49b-44ec-8fdf-536501b69dd6"},{"name":"✅ Images","id":"f3b571ab-8f59-4879-a1fc-ce3b70ac084f","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/images","description":"<p>Image(s) associée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","images"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"f3b571ab-8f59-4879-a1fc-ce3b70ac084f"},{"name":"✅ Documents","id":"42d3e13e-ef01-4883-95ca-397cd375d262","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/documents","description":"<p>Document(s) associé(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","documents"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"42d3e13e-ef01-4883-95ca-397cd375d262"}],"id":"824073dd-0df0-4cb5-95d0-0bc7ff6a2f78","_postman_id":"824073dd-0df0-4cb5-95d0-0bc7ff6a2f78","description":""}],"id":"094e455e-ee1e-4917-9abe-709a9868f484","description":"<p>Les événements</p>\n","event":[{"listen":"prerequest","script":{"id":"768578b7-1e5d-45b7-ab56-2a8b856f2061","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"a419bb76-510b-4b2b-bc5d-608de7e9b0d3","type":"text/javascript","exec":[""]}}],"_postman_id":"094e455e-ee1e-4917-9abe-709a9868f484"},{"name":"🚧 Départements","item":[{"name":"Endpoints principaux","item":[{"name":"✅ Index","id":"6f5553d5-5114-45f2-a1fd-1b1a9c04103a","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events","description":"<p>Liste des événements</p>\n","urlObject":{"path":["v2",":instance","events"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"}]}},"response":[{"id":"00cc49fa-ccd6-415d-8b95-d1109d434d41","name":"✅ Index","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.publidata.io/v2/:instance/events","host":["https://api.publidata.io"],"path":["v2",":instance","events"],"variable":[{"key":"instance","value":"500-ans-renaissances"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Tue, 06 Nov 2018 14:35:32 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"e272b80759b3239cb223ac313ead9d8a\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"ef157796-c377-4ab4-b340-25fe123f51d3"},{"key":"X-Runtime","value":"0.211831"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"J7dASjXPxB\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"J7dASjXPxB\",\n                \"created_at\": \"2018-11-02T13:36:24Z\",\n                \"updated_at\": \"2018-11-06T14:11:43Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {\n                    \"fr\": \"La 28e édition du Festival International des Jardins abordera un thème cher à la Renaissance.\"\n                },\n                \"name\": {\n                    \"fr\": \"Festival International des Jardins de Chaumont-sur-Loire\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"medium-insert-active\\\"><br></p>\"\n                },\n                \"start_at\": \"2019-04-25T10:00:00Z\",\n                \"end_at\": \"2019-11-03T19:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"y7KpS6Dgxv\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"y7KpS6Dgxv\",\n                \"created_at\": \"2018-10-31T11:26:32Z\",\n                \"updated_at\": \"2018-11-06T10:56:29Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {\n                    \"fr\": \"62eme Colloque International d'études humanistes du centre d'études supérieures de la Renaissance\"\n                },\n                \"name\": {\n                    \"fr\": \"Léonard de Vinci création et innovations \"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"is-active\\\">Le 62ème colloque international d’études humanistes du Centre d’études supérieures de la Renaissance de Tours sera consacré à Léonard de Vinci en 2019.&nbsp;</p><p class=\\\"is-active\\\">Cet événement rassemblera les plus grands spécialistes internationaux du sujet et proposera d’aborder toutes les facettes de l’oeuvre de Léonard sous le prisme de l’invention et de l’innovation : mécanique, médecine, architecture, biomimétisme, etc. Une partie de ce colloque se tiendra dans des lieux marqués par la figure de Léonard de Vinci : le Château du Clos Lucé à Amboise et le Château de Chambord.</p>\"\n                },\n                \"start_at\": \"2019-06-01T00:00:00Z\",\n                \"end_at\": \"2019-06-30T00:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"G7j3SNKzxg\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"G7j3SNKzxg\",\n                \"created_at\": \"2018-10-31T09:20:00Z\",\n                \"updated_at\": \"2018-11-06T10:56:29Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {},\n                \"name\": {\n                    \"fr\": \"Les Borgia à Chinon\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"\\\">La Forteresse royale de Chinon, proposera une reconstitution historique de la venue de César Borgia, fils du pape Alexandre VI pour rencontrer le roi de France à Chinon en 1498 . Reconstitution (cortège équestre). Démonstrations de Calcio Storico (sport florentin de la Renaissance, ancêtre du football actuel…). Dégustations de mets et recettes de la Renaissance florentine. Danses et musiques Renaissance.<br></p>\"\n                },\n                \"start_at\": \"2019-07-21T00:00:00Z\",\n                \"end_at\": \"2019-07-21T00:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"jVJbSWMWVR\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"jVJbSWMWVR\",\n                \"created_at\": \"2018-10-31T08:54:32Z\",\n                \"updated_at\": \"2018-11-06T10:56:28Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {},\n                \"name\": {\n                    \"fr\": \"La renaissance en Val de Loire, en France et en Europe - Festival du film français renaissance\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p>Pour la 21ème édition des Rendez- vous de l’Histoire, le Centre d’Études Supérieures de la Renaissance sera fortement impliqué dans une programmation spécifique « La Renaissance en Val de Loire, en France et en Europe ». Dans le cadre du festival du film français « Renaissance », seront projetés des films historiques accompagnés de moments de réflexion (débats, conférences et ateliers) mettant en perspective la création cinématographique au regard de l’histoire de la peinture historiciste.<br></p>\"\n                },\n                \"start_at\": \"2019-10-01T00:00:00Z\",\n                \"end_at\": \"2019-10-31T00:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"J7dASjXwxB\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"J7dASjXwxB\",\n                \"created_at\": \"2018-10-31T08:42:55Z\",\n                \"updated_at\": \"2018-11-06T10:56:28Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {\n                    \"fr\": \"Parcours numérique, sonore et interactif\"\n                },\n                \"name\": {\n                    \"fr\": \"Renaissance comme Rabelais\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<h3>Parcours numérique, sonore et interactif combinant des moyens techniques innovants capables d’allier  géographie littéraire et géographie réelle. Création d’un parcours sonore géolocalisé à partir d’une application mobile entre La Devinière, maison natale de Rabelais, et l’Abbaye de Seuilly.<br></h3>\"\n                },\n                \"start_at\": \"2019-07-01T00:00:00Z\",\n                \"end_at\": \"2019-10-31T00:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"DVAWS3NQxX\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"DVAWS3NQxX\",\n                \"created_at\": \"2018-10-31T08:34:25Z\",\n                \"updated_at\": \"2018-11-06T10:56:28Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {},\n                \"name\": {\n                    \"fr\": \"Spectacle numérique itinérant Renaissance(S)\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p>Ce spectacle numérique invite le public à s’immerger par le biais des dernières technologies dans un environnement visuel et sonore en plusieurs dimensions. Diverses technologies, de réalité augmentée ou de réalité virtuelle peuvent être détournées par le biais d’une immersion sensori-motrice grâce à une ou plusieurs interfaces visuelles. Ce spectacle proposera une narration dans l’esprit humaniste et novateur de la Renaissance.</p><p>Il évoquera les dimensions créatives, anticipatrices, pluridisciplinaires de Léonard de Vinci, les acteurs, oeuvres, sites patrimoniaux et culturels majeurs du territoire à la Renaissance, le Centre-Val de Loire aujourd’hui et sa projection dans le futur.</p>\"\n                },\n                \"start_at\": \"2019-08-15T19:00:00Z\",\n                \"end_at\": \"2019-09-15T23:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"8VvZS1y0Vv\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"8VvZS1y0Vv\",\n                \"created_at\": \"2018-10-31T08:29:42Z\",\n                \"updated_at\": \"2018-11-06T10:56:28Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {},\n                \"name\": {\n                    \"fr\": \"Magnificences à la cour de France\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"is-active\\\">Ce spectacle de l’ensemble Doulce Mémoire, recrée l’univers d’une fête à la cour de François I<sup>er</sup>, autour de 1515, celles qui virent l’arrivée en France de Léonard de Vinci à l’invitation du roi français. Peintre, inventeur de génie, Léonard était aussi organisateur de fêtes fameuses, dont l’inventivité et la puissance créatrice étaient appréciées les puissants.<br></p>\"\n                },\n                \"start_at\": \"2019-07-23T19:00:00Z\",\n                \"end_at\": \"2019-07-23T23:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"NLwlSvmaVD\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"NLwlSvmaVD\",\n                \"created_at\": \"2018-10-30T16:51:07Z\",\n                \"updated_at\": \"2018-11-06T10:56:27Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {\n                    \"fr\": \"Exposition regroupant des artistes contemporains influencés par Léonard de Vinci et la Renaissance.\"\n                },\n                \"name\": {\n                    \"fr\": \"Hommage contemporain à la Renaissance\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"is-active\\\">Exposition d’artistes contemporains ayant été influencés par Léonard de Vinci et la Renaissance, sur l’exemple de Fabien Merelle, établi à Tours et travaillant sur la scène internationale.&nbsp;</p><p class=\\\"is-active\\\">L’exposition « Hommage à Léonard » transpose dans l’art contemporain l’héritage du maître du Cinquecento mort en Val de Loire il y a 500 ans. Vaste cabinet de curiosités, l’exposition présentée dans les salles historiques du château fait écho au système de pensée&nbsp;<span style=\\\"font-size: 1em; font-family: ProximaNova, Helvetica, Arial, &quot;Sans Serif&quot;;\\\">du Maitre, génie polyvalent où la réalisation ne constitue pas la fin mais le moyen de la réflexion. Conçue comme une sorte de « mise en curiosité » envers les différents apports de Léonard, homme d’esprit universel à l’histoire des arts en Europe, interprétés ou prolongés par différents artistes de notre temps travaillant sur la scène internationale ; l’exposition montre aussi que les échanges entre Italie et France vers 1500, l’italianisme dans les&nbsp;</span><span style=\\\"font-size: 1em; font-family: ProximaNova, Helvetica, Arial, &quot;Sans Serif&quot;;\\\">arts amorcé sous Charles VIII et Louis XII se perpétuent de nos jours, avec les travaux des artistes florentines Antonella Bussanich, Alessandra Capodacqua et Alessandra Ragionier. Comme dans les chapitres d’un livre, chaque salle illustre l’un des thèmes étudiés par Léonard. L’autoportrait / Le portrait / La peinture d’histoire /&nbsp;</span><span style=\\\"font-size: 1em; font-family: ProximaNova, Helvetica, Arial, &quot;Sans Serif&quot;;\\\">Le Paysage / Le codex / La nature morte / Le Portrait féminin / Le Drapé.</span></p>\"\n                },\n                \"start_at\": \"2019-04-01T10:00:00Z\",\n                \"end_at\": \"2019-11-30T18:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"8VOeS416xY\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"8VOeS416xY\",\n                \"created_at\": \"2018-10-29T16:47:42Z\",\n                \"updated_at\": \"2018-11-06T10:56:30Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {\n                    \"fr\": \"Dans le cadre de l'anniversaire des 500ans de la Renaissance, l'artiste Ravo revisite l'oeuvre de François-Guillaume Ménageot \\\"La mort de Léonard de Vinci\\\"\"\n                },\n                \"name\": {\n                    \"fr\": \"Ravo Mattoni invité du Château Royal d' Amboise\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"\\\">Andrea Mattoni alias <b>RAVO</b>, artiste-graffeur italien de son état, a débuté en 2016 un ambitieux projet visant à reproduire, in situ et en très grand format, des chefs-d’œuvre de la peinture classique signés du Caravage, de Delacroix, de Delatour… Profondeur des couleurs, puissance des lignes et de l’échelle, l’hommage de RAVO aux grands maîtres est d’une modernité réjouissante… Le résultat est bluffant.</p><p class=\\\"\\\">De manière à prolonger l’exposition « La Mort de Léonard de Vinci : la construction d’un mythe » préparée avec la BNF, le château royal d’Amboise a demandé à RAVO de réaliser 5 toiles de grandes dimensions (4.5m X 3m). Celles-ci prendront pour sujet des détails du monumental tableau de François-Guillaume Ménageot « La Mort de Léonard de Vinci », et trouveront place sur les murs de la tour cavalière des Minimes, du 2 mai au 2 septembre 2019. Pour honorer cette commande, l’artiste sera en résidence au château royal d’Amboise durant une dizaine de jours, en avril 2019. Il réalisera ses peintures en public.</p><p class=\\\"\\\">Cette exposition est organisée avec le concours de l’association des Ateliers de l’Etoile.</p><p class=\\\"\\\"><span style=\\\"font-size: 1em; font-family: ProximaNova, Helvetica, Arial, &quot;Sans Serif&quot;;\\\"><b>\\\"Exposition « La Mort de Léonard de Vinci : la construction d’un mythe » - Partenariat BNF (Bibliothèque Nationale de France)</b></span><br></p><p class=\\\"\\\">Tous les jours, du 2 mai au 2 septembre 2019.</p><p class=\\\"\\\">La grande exposition intitulée « La Mort de Léonard de Vinci : la construction d’un mythe », articulée autour du monumental tableau (280 cm X 357 cm) de François-Guillaume Ménageot La mort de Léonard de Vinci, et d’une collection de gravures issues des collections nationales, nous éclairera sur la manière dont les contours de l’amitié entre le roi François Ier et Léonard ont été progressivement réécrits par l’Histoire, et assimilés par elle jusqu’à la construction d’un mythe mis au service de l’image de la monarchie française au XVIII<sup>ème</sup> siècle.</p><p>Au cœur de la riche programmation des célébrations du 5ème centenaire, cette exposition majeure viendra aussi rappeler à un public venu des quatre coins du monde la place éternelle qu’occupe Léonard de Vinci en Val de Loire, et à Amboise en particulier où il repose pour l’éternité dans la quiétude de la chapelle du château.\\\"</p>\"\n                },\n                \"start_at\": \"2019-05-02T09:00:00Z\",\n                \"end_at\": \"2019-09-02T18:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"items\": 9,\n        \"count\": 9,\n        \"page\": 1\n    },\n    \"links\": {\n        \"self\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events?page=1\",\n        \"pagination\": {\n            \"first\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events?page=1\",\n            \"last\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events?page=1\"\n        }\n    }\n}"}],"_postman_id":"6f5553d5-5114-45f2-a1fd-1b1a9c04103a"},{"name":"✅ Show","id":"1ce2ad19-991d-49cf-8f04-00bd45983014","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/{{instance_id}}/events/:id","description":"<p>Détail d'un événement</p>\n","urlObject":{"path":["v2","{{instance_id}}","events",":id"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[{"id":"a2a3e2aa-49a7-4afe-bdff-7903f584d79a","name":"✅ Show","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.publidata.io/v2/{{instance_id}}/events/:id","host":["https://api.publidata.io"],"path":["v2","{{instance_id}}","events",":id"],"variable":[{"key":"id","value":"y7KpS6Dgxv"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Tue, 06 Nov 2018 14:50:05 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"811c246d37cc926cc75bf582cd364fb3\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"d619c237-6f78-4100-9d77-b11aa3b6dc53"},{"key":"X-Runtime","value":"0.051868"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"y7KpS6Dgxv\",\n        \"type\": \"event\",\n        \"attributes\": {\n            \"id\": \"y7KpS6Dgxv\",\n            \"created_at\": \"2018-10-31T11:26:32Z\",\n            \"updated_at\": \"2018-11-06T10:56:29Z\",\n            \"cancelled\": false,\n            \"cancellation_reason\": null,\n            \"free_admission\": null,\n            \"free_admission_condition\": null,\n            \"punchline\": {\n                \"fr\": \"62eme Colloque International d'études humanistes du centre d'études supérieures de la Renaissance\"\n            },\n            \"name\": {\n                \"fr\": \"Léonard de Vinci création et innovations \"\n            },\n            \"blurb\": {\n                \"fr\": \"<p class=\\\"is-active\\\">Le 62ème colloque international d’études humanistes du Centre d’études supérieures de la Renaissance de Tours sera consacré à Léonard de Vinci en 2019.&nbsp;</p><p class=\\\"is-active\\\">Cet événement rassemblera les plus grands spécialistes internationaux du sujet et proposera d’aborder toutes les facettes de l’oeuvre de Léonard sous le prisme de l’invention et de l’innovation : mécanique, médecine, architecture, biomimétisme, etc. Une partie de ce colloque se tiendra dans des lieux marqués par la figure de Léonard de Vinci : le Château du Clos Lucé à Amboise et le Château de Chambord.</p>\"\n            },\n            \"start_at\": \"2019-06-01T00:00:00Z\",\n            \"end_at\": \"2019-06-30T00:00:00Z\"\n        },\n        \"relationships\": {},\n        \"links\": {\n            \"self\": {\n                \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv\"\n            },\n            \"relations\": {\n                \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/cities\",\n                \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/companies\",\n                \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/departments\",\n                \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/elects\",\n                \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/etablissement_publics\",\n                \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/event_groups\",\n                \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/events\",\n                \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/facilities\",\n                \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/news\",\n                \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/non_profits\",\n                \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/performers\",\n                \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/projects\",\n                \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/regions\",\n                \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/skills\"\n            },\n            \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/images\",\n            \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/documents\",\n            \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates\",\n            \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/type\",\n            \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/types\"\n        },\n        \"meta\": {\n            \"licenses\": [\n                {\n                    \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                    \"SPDX\": \"ODbL-1.0\",\n                    \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                    \"targets\": [\n                        \"cancelled\",\n                        \"cancellation_reason\",\n                        \"free_admission\",\n                        \"free_admission_condition\",\n                        \"punchline\",\n                        \"name\",\n                        \"blurb\",\n                        \"start_at\",\n                        \"end_at\"\n                    ]\n                }\n            ],\n            \"instances\": {\n                \"500-ans-renaissances\": [\n                    \"fr\"\n                ]\n            }\n        }\n    }\n}"}],"_postman_id":"1ce2ad19-991d-49cf-8f04-00bd45983014"},{"name":"✅ Show with included resources","id":"bfc81de3-3875-4b2d-b067-5b152e5a888d","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id?include=dates,types","description":"<p>Avec le paramètre <code>include</code> vous avez la possibilité d'insérer dans la vue principale des ressources liées, vous évitant des requêtes supplémentaires.</p>\n","urlObject":{"path":["v2",":instance","events",":id"],"host":["https://api.publidata.io"],"query":[{"description":{"content":"<p>Liste des ressources à insérer</p>\n","type":"text/plain"},"key":"include","value":"dates,types"}],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[{"id":"dbc6bb3f-a6e7-4f89-92ec-36b252348af3","name":"✅ Show with included resources","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.publidata.io/v2/:instance/events/:id?include=dates,types","host":["https://api.publidata.io"],"path":["v2",":instance","events",":id"],"query":[{"key":"include","value":"dates,types","description":"Liste des ressources à insérer"}],"variable":[{"key":"instance","value":"500-ans-renaissances"},{"key":"id","value":"y7KpS6Dgxv"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Tue, 06 Nov 2018 14:54:52 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"2c566edafdfca2fe7ed4fc7f8ef3e15b\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"b8d67f08-016a-4d6c-b10e-7d6467c5bcdf"},{"key":"X-Runtime","value":"0.483946"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"y7KpS6Dgxv\",\n        \"type\": \"event\",\n        \"attributes\": {\n            \"id\": \"y7KpS6Dgxv\",\n            \"created_at\": \"2018-10-31T11:26:32Z\",\n            \"updated_at\": \"2018-11-06T10:56:29Z\",\n            \"cancelled\": false,\n            \"cancellation_reason\": null,\n            \"free_admission\": null,\n            \"free_admission_condition\": null,\n            \"punchline\": {\n                \"fr\": \"62eme Colloque International d'études humanistes du centre d'études supérieures de la Renaissance\"\n            },\n            \"name\": {\n                \"fr\": \"Léonard de Vinci création et innovations \"\n            },\n            \"blurb\": {\n                \"fr\": \"<p class=\\\"is-active\\\">Le 62ème colloque international d’études humanistes du Centre d’études supérieures de la Renaissance de Tours sera consacré à Léonard de Vinci en 2019.&nbsp;</p><p class=\\\"is-active\\\">Cet événement rassemblera les plus grands spécialistes internationaux du sujet et proposera d’aborder toutes les facettes de l’oeuvre de Léonard sous le prisme de l’invention et de l’innovation : mécanique, médecine, architecture, biomimétisme, etc. Une partie de ce colloque se tiendra dans des lieux marqués par la figure de Léonard de Vinci : le Château du Clos Lucé à Amboise et le Château de Chambord.</p>\"\n            },\n            \"start_at\": \"2019-06-01T00:00:00Z\",\n            \"end_at\": \"2019-06-30T00:00:00Z\"\n        },\n        \"relationships\": {\n            \"types\": {\n                \"data\": []\n            },\n            \"dates\": {\n                \"data\": [\n                    {\n                        \"id\": \"axGeikm1VN\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"8VZZiNZ8Vd\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"eVgRimO4Lo\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"E79OiqZQLM\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"YVYgiW4lxD\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"87oei8vYLQ\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"gLb4iOga7J\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"o7EMiQDr75\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"B72ZiYOv7O\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"y7KAiEO4Lv\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"d7DzidZMLB\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"DLkqijMy7a\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"G7jaiXOoVg\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"jVJvi2nyVR\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"J7d3igMRVB\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"2VX9iOjl7N\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"DVA6ivYn7X\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"8VvJieDWVv\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"D744i3N078\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"NLwjibKKxD\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"Q7BaiA1AVb\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"Kx09iEraLX\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"y7KAiEOMLv\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"d7DzidZmLB\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"DLkqijM67a\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"G7jaiXOAVg\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"jVJvi2nXVR\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"J7d3igMbVB\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"2VX9iOjd7N\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"DVA6ivYR7X\",\n                        \"type\": \"date\"\n                    }\n                ]\n            }\n        },\n        \"links\": {\n            \"self\": {\n                \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv\"\n            },\n            \"relations\": {\n                \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/cities\",\n                \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/companies\",\n                \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/departments\",\n                \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/elects\",\n                \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/etablissement_publics\",\n                \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/event_groups\",\n                \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/events\",\n                \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/facilities\",\n                \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/news\",\n                \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/non_profits\",\n                \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/performers\",\n                \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/projects\",\n                \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/regions\",\n                \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/skills\"\n            },\n            \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/images\",\n            \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/documents\",\n            \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates\",\n            \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/type\",\n            \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/types\"\n        },\n        \"meta\": {\n            \"included\": [\n                \"dates\",\n                \"types\"\n            ],\n            \"licenses\": [\n                {\n                    \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                    \"SPDX\": \"ODbL-1.0\",\n                    \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                    \"targets\": [\n                        \"cancelled\",\n                        \"cancellation_reason\",\n                        \"free_admission\",\n                        \"free_admission_condition\",\n                        \"punchline\",\n                        \"name\",\n                        \"blurb\",\n                        \"start_at\",\n                        \"end_at\"\n                    ]\n                }\n            ],\n            \"instances\": {\n                \"500-ans-renaissances\": [\n                    \"fr\"\n                ]\n            }\n        }\n    },\n    \"included\": [\n        {\n            \"id\": \"axGeikm1VN\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"axGeikm1VN\",\n                \"created_at\": \"2018-10-31T11:33:15Z\",\n                \"updated_at\": \"2018-10-31T11:33:15Z\",\n                \"start_at\": \"2019-06-30T00:00:00Z\",\n                \"end_at\": \"2019-06-30T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 30 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"8VZZiNZ8Vd\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"8VZZiNZ8Vd\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-29T00:00:00Z\",\n                \"end_at\": \"2019-06-29T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 29 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"eVgRimO4Lo\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"eVgRimO4Lo\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-28T00:00:00Z\",\n                \"end_at\": \"2019-06-28T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 28 Fr 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"E79OiqZQLM\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"E79OiqZQLM\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-27T00:00:00Z\",\n                \"end_at\": \"2019-06-27T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 27 Th 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"YVYgiW4lxD\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"YVYgiW4lxD\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-26T00:00:00Z\",\n                \"end_at\": \"2019-06-26T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 26 We 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"87oei8vYLQ\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"87oei8vYLQ\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-25T00:00:00Z\",\n                \"end_at\": \"2019-06-25T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 25 Tu 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"gLb4iOga7J\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"gLb4iOga7J\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-24T00:00:00Z\",\n                \"end_at\": \"2019-06-24T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 24 Mo 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"o7EMiQDr75\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"o7EMiQDr75\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-23T00:00:00Z\",\n                \"end_at\": \"2019-06-23T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 23 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"B72ZiYOv7O\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"B72ZiYOv7O\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-22T00:00:00Z\",\n                \"end_at\": \"2019-06-22T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 22 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"y7KAiEO4Lv\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"y7KAiEO4Lv\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-21T00:00:00Z\",\n                \"end_at\": \"2019-06-21T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 21 Fr 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"d7DzidZMLB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"d7DzidZMLB\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-20T00:00:00Z\",\n                \"end_at\": \"2019-06-20T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 20 Th 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DLkqijMy7a\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DLkqijMy7a\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-19T00:00:00Z\",\n                \"end_at\": \"2019-06-19T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 19 We 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"G7jaiXOoVg\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"G7jaiXOoVg\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-18T00:00:00Z\",\n                \"end_at\": \"2019-06-18T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 18 Tu 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"jVJvi2nyVR\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"jVJvi2nyVR\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-17T00:00:00Z\",\n                \"end_at\": \"2019-06-17T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 17 Mo 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"J7d3igMRVB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"J7d3igMRVB\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-16T00:00:00Z\",\n                \"end_at\": \"2019-06-16T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 16 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"2VX9iOjl7N\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"2VX9iOjl7N\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-15T00:00:00Z\",\n                \"end_at\": \"2019-06-15T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 15 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DVA6ivYn7X\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DVA6ivYn7X\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-14T00:00:00Z\",\n                \"end_at\": \"2019-06-14T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 14 Fr 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"8VvJieDWVv\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"8VvJieDWVv\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-13T00:00:00Z\",\n                \"end_at\": \"2019-06-13T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 13 Th 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"D744i3N078\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"D744i3N078\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-12T00:00:00Z\",\n                \"end_at\": \"2019-06-12T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 12 We 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"NLwjibKKxD\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"NLwjibKKxD\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-11T00:00:00Z\",\n                \"end_at\": \"2019-06-11T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 11 Tu 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"Q7BaiA1AVb\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"Q7BaiA1AVb\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-10T00:00:00Z\",\n                \"end_at\": \"2019-06-10T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 10 Mo 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"Kx09iEraLX\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"Kx09iEraLX\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-09T00:00:00Z\",\n                \"end_at\": \"2019-06-09T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 09 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"y7KAiEOMLv\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"y7KAiEOMLv\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-08T00:00:00Z\",\n                \"end_at\": \"2019-06-08T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 08 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"d7DzidZmLB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"d7DzidZmLB\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-07T00:00:00Z\",\n                \"end_at\": \"2019-06-07T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 07 Fr 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DLkqijM67a\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DLkqijM67a\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-06T00:00:00Z\",\n                \"end_at\": \"2019-06-06T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 06 Th 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"G7jaiXOAVg\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"G7jaiXOAVg\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-05T00:00:00Z\",\n                \"end_at\": \"2019-06-05T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 05 We 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"jVJvi2nXVR\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"jVJvi2nXVR\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-04T00:00:00Z\",\n                \"end_at\": \"2019-06-04T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 04 Tu 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"J7d3igMbVB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"J7d3igMbVB\",\n                \"created_at\": \"2018-10-31T11:33:11Z\",\n                \"updated_at\": \"2018-10-31T11:33:11Z\",\n                \"start_at\": \"2019-06-03T00:00:00Z\",\n                \"end_at\": \"2019-06-03T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 03 Mo 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"2VX9iOjd7N\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"2VX9iOjd7N\",\n                \"created_at\": \"2018-10-31T11:33:11Z\",\n                \"updated_at\": \"2018-10-31T11:33:11Z\",\n                \"start_at\": \"2019-06-02T00:00:00Z\",\n                \"end_at\": \"2019-06-02T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 02 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DVA6ivYR7X\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DVA6ivYR7X\",\n                \"created_at\": \"2018-10-31T11:33:11Z\",\n                \"updated_at\": \"2018-10-31T11:33:11Z\",\n                \"start_at\": \"2019-06-01T00:00:00Z\",\n                \"end_at\": \"2019-06-01T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 01 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"wo7NbcKj7n\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"wo7NbcKj7n\",\n                \"created_at\": \"2018-10-23T01:23:57Z\",\n                \"updated_at\": \"2018-10-23T01:24:19Z\",\n                \"name\": {\n                    \"fr\": \"Rassemblement\"\n                }\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": \"https://publidata-staging.herokuapp.com/api/v2/event_types/wo7NbcKj7n\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"Wn7lQcrKxm\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"Wn7lQcrKxm\",\n                \"created_at\": \"2018-10-23T01:23:57Z\",\n                \"updated_at\": \"2018-10-23T01:24:19Z\",\n                \"name\": {\n                    \"fr\": \"Colloque\"\n                }\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": \"https://publidata-staging.herokuapp.com/api/v2/event_types/Wn7lQcrKxm\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        }\n    ]\n}"}],"_postman_id":"bfc81de3-3875-4b2d-b067-5b152e5a888d"},{"name":"🚧 Show translated","id":"d1780816-064c-431e-8706-2ccb3c53e27b","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id?lang=en","description":"<p>Le paramètre <code>lang</code> vous permet de récupérer les contenus éditoriaux d'une ressource dans une langue donnée.</p>\n","urlObject":{"path":["v2",":instance","events",":id"],"host":["https://api.publidata.io"],"query":[{"description":{"content":"<p>Langue désirée</p>\n","type":"text/plain"},"key":"lang","value":"en"}],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"d1780816-064c-431e-8706-2ccb3c53e27b"},{"name":"🚧 Search","id":"95dbd121-0eeb-48df-9296-8d2748296c40","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.publidata.io/v2/:instance/events/?q=Sénart&size=10&page=1&marker=false&instances[]=2&types[]=Event&performers[]=Nakht&facilities[]=8&events[]=1&event_groups[]=1&news[]=1&projects[]=1&cities[]=7&etablissement_publics[]=1&departments[]=1&regions[]=1&skills[]=1&elects[]=1&bbox[]&event_types[]=Oeuvre d'art&event_styles[]=Gymnastique&date[start]=1526054400&date[end]=1526083199&price[min]=10&price[max]=50&free_admission=true&accessibilities[]=has_deaf_accessibility","description":"<p>Recherche d'événements : 🚧 à venir... </p>\n","urlObject":{"path":["v2",":instance","events",""],"host":["https://api.publidata.io"],"query":[{"description":{"content":"<p>Filtre textuel</p>\n","type":"text/plain"},"key":"q","value":"Sénart"},{"description":{"content":"<p>Nombre de résultats retournés (defaut: 10)</p>\n","type":"text/plain"},"key":"size","value":"10"},{"description":{"content":"<p>Pagination (defaut: 1)</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>Filtre booléen pour ne retourner que les locations (default: false)</p>\n","type":"text/plain"},"key":"marker","value":"false"},{"description":{"content":"<p>Filtre par instance (array d'id)</p>\n","type":"text/plain"},"key":"instances[]","value":"2"},{"description":{"content":"<p>Filtre par type de ressource (array de type parmi la liste suivante : News Event Facility Project City Epci Department Region EventGroup Skill Elect Performer Company NonProfit EtablissementPublic)</p>\n","type":"text/plain"},"key":"types[]","value":"Event"},{"description":{"content":"<p>Filtre par artiste lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"performers[]","value":"Nakht"},{"description":{"content":"<p>Filtre par équipement lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"facilities[]","value":"8"},{"description":{"content":"<p>Filtre par événement lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"events[]","value":"1"},{"description":{"content":"<p>Filtre par groupe d'événements lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"event_groups[]","value":"1"},{"description":{"content":"<p>Filtre par actualité liée (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"news[]","value":"1"},{"description":{"content":"<p>Filtre par projet lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"projects[]","value":"1"},{"description":{"content":"<p>Filtre par ville et location liées (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"cities[]","value":"7"},{"description":{"content":"<p>Filtre par établissement public lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"etablissement_publics[]","value":"1"},{"description":{"content":"<p>Filtre par departement lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"departments[]","value":"1"},{"description":{"content":"<p>Filtre par region liée (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"regions[]","value":"1"},{"description":{"content":"<p>Filtre par compétence liée (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"skills[]","value":"1"},{"description":{"content":"<p>Filtre par élu lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"elects[]","value":"1"},{"description":{"content":"<p>Filtre géographique (array de latitudes, longitudes dans l'ordre suivant minX, minY, maxX, maxY)</p>\n","type":"text/plain"},"key":"bbox[]","value":null},{"description":{"content":"<p>Filtre par type d'événement (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"event_types[]","value":"Oeuvre d'art"},{"description":{"content":"<p>Filtre par style d'événement (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"event_styles[]","value":"Gymnastique"},{"description":{"content":"<p>Filtre par date/heure de début (timestamp en seconde)</p>\n","type":"text/plain"},"key":"date[start]","value":"1526054400"},{"description":{"content":"<p>Filtre par date/heure de fin (timestamp en seconde)</p>\n","type":"text/plain"},"key":"date[end]","value":"1526083199"},{"description":{"content":"<p>Filtre de prix minimum</p>\n","type":"text/plain"},"key":"price[min]","value":"10"},{"description":{"content":"<p>Filtre de prix maximum</p>\n","type":"text/plain"},"key":"price[max]","value":"50"},{"description":{"content":"<p>Filtre de gratuité (boolean)</p>\n","type":"text/plain"},"key":"free_admission","value":"true"},{"description":{"content":"<p>Filtre d'accessibilité (array de string)</p>\n","type":"text/plain"},"key":"accessibilities[]","value":"has_deaf_accessibility"}],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"}]}},"response":[{"id":"9df84d89-0f47-4b25-93a9-1b01fe25c119","name":"Search events","originalRequest":{"method":"GET","header":[],"url":{"raw":"www.publidata.io/api/v1/events?q=&options[geo][top_left][lat]=49.05965195372349&options[geo][top_left][lon]=2.1371613664061897&options[geo][bottom_right][lat]=48.21570798955211&options[geo][bottom_right][lon]=2.7688752335936897&options[city]=Combs-la-Ville&options[paging][from]=0&options[event_types][]=Concert&options[dates][start_date]=1521812100000&options[dates][end_date]=1522499700000&options[instances][]=2","host":["www","publidata","io"],"path":["api","v1","events"],"query":[{"key":"q","value":"","description":"Recherche (full-text)"},{"key":"options[geo][top_left][lat]","value":"49.05965195372349","description":"Latitude coin supérieur gauche geo-box (lat)"},{"key":"options[geo][top_left][lon]","value":"2.1371613664061897","description":"Longitude coin supérieur gauche geo-box (lon)"},{"key":"options[geo][bottom_right][lat]","value":"48.21570798955211","description":"Latitude coin inférieur droit geo-box (lat)"},{"key":"options[geo][bottom_right][lon]","value":"2.7688752335936897","description":"Longitude coin inférieur droit geo-box (lon)"},{"key":"options[city]","value":"Combs-la-Ville","description":"Ville (full-text ou code postal)"},{"key":"options[paging][from]","value":"0","description":"Début de la pagination (integer)"},{"key":"options[event_types][]","value":"Concert","description":"Types d'événement (array de string)"},{"key":"options[dates][start_date]","value":"1521812100000","description":"Date de début (format timestamp unix 1508267068688)"},{"key":"options[dates][end_date]","value":"1522499700000","description":"Date de fin (format timestamp unix 1539803068688)"},{"key":"options[instances][]","value":"2"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"took\": 11,\n    \"timed_out\": false,\n    \"_shards\": {\n        \"total\": 1,\n        \"successful\": 1,\n        \"failed\": 0\n    },\n    \"hits\": {\n        \"total\": 2,\n        \"max_score\": 0.9812665,\n        \"hits\": [\n            {\n                \"_index\": \"events\",\n                \"_type\": \"event\",\n                \"_id\": \"3241\",\n                \"_score\": 0.9812665,\n                \"_source\": {\n                    \"id\": 3241,\n                    \"name\": \"Concert des orchestres\",\n                    \"slug\": \"concert-des-orchestres\",\n                    \"status\": \"published\",\n                    \"free_admission\": true,\n                    \"start_date\": \"2018-03-23T00:00:00.000+01:00\",\n                    \"end_date\": \"2018-03-23T00:00:00.000+01:00\",\n                    \"punchline\": \"Le vendredi 23 mars 2018 à 20h au Théâtre de la Coupole, les musiciens du Conservatoire Maurice Ohana de Combs-la-ville vous attendent pour leur rendez-vous annuel...\",\n                    \"blurb\": \"Cette soirée donne la possibilité à plusieurs formations orchestrales du conservatoire Maurice Ohana de se produire sur scène. \\r\\n\\r\\nProgramme musical éclectique et varié, ce concert  permet de vivre la musique ensemble et de la partager sans modération avec le public.\",\n                    \"linked_objects\": [\n                        {\n                            \"id\": 180,\n                            \"type\": \"Facility\",\n                            \"name\": \"La Coupole\"\n                        },\n                        {\n                            \"id\": 12,\n                            \"type\": \"City\",\n                            \"name\": \"Combs-la-Ville\"\n                        }\n                    ],\n                    \"cover_picture\": {\n                        \"id\": 22632,\n                        \"name\": \"image de couverture de Concert des orchestres\",\n                        \"alt\": \"image de couverture de Concert des orchestres\",\n                        \"description\": \"image de couverture de Concert des orchestres\",\n                        \"slug\": null,\n                        \"image_urls_as_json\": {\n                            \"image_original_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/632/original/open-uri20171002-4-1etqlbo?1506962457\",\n                            \"image_small_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/632/image_small/open-uri20171002-4-1etqlbo?1506962457\",\n                            \"image_medium_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/632/image_medium/open-uri20171002-4-1etqlbo?1506962457\",\n                            \"image_large_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/632/image_large/open-uri20171002-4-1etqlbo?1506962457\"\n                        }\n                    },\n                    \"instances\": [\n                        {\n                            \"id\": 2,\n                            \"slug\": \"portail-sortir-gps\"\n                        }\n                    ],\n                    \"event_type\": {\n                        \"id\": 13,\n                        \"name\": \"Concert\"\n                    },\n                    \"event_styles\": [\n                        {\n                            \"id\": 82,\n                            \"name\": \"World Music\"\n                        }\n                    ],\n                    \"event_dates\": [\n                        {\n                            \"id\": 37799,\n                            \"start_hour\": \"2000-01-01T20:00:00.000Z\",\n                            \"end_hour\": \"2000-01-01T22:00:00.000Z\",\n                            \"date\": \"2018-03-23T00:00:00.000+01:00\",\n                            \"sold_out\": false,\n                            \"start_date\": \"2018-03-23T20:00:00.000+00:00\",\n                            \"end_date\": \"2018-03-23T22:00:00.000+00:00\"\n                        }\n                    ],\n                    \"facilities\": [\n                        {\n                            \"id\": 180,\n                            \"name\": \"La Coupole\",\n                            \"slug\": \"la-coupole\",\n                            \"address\": \"Rue Jean François Millet, 77380 Combs-la-Ville, France\",\n                            \"location\": {\n                                \"lat\": 48.659695,\n                                \"lon\": 2.5662415\n                            }\n                        }\n                    ],\n                    \"locations\": [],\n                    \"fees\": [],\n                    \"tags\": [],\n                    \"pages\": [\n                        {\n                            \"id\": 7659,\n                            \"instance\": {\n                                \"id\": 2,\n                                \"slug\": \"portail-sortir-gps\"\n                            }\n                        }\n                    ]\n                }\n            },\n            {\n                \"_index\": \"events\",\n                \"_type\": \"event\",\n                \"_id\": \"3983\",\n                \"_score\": 0.9794048,\n                \"_source\": {\n                    \"id\": 3983,\n                    \"name\": \"Après-midi musicale: Claude Debussy\",\n                    \"slug\": \"apres-midi-musicale-claude-debussy\",\n                    \"status\": \"published\",\n                    \"free_admission\": true,\n                    \"start_date\": \"2018-03-24T00:00:00.000+01:00\",\n                    \"end_date\": \"2018-03-24T00:00:00.000+01:00\",\n                    \"punchline\": \"A l'occasion du centenaire de la mort de Claude Debussy, la media-ludothèque et le conservatoire Maurice Ohana vous invitent à une après-midi musical, le samedi 24 mars à partir de 15h30.\",\n                    \"blurb\": \"Claude Debussy (1862-1918) était un compositeur français. Pour célébrer son centenaire, nous vous invitons à un après-midi musical. Au programme, une conférence par Bruno Giner sur le compositeur à 15h30. \\r\\nPuis, à 18h, les élèves du conservatoire interpréteront une sélection d’œuvres de Claude Debussy.\",\n                    \"linked_objects\": [\n                        {\n                            \"id\": 42,\n                            \"type\": \"Facility\",\n                            \"name\": \"Médiathèque de Combs-la-Ville\"\n                        },\n                        {\n                            \"id\": 12,\n                            \"type\": \"City\",\n                            \"name\": \"Combs-la-Ville\"\n                        }\n                    ],\n                    \"cover_picture\": {\n                        \"id\": 24665,\n                        \"name\": \"image de couverture de Après-midi musicale: Claude Debussy\",\n                        \"alt\": \"image de couverture de Après-midi musicale: Claude Debussy\",\n                        \"description\": \"image de couverture de Après-midi musicale: Claude Debussy\",\n                        \"slug\": null,\n                        \"image_urls_as_json\": {\n                            \"image_original_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/665/original/Photo_23a_Claude_Debussy.jpg?1516441408\",\n                            \"image_small_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/665/image_small/Photo_23a_Claude_Debussy.jpg?1516441408\",\n                            \"image_medium_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/665/image_medium/Photo_23a_Claude_Debussy.jpg?1516441408\",\n                            \"image_large_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/665/image_large/Photo_23a_Claude_Debussy.jpg?1516441408\"\n                        }\n                    },\n                    \"instances\": [\n                        {\n                            \"id\": 2,\n                            \"slug\": \"portail-sortir-gps\"\n                        }\n                    ],\n                    \"event_type\": {\n                        \"id\": 13,\n                        \"name\": \"Concert\"\n                    },\n                    \"event_styles\": [\n                        {\n                            \"id\": 111,\n                            \"name\": \"Musique Classique\"\n                        }\n                    ],\n                    \"event_dates\": [\n                        {\n                            \"id\": 41100,\n                            \"start_hour\": \"2000-01-01T15:30:00.000Z\",\n                            \"end_hour\": \"2000-01-01T19:30:00.000Z\",\n                            \"date\": \"2018-03-24T00:00:00.000+01:00\",\n                            \"sold_out\": false,\n                            \"start_date\": \"2018-03-24T15:30:00.000+00:00\",\n                            \"end_date\": \"2018-03-24T19:30:00.000+00:00\"\n                        }\n                    ],\n                    \"facilities\": [\n                        {\n                            \"id\": 42,\n                            \"name\": \"Médiathèque de Combs-la-Ville\",\n                            \"slug\": \"mediatheque-de-combs-la-ville\",\n                            \"address\": \"Rue Jean François Millet, 77380 Combs-la-Ville, France\",\n                            \"location\": {\n                                \"lat\": 48.659695,\n                                \"lon\": 2.5662415\n                            }\n                        }\n                    ],\n                    \"locations\": [],\n                    \"fees\": [],\n                    \"accessibility\": {\n                        \"id\": 1766,\n                        \"deaf_lsf\": false,\n                        \"deaf_vision_based\": false,\n                        \"deaf_subtitle\": false,\n                        \"deaf_hearing_loop\": false,\n                        \"blind_audio_description\": false,\n                        \"blind_darkness_based\": false,\n                        \"blind_text_based\": false,\n                        \"blind_braille\": false,\n                        \"blind_large_print\": false,\n                        \"motor_disabled_access\": true,\n                        \"has_accessibility\": true,\n                        \"has_deaf_accessibility\": false,\n                        \"has_blind_accessibility\": false\n                    },\n                    \"tags\": [\n                        \"Culture\"\n                    ],\n                    \"pages\": [\n                        {\n                            \"id\": 8636,\n                            \"instance\": {\n                                \"id\": 2,\n                                \"slug\": \"portail-sortir-gps\"\n                            }\n                        }\n                    ]\n                }\n            }\n        ]\n    },\n    \"aggregations\": {\n        \"event_styles_terms_agg\": {\n            \"doc_count\": 2,\n            \"name\": {\n                \"doc_count_error_upper_bound\": 0,\n                \"sum_other_doc_count\": 0,\n                \"buckets\": [\n                    {\n                        \"key\": \"111\",\n                        \"doc_count\": 1,\n                        \"name\": {\n                            \"doc_count_error_upper_bound\": 0,\n                            \"sum_other_doc_count\": 0,\n                            \"buckets\": [\n                                {\n                                    \"key\": \"classique\",\n                                    \"doc_count\": 1\n                                },\n                                {\n                                    \"key\": \"musique\",\n                                    \"doc_count\": 1\n                                }\n                            ]\n                        }\n                    },\n                    {\n                        \"key\": \"82\",\n                        \"doc_count\": 1,\n                        \"name\": {\n                            \"doc_count_error_upper_bound\": 0,\n                            \"sum_other_doc_count\": 0,\n                            \"buckets\": [\n                                {\n                                    \"key\": \"music\",\n                                    \"doc_count\": 1\n                                },\n                                {\n                                    \"key\": \"world\",\n                                    \"doc_count\": 1\n                                }\n                            ]\n                        }\n                    }\n                ]\n            }\n        },\n        \"events\": {\n            \"doc_count\": 3838,\n            \"dates\": {\n                \"doc_count\": 11064,\n                \"this_month\": {\n                    \"doc_count\": 737,\n                    \"events\": {\n                        \"doc_count\": 278\n                    }\n                },\n                \"this_week_end\": {\n                    \"doc_count\": 81,\n                    \"events\": {\n                        \"doc_count\": 54\n                    }\n                },\n                \"past\": {\n                    \"doc_count\": 10070,\n                    \"events\": {\n                        \"doc_count\": 3132\n                    }\n                },\n                \"today\": {\n                    \"doc_count\": 34,\n                    \"events\": {\n                        \"doc_count\": 28\n                    }\n                },\n                \"tomorrow\": {\n                    \"doc_count\": 22,\n                    \"events\": {\n                        \"doc_count\": 19\n                    }\n                },\n                \"last_days\": {\n                    \"doc_count\": 133,\n                    \"events\": {\n                        \"doc_count\": 75\n                    }\n                },\n                \"upcoming\": {\n                    \"doc_count\": 1028,\n                    \"events\": {\n                        \"doc_count\": 390\n                    }\n                },\n                \"this_week\": {\n                    \"doc_count\": 197,\n                    \"events\": {\n                        \"doc_count\": 96\n                    }\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"95dbd121-0eeb-48df-9296-8d2748296c40"}],"id":"3f571680-fc9a-45ad-9d27-5a9d6a8e3d3d","_postman_id":"3f571680-fc9a-45ad-9d27-5a9d6a8e3d3d","description":""},{"name":"Ressources liées","item":[{"name":"✅ Types","id":"8173fe4c-e13b-403a-b21a-ad854fe02d66","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/types","description":"<p>Type(s) de la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","types"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[{"id":"d9c93c38-1873-4625-95db-5bfecf0f17ec","name":"✅ Types","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.publidata.io/v2/:instance/events/:id/types","host":["https://api.publidata.io"],"path":["v2",":instance","events",":id","types"],"variable":[{"key":"instance","value":"500-ans-renaissances"},{"key":"id","value":"y7KpS6Dgxv"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Tue, 06 Nov 2018 14:56:10 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"aca7a58992ce54decfd0aa1309558bf9\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"d9a108a9-5d7c-486f-9b8f-620b97ceecb4"},{"key":"X-Runtime","value":"0.137086"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"wo7NbcKj7n\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"wo7NbcKj7n\",\n                \"created_at\": \"2018-10-23T01:23:57Z\",\n                \"updated_at\": \"2018-10-23T01:24:19Z\",\n                \"name\": {\n                    \"fr\": \"Rassemblement\"\n                }\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": \"https://publidata-staging.herokuapp.com/api/v2/event_types/wo7NbcKj7n\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"Wn7lQcrKxm\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"Wn7lQcrKxm\",\n                \"created_at\": \"2018-10-23T01:23:57Z\",\n                \"updated_at\": \"2018-10-23T01:24:19Z\",\n                \"name\": {\n                    \"fr\": \"Colloque\"\n                }\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": \"https://publidata-staging.herokuapp.com/api/v2/event_types/Wn7lQcrKxm\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        }\n    ],\n    \"meta\": {\n        \"items\": 2,\n        \"count\": 2,\n        \"page\": 1\n    },\n    \"links\": {\n        \"self\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/types?page=1\",\n        \"pagination\": {\n            \"first\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/types?page=1\",\n            \"last\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/types?page=1\"\n        }\n    }\n}"}],"_postman_id":"8173fe4c-e13b-403a-b21a-ad854fe02d66"},{"name":"🚧 Themes","id":"de8f4f63-6c87-4895-8a1d-7b8ba67b65a0","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/themes","description":"<p>Thème(s) associé(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","themes"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"de8f4f63-6c87-4895-8a1d-7b8ba67b65a0"},{"name":"✅ Dates","id":"23991910-bb29-452d-94fc-db514b10b386","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/dates","description":"<p>Date(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","dates"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[{"id":"392604f8-746c-4417-ae56-9b024ea106bb","name":"✅ Dates","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.publidata.io/v2/:instance/events/:id/dates","host":["https://api.publidata.io"],"path":["v2",":instance","events",":id","dates"],"variable":[{"key":"instance","value":"500-ans-renaissances"},{"key":"id","value":"y7KpS6Dgxv"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Tue, 06 Nov 2018 14:57:37 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"5019bf7102c4e9c481afd4dc20c410e1\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"5b74b321-cdd9-461b-a32e-4263c646d08b"},{"key":"X-Runtime","value":"0.316049"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"DVA6ivYR7X\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DVA6ivYR7X\",\n                \"created_at\": \"2018-10-31T11:33:11Z\",\n                \"updated_at\": \"2018-10-31T11:33:11Z\",\n                \"start_at\": \"2019-06-01T00:00:00Z\",\n                \"end_at\": \"2019-06-01T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 01 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"2VX9iOjd7N\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"2VX9iOjd7N\",\n                \"created_at\": \"2018-10-31T11:33:11Z\",\n                \"updated_at\": \"2018-10-31T11:33:11Z\",\n                \"start_at\": \"2019-06-02T00:00:00Z\",\n                \"end_at\": \"2019-06-02T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 02 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"J7d3igMbVB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"J7d3igMbVB\",\n                \"created_at\": \"2018-10-31T11:33:11Z\",\n                \"updated_at\": \"2018-10-31T11:33:11Z\",\n                \"start_at\": \"2019-06-03T00:00:00Z\",\n                \"end_at\": \"2019-06-03T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 03 Mo 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"jVJvi2nXVR\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"jVJvi2nXVR\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-04T00:00:00Z\",\n                \"end_at\": \"2019-06-04T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 04 Tu 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"G7jaiXOAVg\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"G7jaiXOAVg\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-05T00:00:00Z\",\n                \"end_at\": \"2019-06-05T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 05 We 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DLkqijM67a\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DLkqijM67a\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-06T00:00:00Z\",\n                \"end_at\": \"2019-06-06T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 06 Th 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"d7DzidZmLB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"d7DzidZmLB\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-07T00:00:00Z\",\n                \"end_at\": \"2019-06-07T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 07 Fr 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"y7KAiEOMLv\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"y7KAiEOMLv\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-08T00:00:00Z\",\n                \"end_at\": \"2019-06-08T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 08 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"Kx09iEraLX\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"Kx09iEraLX\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-09T00:00:00Z\",\n                \"end_at\": \"2019-06-09T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 09 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"Q7BaiA1AVb\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"Q7BaiA1AVb\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-10T00:00:00Z\",\n                \"end_at\": \"2019-06-10T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 10 Mo 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"NLwjibKKxD\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"NLwjibKKxD\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-11T00:00:00Z\",\n                \"end_at\": \"2019-06-11T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 11 Tu 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"D744i3N078\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"D744i3N078\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-12T00:00:00Z\",\n                \"end_at\": \"2019-06-12T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 12 We 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"8VvJieDWVv\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"8VvJieDWVv\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-13T00:00:00Z\",\n                \"end_at\": \"2019-06-13T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 13 Th 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DVA6ivYn7X\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DVA6ivYn7X\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-14T00:00:00Z\",\n                \"end_at\": \"2019-06-14T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 14 Fr 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"2VX9iOjl7N\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"2VX9iOjl7N\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-15T00:00:00Z\",\n                \"end_at\": \"2019-06-15T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 15 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"J7d3igMRVB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"J7d3igMRVB\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-16T00:00:00Z\",\n                \"end_at\": \"2019-06-16T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 16 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"jVJvi2nyVR\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"jVJvi2nyVR\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-17T00:00:00Z\",\n                \"end_at\": \"2019-06-17T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 17 Mo 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"G7jaiXOoVg\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"G7jaiXOoVg\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-18T00:00:00Z\",\n                \"end_at\": \"2019-06-18T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 18 Tu 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DLkqijMy7a\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DLkqijMy7a\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-19T00:00:00Z\",\n                \"end_at\": \"2019-06-19T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 19 We 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"d7DzidZMLB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"d7DzidZMLB\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-20T00:00:00Z\",\n                \"end_at\": \"2019-06-20T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 20 Th 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        }\n    ],\n    \"meta\": {\n        \"items\": 20,\n        \"count\": 30,\n        \"page\": 1\n    },\n    \"links\": {\n        \"self\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates?page=1\",\n        \"pagination\": {\n            \"first\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates?page=1\",\n            \"next\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates?page=2\",\n            \"last\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates?page=2\"\n        }\n    }\n}"}],"_postman_id":"23991910-bb29-452d-94fc-db514b10b386"},{"name":"🚧 Tickets","id":"3ed1b120-82f5-45b6-aab9-2934ca34a9a9","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/tickets","description":"<p>Billetterie(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","tickets"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"3ed1b120-82f5-45b6-aab9-2934ca34a9a9"},{"name":"🚧 Fees","id":"b6499a94-ff37-4a1b-b09d-d54e6102ffc2","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/fees","description":"<p>Prix lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","fees"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"b6499a94-ff37-4a1b-b09d-d54e6102ffc2"},{"name":"🚧 Contacts","id":"8be4f8f8-2653-45bc-a79a-8e7a8340ef65","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/contacts","description":"<p>Information(s) de contact liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","contacts"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"8be4f8f8-2653-45bc-a79a-8e7a8340ef65"},{"name":"🚧 Socials","id":"bc3df651-f4ec-4dfc-95ff-fe552cce0701","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/socials","description":"<p>Information(s) sociale(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","socials"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"bc3df651-f4ec-4dfc-95ff-fe552cce0701"},{"name":"🚧 Public","id":"157d278d-4f6a-47b8-99b8-66b9b557a141","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/public","description":"<p>Public associé à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","public"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"157d278d-4f6a-47b8-99b8-66b9b557a141"},{"name":"🚧 Accessibility","id":"2355c07c-2493-4228-8907-3e506e7cd674","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/accessibility","description":"<p>Information(s) d'accessibilité liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","accessibility"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"2355c07c-2493-4228-8907-3e506e7cd674"},{"name":"🚧 Partners","id":"6bb863ee-207e-4796-8661-230231ba70bd","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/partners","description":"<p>Partenaire(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","partners"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"6bb863ee-207e-4796-8661-230231ba70bd"},{"name":"🚧 Instances","id":"0e60b4c2-6ce2-4419-93c9-9904472c2bea","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/instances","description":"<p>Instance(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","instances"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"0e60b4c2-6ce2-4419-93c9-9904472c2bea"},{"name":"🚧 Pages","id":"87092a33-7c88-4077-aef3-28e989a2293c","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/skills","description":"<p>Page(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","skills"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"87092a33-7c88-4077-aef3-28e989a2293c"},{"name":"🚧 Contributors","id":"ecaee57f-9188-4d62-8b0e-c7c359be019b","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/contributors","description":"<p>Contributeur(s) / mainteneur(s) de la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","contributors"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"ecaee57f-9188-4d62-8b0e-c7c359be019b"}],"id":"983266bb-a014-4f74-824b-94692a269f20","_postman_id":"983266bb-a014-4f74-824b-94692a269f20","description":""},{"name":"Relations","item":[{"name":"🚧 Relations","id":"74df2fea-e9a9-4568-90a9-12e7c73020bd","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/themes","description":"<p>Ressource(s) associée(s) à ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","themes"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"74df2fea-e9a9-4568-90a9-12e7c73020bd"},{"name":"🚧 Facilities","id":"ec76a804-4f13-4e9d-aa90-0d9d3693d294","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/facilities","description":"<p>Équipement(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","facilities"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"ec76a804-4f13-4e9d-aa90-0d9d3693d294"},{"name":"🚧 Cities","id":"4459d174-1047-4d83-b82c-7bc3f68bd7df","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/cities","description":"<p>Commune(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","cities"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"4459d174-1047-4d83-b82c-7bc3f68bd7df"},{"name":"🚧 Departments","id":"5b241163-025b-448b-848a-a846417f8040","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/departments","description":"<p>Départements(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","departments"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"5b241163-025b-448b-848a-a846417f8040"},{"name":"🚧 Regions","id":"d8a7d16b-f9f6-4756-b660-43186175a571","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/regions","description":"<p>Région(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","regions"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"d8a7d16b-f9f6-4756-b660-43186175a571"},{"name":"🚧 News","id":"9dff6b32-d810-48be-a70d-7079a37bb3bb","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/news","description":"<p>Actualité(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","news"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"9dff6b32-d810-48be-a70d-7079a37bb3bb"},{"name":"✅ Events","id":"f2a9fe11-6296-4dc2-8d15-63d6a3827494","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/events","description":"<p>Événement(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","events"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"f2a9fe11-6296-4dc2-8d15-63d6a3827494"},{"name":"🚧 EventGroups","id":"a5509e7c-ecd0-4ad8-a870-5c7fb6687bed","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/event_groups","description":"<p>Groupe(s) d'événement(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","event_groups"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"a5509e7c-ecd0-4ad8-a870-5c7fb6687bed"},{"name":"🚧 Projects","id":"073b2f2e-41a3-4858-a5a6-70463966a89f","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/projects","description":"<p>Projet(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","projects"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"073b2f2e-41a3-4858-a5a6-70463966a89f"},{"name":"🚧 Performers","id":"4a83e7bf-9f62-4c64-9590-cb80d9f5976d","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/performers","description":"<p>Artiste(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","performers"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"4a83e7bf-9f62-4c64-9590-cb80d9f5976d"},{"name":"🚧 Companies","id":"a23ddcc2-9188-486a-abea-feeb389d9f12","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/companies","description":"<p>Entreprise(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","companies"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"a23ddcc2-9188-486a-abea-feeb389d9f12"},{"name":"🚧 NonProfits","id":"ab3adf47-2287-43d9-a170-74c7485dd739","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/non_profits","description":"<p>Associations(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","non_profits"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"ab3adf47-2287-43d9-a170-74c7485dd739"},{"name":"🚧 EtablissementPublics","id":"f16a4e6c-e016-4155-bbad-3022c0eb6e42","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/etablissement_publics","description":"<p>Établissement(s) public(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","etablissement_publics"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"f16a4e6c-e016-4155-bbad-3022c0eb6e42"},{"name":"🚧 Skills","id":"b559fd8f-0428-4ea7-895d-5e4ada932060","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/skills","description":"<p>Compétence(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","skills"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"b559fd8f-0428-4ea7-895d-5e4ada932060"},{"name":"🚧 Elects","id":"ec9b1d3a-1cec-49d7-89c0-8fe90de6cb64","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/elects","description":"<p>Élus(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","elects"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"ec9b1d3a-1cec-49d7-89c0-8fe90de6cb64"}],"id":"405f577e-8574-4f33-92a1-ef5c5563cb3d","description":"<p>A venir... 🚧</p>\n","event":[{"listen":"prerequest","script":{"id":"487c0f48-a1cd-4aae-af2f-4b62ccf8bb0b","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"4dfafa06-8884-4b36-9c42-31cba1746986","type":"text/javascript","exec":[""]}}],"_postman_id":"405f577e-8574-4f33-92a1-ef5c5563cb3d"},{"name":"Médias","item":[{"name":"🚧 Medias","id":"02a4157e-cc3f-49da-98d4-43cfe04f99c5","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/medias","description":"<p>Média(s) associé(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","medias"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"02a4157e-cc3f-49da-98d4-43cfe04f99c5"},{"name":"✅ Images","id":"f3f57dd7-b21c-4870-9530-6c28a016dc24","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/images","description":"<p>Image(s) associée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","images"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"f3f57dd7-b21c-4870-9530-6c28a016dc24"},{"name":"✅ Documents","id":"609aadd1-406c-4c02-bcf2-bf45ca281073","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/documents","description":"<p>Document(s) associé(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","documents"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"609aadd1-406c-4c02-bcf2-bf45ca281073"}],"id":"74358f5c-d9bd-4f31-877f-594ba92783e1","_postman_id":"74358f5c-d9bd-4f31-877f-594ba92783e1","description":""}],"id":"37845858-900a-48c7-8e2a-d204779f7614","description":"<p>Les événements</p>\n","event":[{"listen":"prerequest","script":{"id":"768578b7-1e5d-45b7-ab56-2a8b856f2061","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"a419bb76-510b-4b2b-bc5d-608de7e9b0d3","type":"text/javascript","exec":[""]}}],"_postman_id":"37845858-900a-48c7-8e2a-d204779f7614"},{"name":"🚧 Régions","item":[{"name":"Endpoints principaux","item":[{"name":"✅ Index","id":"c4e11549-aa31-484f-8472-5060fa223589","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events","description":"<p>Liste des événements</p>\n","urlObject":{"path":["v2",":instance","events"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"}]}},"response":[{"id":"11231291-bd54-478b-8245-fcdc2ad616d4","name":"✅ Index","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.publidata.io/v2/:instance/events","host":["https://api.publidata.io"],"path":["v2",":instance","events"],"variable":[{"key":"instance","value":"500-ans-renaissances"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Tue, 06 Nov 2018 14:35:32 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"e272b80759b3239cb223ac313ead9d8a\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"ef157796-c377-4ab4-b340-25fe123f51d3"},{"key":"X-Runtime","value":"0.211831"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"J7dASjXPxB\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"J7dASjXPxB\",\n                \"created_at\": \"2018-11-02T13:36:24Z\",\n                \"updated_at\": \"2018-11-06T14:11:43Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {\n                    \"fr\": \"La 28e édition du Festival International des Jardins abordera un thème cher à la Renaissance.\"\n                },\n                \"name\": {\n                    \"fr\": \"Festival International des Jardins de Chaumont-sur-Loire\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"medium-insert-active\\\"><br></p>\"\n                },\n                \"start_at\": \"2019-04-25T10:00:00Z\",\n                \"end_at\": \"2019-11-03T19:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"y7KpS6Dgxv\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"y7KpS6Dgxv\",\n                \"created_at\": \"2018-10-31T11:26:32Z\",\n                \"updated_at\": \"2018-11-06T10:56:29Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {\n                    \"fr\": \"62eme Colloque International d'études humanistes du centre d'études supérieures de la Renaissance\"\n                },\n                \"name\": {\n                    \"fr\": \"Léonard de Vinci création et innovations \"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"is-active\\\">Le 62ème colloque international d’études humanistes du Centre d’études supérieures de la Renaissance de Tours sera consacré à Léonard de Vinci en 2019.&nbsp;</p><p class=\\\"is-active\\\">Cet événement rassemblera les plus grands spécialistes internationaux du sujet et proposera d’aborder toutes les facettes de l’oeuvre de Léonard sous le prisme de l’invention et de l’innovation : mécanique, médecine, architecture, biomimétisme, etc. Une partie de ce colloque se tiendra dans des lieux marqués par la figure de Léonard de Vinci : le Château du Clos Lucé à Amboise et le Château de Chambord.</p>\"\n                },\n                \"start_at\": \"2019-06-01T00:00:00Z\",\n                \"end_at\": \"2019-06-30T00:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"G7j3SNKzxg\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"G7j3SNKzxg\",\n                \"created_at\": \"2018-10-31T09:20:00Z\",\n                \"updated_at\": \"2018-11-06T10:56:29Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {},\n                \"name\": {\n                    \"fr\": \"Les Borgia à Chinon\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"\\\">La Forteresse royale de Chinon, proposera une reconstitution historique de la venue de César Borgia, fils du pape Alexandre VI pour rencontrer le roi de France à Chinon en 1498 . Reconstitution (cortège équestre). Démonstrations de Calcio Storico (sport florentin de la Renaissance, ancêtre du football actuel…). Dégustations de mets et recettes de la Renaissance florentine. Danses et musiques Renaissance.<br></p>\"\n                },\n                \"start_at\": \"2019-07-21T00:00:00Z\",\n                \"end_at\": \"2019-07-21T00:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"jVJbSWMWVR\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"jVJbSWMWVR\",\n                \"created_at\": \"2018-10-31T08:54:32Z\",\n                \"updated_at\": \"2018-11-06T10:56:28Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {},\n                \"name\": {\n                    \"fr\": \"La renaissance en Val de Loire, en France et en Europe - Festival du film français renaissance\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p>Pour la 21ème édition des Rendez- vous de l’Histoire, le Centre d’Études Supérieures de la Renaissance sera fortement impliqué dans une programmation spécifique « La Renaissance en Val de Loire, en France et en Europe ». Dans le cadre du festival du film français « Renaissance », seront projetés des films historiques accompagnés de moments de réflexion (débats, conférences et ateliers) mettant en perspective la création cinématographique au regard de l’histoire de la peinture historiciste.<br></p>\"\n                },\n                \"start_at\": \"2019-10-01T00:00:00Z\",\n                \"end_at\": \"2019-10-31T00:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"J7dASjXwxB\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"J7dASjXwxB\",\n                \"created_at\": \"2018-10-31T08:42:55Z\",\n                \"updated_at\": \"2018-11-06T10:56:28Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {\n                    \"fr\": \"Parcours numérique, sonore et interactif\"\n                },\n                \"name\": {\n                    \"fr\": \"Renaissance comme Rabelais\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<h3>Parcours numérique, sonore et interactif combinant des moyens techniques innovants capables d’allier  géographie littéraire et géographie réelle. Création d’un parcours sonore géolocalisé à partir d’une application mobile entre La Devinière, maison natale de Rabelais, et l’Abbaye de Seuilly.<br></h3>\"\n                },\n                \"start_at\": \"2019-07-01T00:00:00Z\",\n                \"end_at\": \"2019-10-31T00:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"DVAWS3NQxX\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"DVAWS3NQxX\",\n                \"created_at\": \"2018-10-31T08:34:25Z\",\n                \"updated_at\": \"2018-11-06T10:56:28Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {},\n                \"name\": {\n                    \"fr\": \"Spectacle numérique itinérant Renaissance(S)\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p>Ce spectacle numérique invite le public à s’immerger par le biais des dernières technologies dans un environnement visuel et sonore en plusieurs dimensions. Diverses technologies, de réalité augmentée ou de réalité virtuelle peuvent être détournées par le biais d’une immersion sensori-motrice grâce à une ou plusieurs interfaces visuelles. Ce spectacle proposera une narration dans l’esprit humaniste et novateur de la Renaissance.</p><p>Il évoquera les dimensions créatives, anticipatrices, pluridisciplinaires de Léonard de Vinci, les acteurs, oeuvres, sites patrimoniaux et culturels majeurs du territoire à la Renaissance, le Centre-Val de Loire aujourd’hui et sa projection dans le futur.</p>\"\n                },\n                \"start_at\": \"2019-08-15T19:00:00Z\",\n                \"end_at\": \"2019-09-15T23:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"8VvZS1y0Vv\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"8VvZS1y0Vv\",\n                \"created_at\": \"2018-10-31T08:29:42Z\",\n                \"updated_at\": \"2018-11-06T10:56:28Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {},\n                \"name\": {\n                    \"fr\": \"Magnificences à la cour de France\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"is-active\\\">Ce spectacle de l’ensemble Doulce Mémoire, recrée l’univers d’une fête à la cour de François I<sup>er</sup>, autour de 1515, celles qui virent l’arrivée en France de Léonard de Vinci à l’invitation du roi français. Peintre, inventeur de génie, Léonard était aussi organisateur de fêtes fameuses, dont l’inventivité et la puissance créatrice étaient appréciées les puissants.<br></p>\"\n                },\n                \"start_at\": \"2019-07-23T19:00:00Z\",\n                \"end_at\": \"2019-07-23T23:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"NLwlSvmaVD\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"NLwlSvmaVD\",\n                \"created_at\": \"2018-10-30T16:51:07Z\",\n                \"updated_at\": \"2018-11-06T10:56:27Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {\n                    \"fr\": \"Exposition regroupant des artistes contemporains influencés par Léonard de Vinci et la Renaissance.\"\n                },\n                \"name\": {\n                    \"fr\": \"Hommage contemporain à la Renaissance\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"is-active\\\">Exposition d’artistes contemporains ayant été influencés par Léonard de Vinci et la Renaissance, sur l’exemple de Fabien Merelle, établi à Tours et travaillant sur la scène internationale.&nbsp;</p><p class=\\\"is-active\\\">L’exposition « Hommage à Léonard » transpose dans l’art contemporain l’héritage du maître du Cinquecento mort en Val de Loire il y a 500 ans. Vaste cabinet de curiosités, l’exposition présentée dans les salles historiques du château fait écho au système de pensée&nbsp;<span style=\\\"font-size: 1em; font-family: ProximaNova, Helvetica, Arial, &quot;Sans Serif&quot;;\\\">du Maitre, génie polyvalent où la réalisation ne constitue pas la fin mais le moyen de la réflexion. Conçue comme une sorte de « mise en curiosité » envers les différents apports de Léonard, homme d’esprit universel à l’histoire des arts en Europe, interprétés ou prolongés par différents artistes de notre temps travaillant sur la scène internationale ; l’exposition montre aussi que les échanges entre Italie et France vers 1500, l’italianisme dans les&nbsp;</span><span style=\\\"font-size: 1em; font-family: ProximaNova, Helvetica, Arial, &quot;Sans Serif&quot;;\\\">arts amorcé sous Charles VIII et Louis XII se perpétuent de nos jours, avec les travaux des artistes florentines Antonella Bussanich, Alessandra Capodacqua et Alessandra Ragionier. Comme dans les chapitres d’un livre, chaque salle illustre l’un des thèmes étudiés par Léonard. L’autoportrait / Le portrait / La peinture d’histoire /&nbsp;</span><span style=\\\"font-size: 1em; font-family: ProximaNova, Helvetica, Arial, &quot;Sans Serif&quot;;\\\">Le Paysage / Le codex / La nature morte / Le Portrait féminin / Le Drapé.</span></p>\"\n                },\n                \"start_at\": \"2019-04-01T10:00:00Z\",\n                \"end_at\": \"2019-11-30T18:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"8VOeS416xY\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"8VOeS416xY\",\n                \"created_at\": \"2018-10-29T16:47:42Z\",\n                \"updated_at\": \"2018-11-06T10:56:30Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {\n                    \"fr\": \"Dans le cadre de l'anniversaire des 500ans de la Renaissance, l'artiste Ravo revisite l'oeuvre de François-Guillaume Ménageot \\\"La mort de Léonard de Vinci\\\"\"\n                },\n                \"name\": {\n                    \"fr\": \"Ravo Mattoni invité du Château Royal d' Amboise\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"\\\">Andrea Mattoni alias <b>RAVO</b>, artiste-graffeur italien de son état, a débuté en 2016 un ambitieux projet visant à reproduire, in situ et en très grand format, des chefs-d’œuvre de la peinture classique signés du Caravage, de Delacroix, de Delatour… Profondeur des couleurs, puissance des lignes et de l’échelle, l’hommage de RAVO aux grands maîtres est d’une modernité réjouissante… Le résultat est bluffant.</p><p class=\\\"\\\">De manière à prolonger l’exposition « La Mort de Léonard de Vinci : la construction d’un mythe » préparée avec la BNF, le château royal d’Amboise a demandé à RAVO de réaliser 5 toiles de grandes dimensions (4.5m X 3m). Celles-ci prendront pour sujet des détails du monumental tableau de François-Guillaume Ménageot « La Mort de Léonard de Vinci », et trouveront place sur les murs de la tour cavalière des Minimes, du 2 mai au 2 septembre 2019. Pour honorer cette commande, l’artiste sera en résidence au château royal d’Amboise durant une dizaine de jours, en avril 2019. Il réalisera ses peintures en public.</p><p class=\\\"\\\">Cette exposition est organisée avec le concours de l’association des Ateliers de l’Etoile.</p><p class=\\\"\\\"><span style=\\\"font-size: 1em; font-family: ProximaNova, Helvetica, Arial, &quot;Sans Serif&quot;;\\\"><b>\\\"Exposition « La Mort de Léonard de Vinci : la construction d’un mythe » - Partenariat BNF (Bibliothèque Nationale de France)</b></span><br></p><p class=\\\"\\\">Tous les jours, du 2 mai au 2 septembre 2019.</p><p class=\\\"\\\">La grande exposition intitulée « La Mort de Léonard de Vinci : la construction d’un mythe », articulée autour du monumental tableau (280 cm X 357 cm) de François-Guillaume Ménageot La mort de Léonard de Vinci, et d’une collection de gravures issues des collections nationales, nous éclairera sur la manière dont les contours de l’amitié entre le roi François Ier et Léonard ont été progressivement réécrits par l’Histoire, et assimilés par elle jusqu’à la construction d’un mythe mis au service de l’image de la monarchie française au XVIII<sup>ème</sup> siècle.</p><p>Au cœur de la riche programmation des célébrations du 5ème centenaire, cette exposition majeure viendra aussi rappeler à un public venu des quatre coins du monde la place éternelle qu’occupe Léonard de Vinci en Val de Loire, et à Amboise en particulier où il repose pour l’éternité dans la quiétude de la chapelle du château.\\\"</p>\"\n                },\n                \"start_at\": \"2019-05-02T09:00:00Z\",\n                \"end_at\": \"2019-09-02T18:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"items\": 9,\n        \"count\": 9,\n        \"page\": 1\n    },\n    \"links\": {\n        \"self\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events?page=1\",\n        \"pagination\": {\n            \"first\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events?page=1\",\n            \"last\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events?page=1\"\n        }\n    }\n}"}],"_postman_id":"c4e11549-aa31-484f-8472-5060fa223589"},{"name":"✅ Show","id":"35cb1686-50ac-4a9d-9f63-2130b4ad6ca1","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/{{instance_id}}/events/:id","description":"<p>Détail d'un événement</p>\n","urlObject":{"path":["v2","{{instance_id}}","events",":id"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[{"id":"b1ee5a5f-d8dd-4edd-b72a-2bb354b55eb9","name":"✅ Show","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.publidata.io/v2/{{instance_id}}/events/:id","host":["https://api.publidata.io"],"path":["v2","{{instance_id}}","events",":id"],"variable":[{"key":"id","value":"y7KpS6Dgxv"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Tue, 06 Nov 2018 14:50:05 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"811c246d37cc926cc75bf582cd364fb3\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"d619c237-6f78-4100-9d77-b11aa3b6dc53"},{"key":"X-Runtime","value":"0.051868"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"y7KpS6Dgxv\",\n        \"type\": \"event\",\n        \"attributes\": {\n            \"id\": \"y7KpS6Dgxv\",\n            \"created_at\": \"2018-10-31T11:26:32Z\",\n            \"updated_at\": \"2018-11-06T10:56:29Z\",\n            \"cancelled\": false,\n            \"cancellation_reason\": null,\n            \"free_admission\": null,\n            \"free_admission_condition\": null,\n            \"punchline\": {\n                \"fr\": \"62eme Colloque International d'études humanistes du centre d'études supérieures de la Renaissance\"\n            },\n            \"name\": {\n                \"fr\": \"Léonard de Vinci création et innovations \"\n            },\n            \"blurb\": {\n                \"fr\": \"<p class=\\\"is-active\\\">Le 62ème colloque international d’études humanistes du Centre d’études supérieures de la Renaissance de Tours sera consacré à Léonard de Vinci en 2019.&nbsp;</p><p class=\\\"is-active\\\">Cet événement rassemblera les plus grands spécialistes internationaux du sujet et proposera d’aborder toutes les facettes de l’oeuvre de Léonard sous le prisme de l’invention et de l’innovation : mécanique, médecine, architecture, biomimétisme, etc. Une partie de ce colloque se tiendra dans des lieux marqués par la figure de Léonard de Vinci : le Château du Clos Lucé à Amboise et le Château de Chambord.</p>\"\n            },\n            \"start_at\": \"2019-06-01T00:00:00Z\",\n            \"end_at\": \"2019-06-30T00:00:00Z\"\n        },\n        \"relationships\": {},\n        \"links\": {\n            \"self\": {\n                \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv\"\n            },\n            \"relations\": {\n                \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/cities\",\n                \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/companies\",\n                \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/departments\",\n                \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/elects\",\n                \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/etablissement_publics\",\n                \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/event_groups\",\n                \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/events\",\n                \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/facilities\",\n                \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/news\",\n                \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/non_profits\",\n                \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/performers\",\n                \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/projects\",\n                \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/regions\",\n                \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/skills\"\n            },\n            \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/images\",\n            \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/documents\",\n            \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates\",\n            \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/type\",\n            \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/types\"\n        },\n        \"meta\": {\n            \"licenses\": [\n                {\n                    \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                    \"SPDX\": \"ODbL-1.0\",\n                    \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                    \"targets\": [\n                        \"cancelled\",\n                        \"cancellation_reason\",\n                        \"free_admission\",\n                        \"free_admission_condition\",\n                        \"punchline\",\n                        \"name\",\n                        \"blurb\",\n                        \"start_at\",\n                        \"end_at\"\n                    ]\n                }\n            ],\n            \"instances\": {\n                \"500-ans-renaissances\": [\n                    \"fr\"\n                ]\n            }\n        }\n    }\n}"}],"_postman_id":"35cb1686-50ac-4a9d-9f63-2130b4ad6ca1"},{"name":"✅ Show with included resources","id":"94adca69-1d29-4247-941d-d9ad545af455","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id?include=dates,types","description":"<p>Avec le paramètre <code>include</code> vous avez la possibilité d'insérer dans la vue principale des ressources liées, vous évitant des requêtes supplémentaires.</p>\n","urlObject":{"path":["v2",":instance","events",":id"],"host":["https://api.publidata.io"],"query":[{"description":{"content":"<p>Liste des ressources à insérer</p>\n","type":"text/plain"},"key":"include","value":"dates,types"}],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[{"id":"ab981b24-2474-4ef7-aef2-96e2a90c782f","name":"✅ Show with included resources","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.publidata.io/v2/:instance/events/:id?include=dates,types","host":["https://api.publidata.io"],"path":["v2",":instance","events",":id"],"query":[{"key":"include","value":"dates,types","description":"Liste des ressources à insérer"}],"variable":[{"key":"instance","value":"500-ans-renaissances"},{"key":"id","value":"y7KpS6Dgxv"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Tue, 06 Nov 2018 14:54:52 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"2c566edafdfca2fe7ed4fc7f8ef3e15b\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"b8d67f08-016a-4d6c-b10e-7d6467c5bcdf"},{"key":"X-Runtime","value":"0.483946"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"y7KpS6Dgxv\",\n        \"type\": \"event\",\n        \"attributes\": {\n            \"id\": \"y7KpS6Dgxv\",\n            \"created_at\": \"2018-10-31T11:26:32Z\",\n            \"updated_at\": \"2018-11-06T10:56:29Z\",\n            \"cancelled\": false,\n            \"cancellation_reason\": null,\n            \"free_admission\": null,\n            \"free_admission_condition\": null,\n            \"punchline\": {\n                \"fr\": \"62eme Colloque International d'études humanistes du centre d'études supérieures de la Renaissance\"\n            },\n            \"name\": {\n                \"fr\": \"Léonard de Vinci création et innovations \"\n            },\n            \"blurb\": {\n                \"fr\": \"<p class=\\\"is-active\\\">Le 62ème colloque international d’études humanistes du Centre d’études supérieures de la Renaissance de Tours sera consacré à Léonard de Vinci en 2019.&nbsp;</p><p class=\\\"is-active\\\">Cet événement rassemblera les plus grands spécialistes internationaux du sujet et proposera d’aborder toutes les facettes de l’oeuvre de Léonard sous le prisme de l’invention et de l’innovation : mécanique, médecine, architecture, biomimétisme, etc. Une partie de ce colloque se tiendra dans des lieux marqués par la figure de Léonard de Vinci : le Château du Clos Lucé à Amboise et le Château de Chambord.</p>\"\n            },\n            \"start_at\": \"2019-06-01T00:00:00Z\",\n            \"end_at\": \"2019-06-30T00:00:00Z\"\n        },\n        \"relationships\": {\n            \"types\": {\n                \"data\": []\n            },\n            \"dates\": {\n                \"data\": [\n                    {\n                        \"id\": \"axGeikm1VN\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"8VZZiNZ8Vd\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"eVgRimO4Lo\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"E79OiqZQLM\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"YVYgiW4lxD\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"87oei8vYLQ\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"gLb4iOga7J\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"o7EMiQDr75\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"B72ZiYOv7O\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"y7KAiEO4Lv\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"d7DzidZMLB\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"DLkqijMy7a\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"G7jaiXOoVg\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"jVJvi2nyVR\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"J7d3igMRVB\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"2VX9iOjl7N\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"DVA6ivYn7X\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"8VvJieDWVv\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"D744i3N078\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"NLwjibKKxD\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"Q7BaiA1AVb\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"Kx09iEraLX\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"y7KAiEOMLv\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"d7DzidZmLB\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"DLkqijM67a\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"G7jaiXOAVg\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"jVJvi2nXVR\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"J7d3igMbVB\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"2VX9iOjd7N\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"DVA6ivYR7X\",\n                        \"type\": \"date\"\n                    }\n                ]\n            }\n        },\n        \"links\": {\n            \"self\": {\n                \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv\"\n            },\n            \"relations\": {\n                \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/cities\",\n                \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/companies\",\n                \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/departments\",\n                \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/elects\",\n                \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/etablissement_publics\",\n                \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/event_groups\",\n                \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/events\",\n                \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/facilities\",\n                \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/news\",\n                \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/non_profits\",\n                \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/performers\",\n                \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/projects\",\n                \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/regions\",\n                \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/skills\"\n            },\n            \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/images\",\n            \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/documents\",\n            \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates\",\n            \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/type\",\n            \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/types\"\n        },\n        \"meta\": {\n            \"included\": [\n                \"dates\",\n                \"types\"\n            ],\n            \"licenses\": [\n                {\n                    \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                    \"SPDX\": \"ODbL-1.0\",\n                    \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                    \"targets\": [\n                        \"cancelled\",\n                        \"cancellation_reason\",\n                        \"free_admission\",\n                        \"free_admission_condition\",\n                        \"punchline\",\n                        \"name\",\n                        \"blurb\",\n                        \"start_at\",\n                        \"end_at\"\n                    ]\n                }\n            ],\n            \"instances\": {\n                \"500-ans-renaissances\": [\n                    \"fr\"\n                ]\n            }\n        }\n    },\n    \"included\": [\n        {\n            \"id\": \"axGeikm1VN\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"axGeikm1VN\",\n                \"created_at\": \"2018-10-31T11:33:15Z\",\n                \"updated_at\": \"2018-10-31T11:33:15Z\",\n                \"start_at\": \"2019-06-30T00:00:00Z\",\n                \"end_at\": \"2019-06-30T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 30 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"8VZZiNZ8Vd\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"8VZZiNZ8Vd\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-29T00:00:00Z\",\n                \"end_at\": \"2019-06-29T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 29 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"eVgRimO4Lo\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"eVgRimO4Lo\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-28T00:00:00Z\",\n                \"end_at\": \"2019-06-28T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 28 Fr 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"E79OiqZQLM\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"E79OiqZQLM\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-27T00:00:00Z\",\n                \"end_at\": \"2019-06-27T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 27 Th 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"YVYgiW4lxD\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"YVYgiW4lxD\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-26T00:00:00Z\",\n                \"end_at\": \"2019-06-26T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 26 We 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"87oei8vYLQ\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"87oei8vYLQ\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-25T00:00:00Z\",\n                \"end_at\": \"2019-06-25T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 25 Tu 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"gLb4iOga7J\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"gLb4iOga7J\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-24T00:00:00Z\",\n                \"end_at\": \"2019-06-24T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 24 Mo 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"o7EMiQDr75\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"o7EMiQDr75\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-23T00:00:00Z\",\n                \"end_at\": \"2019-06-23T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 23 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"B72ZiYOv7O\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"B72ZiYOv7O\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-22T00:00:00Z\",\n                \"end_at\": \"2019-06-22T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 22 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"y7KAiEO4Lv\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"y7KAiEO4Lv\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-21T00:00:00Z\",\n                \"end_at\": \"2019-06-21T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 21 Fr 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"d7DzidZMLB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"d7DzidZMLB\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-20T00:00:00Z\",\n                \"end_at\": \"2019-06-20T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 20 Th 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DLkqijMy7a\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DLkqijMy7a\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-19T00:00:00Z\",\n                \"end_at\": \"2019-06-19T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 19 We 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"G7jaiXOoVg\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"G7jaiXOoVg\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-18T00:00:00Z\",\n                \"end_at\": \"2019-06-18T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 18 Tu 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"jVJvi2nyVR\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"jVJvi2nyVR\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-17T00:00:00Z\",\n                \"end_at\": \"2019-06-17T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 17 Mo 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"J7d3igMRVB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"J7d3igMRVB\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-16T00:00:00Z\",\n                \"end_at\": \"2019-06-16T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 16 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"2VX9iOjl7N\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"2VX9iOjl7N\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-15T00:00:00Z\",\n                \"end_at\": \"2019-06-15T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 15 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DVA6ivYn7X\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DVA6ivYn7X\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-14T00:00:00Z\",\n                \"end_at\": \"2019-06-14T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 14 Fr 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"8VvJieDWVv\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"8VvJieDWVv\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-13T00:00:00Z\",\n                \"end_at\": \"2019-06-13T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 13 Th 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"D744i3N078\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"D744i3N078\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-12T00:00:00Z\",\n                \"end_at\": \"2019-06-12T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 12 We 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"NLwjibKKxD\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"NLwjibKKxD\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-11T00:00:00Z\",\n                \"end_at\": \"2019-06-11T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 11 Tu 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"Q7BaiA1AVb\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"Q7BaiA1AVb\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-10T00:00:00Z\",\n                \"end_at\": \"2019-06-10T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 10 Mo 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"Kx09iEraLX\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"Kx09iEraLX\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-09T00:00:00Z\",\n                \"end_at\": \"2019-06-09T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 09 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"y7KAiEOMLv\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"y7KAiEOMLv\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-08T00:00:00Z\",\n                \"end_at\": \"2019-06-08T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 08 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"d7DzidZmLB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"d7DzidZmLB\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-07T00:00:00Z\",\n                \"end_at\": \"2019-06-07T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 07 Fr 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DLkqijM67a\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DLkqijM67a\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-06T00:00:00Z\",\n                \"end_at\": \"2019-06-06T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 06 Th 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"G7jaiXOAVg\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"G7jaiXOAVg\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-05T00:00:00Z\",\n                \"end_at\": \"2019-06-05T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 05 We 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"jVJvi2nXVR\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"jVJvi2nXVR\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-04T00:00:00Z\",\n                \"end_at\": \"2019-06-04T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 04 Tu 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"J7d3igMbVB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"J7d3igMbVB\",\n                \"created_at\": \"2018-10-31T11:33:11Z\",\n                \"updated_at\": \"2018-10-31T11:33:11Z\",\n                \"start_at\": \"2019-06-03T00:00:00Z\",\n                \"end_at\": \"2019-06-03T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 03 Mo 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"2VX9iOjd7N\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"2VX9iOjd7N\",\n                \"created_at\": \"2018-10-31T11:33:11Z\",\n                \"updated_at\": \"2018-10-31T11:33:11Z\",\n                \"start_at\": \"2019-06-02T00:00:00Z\",\n                \"end_at\": \"2019-06-02T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 02 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DVA6ivYR7X\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DVA6ivYR7X\",\n                \"created_at\": \"2018-10-31T11:33:11Z\",\n                \"updated_at\": \"2018-10-31T11:33:11Z\",\n                \"start_at\": \"2019-06-01T00:00:00Z\",\n                \"end_at\": \"2019-06-01T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 01 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"wo7NbcKj7n\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"wo7NbcKj7n\",\n                \"created_at\": \"2018-10-23T01:23:57Z\",\n                \"updated_at\": \"2018-10-23T01:24:19Z\",\n                \"name\": {\n                    \"fr\": \"Rassemblement\"\n                }\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": \"https://publidata-staging.herokuapp.com/api/v2/event_types/wo7NbcKj7n\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"Wn7lQcrKxm\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"Wn7lQcrKxm\",\n                \"created_at\": \"2018-10-23T01:23:57Z\",\n                \"updated_at\": \"2018-10-23T01:24:19Z\",\n                \"name\": {\n                    \"fr\": \"Colloque\"\n                }\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": \"https://publidata-staging.herokuapp.com/api/v2/event_types/Wn7lQcrKxm\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        }\n    ]\n}"}],"_postman_id":"94adca69-1d29-4247-941d-d9ad545af455"},{"name":"🚧 Show translated","id":"8a759864-9a40-4ea6-974e-bfa63983993c","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id?lang=en","description":"<p>Le paramètre <code>lang</code> vous permet de récupérer les contenus éditoriaux d'une ressource dans une langue donnée.</p>\n","urlObject":{"path":["v2",":instance","events",":id"],"host":["https://api.publidata.io"],"query":[{"description":{"content":"<p>Langue désirée</p>\n","type":"text/plain"},"key":"lang","value":"en"}],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"8a759864-9a40-4ea6-974e-bfa63983993c"},{"name":"🚧 Search","id":"cefc8001-b8d4-4674-a913-eaf8895482f7","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.publidata.io/v2/:instance/events/?q=Sénart&size=10&page=1&marker=false&instances[]=2&types[]=Event&performers[]=Nakht&facilities[]=8&events[]=1&event_groups[]=1&news[]=1&projects[]=1&cities[]=7&etablissement_publics[]=1&departments[]=1&regions[]=1&skills[]=1&elects[]=1&bbox[]&event_types[]=Oeuvre d'art&event_styles[]=Gymnastique&date[start]=1526054400&date[end]=1526083199&price[min]=10&price[max]=50&free_admission=true&accessibilities[]=has_deaf_accessibility","description":"<p>Recherche d'événements : 🚧 à venir... </p>\n","urlObject":{"path":["v2",":instance","events",""],"host":["https://api.publidata.io"],"query":[{"description":{"content":"<p>Filtre textuel</p>\n","type":"text/plain"},"key":"q","value":"Sénart"},{"description":{"content":"<p>Nombre de résultats retournés (defaut: 10)</p>\n","type":"text/plain"},"key":"size","value":"10"},{"description":{"content":"<p>Pagination (defaut: 1)</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>Filtre booléen pour ne retourner que les locations (default: false)</p>\n","type":"text/plain"},"key":"marker","value":"false"},{"description":{"content":"<p>Filtre par instance (array d'id)</p>\n","type":"text/plain"},"key":"instances[]","value":"2"},{"description":{"content":"<p>Filtre par type de ressource (array de type parmi la liste suivante : News Event Facility Project City Epci Department Region EventGroup Skill Elect Performer Company NonProfit EtablissementPublic)</p>\n","type":"text/plain"},"key":"types[]","value":"Event"},{"description":{"content":"<p>Filtre par artiste lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"performers[]","value":"Nakht"},{"description":{"content":"<p>Filtre par équipement lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"facilities[]","value":"8"},{"description":{"content":"<p>Filtre par événement lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"events[]","value":"1"},{"description":{"content":"<p>Filtre par groupe d'événements lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"event_groups[]","value":"1"},{"description":{"content":"<p>Filtre par actualité liée (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"news[]","value":"1"},{"description":{"content":"<p>Filtre par projet lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"projects[]","value":"1"},{"description":{"content":"<p>Filtre par ville et location liées (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"cities[]","value":"7"},{"description":{"content":"<p>Filtre par établissement public lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"etablissement_publics[]","value":"1"},{"description":{"content":"<p>Filtre par departement lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"departments[]","value":"1"},{"description":{"content":"<p>Filtre par region liée (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"regions[]","value":"1"},{"description":{"content":"<p>Filtre par compétence liée (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"skills[]","value":"1"},{"description":{"content":"<p>Filtre par élu lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"elects[]","value":"1"},{"description":{"content":"<p>Filtre géographique (array de latitudes, longitudes dans l'ordre suivant minX, minY, maxX, maxY)</p>\n","type":"text/plain"},"key":"bbox[]","value":null},{"description":{"content":"<p>Filtre par type d'événement (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"event_types[]","value":"Oeuvre d'art"},{"description":{"content":"<p>Filtre par style d'événement (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"event_styles[]","value":"Gymnastique"},{"description":{"content":"<p>Filtre par date/heure de début (timestamp en seconde)</p>\n","type":"text/plain"},"key":"date[start]","value":"1526054400"},{"description":{"content":"<p>Filtre par date/heure de fin (timestamp en seconde)</p>\n","type":"text/plain"},"key":"date[end]","value":"1526083199"},{"description":{"content":"<p>Filtre de prix minimum</p>\n","type":"text/plain"},"key":"price[min]","value":"10"},{"description":{"content":"<p>Filtre de prix maximum</p>\n","type":"text/plain"},"key":"price[max]","value":"50"},{"description":{"content":"<p>Filtre de gratuité (boolean)</p>\n","type":"text/plain"},"key":"free_admission","value":"true"},{"description":{"content":"<p>Filtre d'accessibilité (array de string)</p>\n","type":"text/plain"},"key":"accessibilities[]","value":"has_deaf_accessibility"}],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"}]}},"response":[{"id":"79d920ae-5304-4765-ba65-e4d2176a7905","name":"Search events","originalRequest":{"method":"GET","header":[],"url":{"raw":"www.publidata.io/api/v1/events?q=&options[geo][top_left][lat]=49.05965195372349&options[geo][top_left][lon]=2.1371613664061897&options[geo][bottom_right][lat]=48.21570798955211&options[geo][bottom_right][lon]=2.7688752335936897&options[city]=Combs-la-Ville&options[paging][from]=0&options[event_types][]=Concert&options[dates][start_date]=1521812100000&options[dates][end_date]=1522499700000&options[instances][]=2","host":["www","publidata","io"],"path":["api","v1","events"],"query":[{"key":"q","value":"","description":"Recherche (full-text)"},{"key":"options[geo][top_left][lat]","value":"49.05965195372349","description":"Latitude coin supérieur gauche geo-box (lat)"},{"key":"options[geo][top_left][lon]","value":"2.1371613664061897","description":"Longitude coin supérieur gauche geo-box (lon)"},{"key":"options[geo][bottom_right][lat]","value":"48.21570798955211","description":"Latitude coin inférieur droit geo-box (lat)"},{"key":"options[geo][bottom_right][lon]","value":"2.7688752335936897","description":"Longitude coin inférieur droit geo-box (lon)"},{"key":"options[city]","value":"Combs-la-Ville","description":"Ville (full-text ou code postal)"},{"key":"options[paging][from]","value":"0","description":"Début de la pagination (integer)"},{"key":"options[event_types][]","value":"Concert","description":"Types d'événement (array de string)"},{"key":"options[dates][start_date]","value":"1521812100000","description":"Date de début (format timestamp unix 1508267068688)"},{"key":"options[dates][end_date]","value":"1522499700000","description":"Date de fin (format timestamp unix 1539803068688)"},{"key":"options[instances][]","value":"2"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"took\": 11,\n    \"timed_out\": false,\n    \"_shards\": {\n        \"total\": 1,\n        \"successful\": 1,\n        \"failed\": 0\n    },\n    \"hits\": {\n        \"total\": 2,\n        \"max_score\": 0.9812665,\n        \"hits\": [\n            {\n                \"_index\": \"events\",\n                \"_type\": \"event\",\n                \"_id\": \"3241\",\n                \"_score\": 0.9812665,\n                \"_source\": {\n                    \"id\": 3241,\n                    \"name\": \"Concert des orchestres\",\n                    \"slug\": \"concert-des-orchestres\",\n                    \"status\": \"published\",\n                    \"free_admission\": true,\n                    \"start_date\": \"2018-03-23T00:00:00.000+01:00\",\n                    \"end_date\": \"2018-03-23T00:00:00.000+01:00\",\n                    \"punchline\": \"Le vendredi 23 mars 2018 à 20h au Théâtre de la Coupole, les musiciens du Conservatoire Maurice Ohana de Combs-la-ville vous attendent pour leur rendez-vous annuel...\",\n                    \"blurb\": \"Cette soirée donne la possibilité à plusieurs formations orchestrales du conservatoire Maurice Ohana de se produire sur scène. \\r\\n\\r\\nProgramme musical éclectique et varié, ce concert  permet de vivre la musique ensemble et de la partager sans modération avec le public.\",\n                    \"linked_objects\": [\n                        {\n                            \"id\": 180,\n                            \"type\": \"Facility\",\n                            \"name\": \"La Coupole\"\n                        },\n                        {\n                            \"id\": 12,\n                            \"type\": \"City\",\n                            \"name\": \"Combs-la-Ville\"\n                        }\n                    ],\n                    \"cover_picture\": {\n                        \"id\": 22632,\n                        \"name\": \"image de couverture de Concert des orchestres\",\n                        \"alt\": \"image de couverture de Concert des orchestres\",\n                        \"description\": \"image de couverture de Concert des orchestres\",\n                        \"slug\": null,\n                        \"image_urls_as_json\": {\n                            \"image_original_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/632/original/open-uri20171002-4-1etqlbo?1506962457\",\n                            \"image_small_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/632/image_small/open-uri20171002-4-1etqlbo?1506962457\",\n                            \"image_medium_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/632/image_medium/open-uri20171002-4-1etqlbo?1506962457\",\n                            \"image_large_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/632/image_large/open-uri20171002-4-1etqlbo?1506962457\"\n                        }\n                    },\n                    \"instances\": [\n                        {\n                            \"id\": 2,\n                            \"slug\": \"portail-sortir-gps\"\n                        }\n                    ],\n                    \"event_type\": {\n                        \"id\": 13,\n                        \"name\": \"Concert\"\n                    },\n                    \"event_styles\": [\n                        {\n                            \"id\": 82,\n                            \"name\": \"World Music\"\n                        }\n                    ],\n                    \"event_dates\": [\n                        {\n                            \"id\": 37799,\n                            \"start_hour\": \"2000-01-01T20:00:00.000Z\",\n                            \"end_hour\": \"2000-01-01T22:00:00.000Z\",\n                            \"date\": \"2018-03-23T00:00:00.000+01:00\",\n                            \"sold_out\": false,\n                            \"start_date\": \"2018-03-23T20:00:00.000+00:00\",\n                            \"end_date\": \"2018-03-23T22:00:00.000+00:00\"\n                        }\n                    ],\n                    \"facilities\": [\n                        {\n                            \"id\": 180,\n                            \"name\": \"La Coupole\",\n                            \"slug\": \"la-coupole\",\n                            \"address\": \"Rue Jean François Millet, 77380 Combs-la-Ville, France\",\n                            \"location\": {\n                                \"lat\": 48.659695,\n                                \"lon\": 2.5662415\n                            }\n                        }\n                    ],\n                    \"locations\": [],\n                    \"fees\": [],\n                    \"tags\": [],\n                    \"pages\": [\n                        {\n                            \"id\": 7659,\n                            \"instance\": {\n                                \"id\": 2,\n                                \"slug\": \"portail-sortir-gps\"\n                            }\n                        }\n                    ]\n                }\n            },\n            {\n                \"_index\": \"events\",\n                \"_type\": \"event\",\n                \"_id\": \"3983\",\n                \"_score\": 0.9794048,\n                \"_source\": {\n                    \"id\": 3983,\n                    \"name\": \"Après-midi musicale: Claude Debussy\",\n                    \"slug\": \"apres-midi-musicale-claude-debussy\",\n                    \"status\": \"published\",\n                    \"free_admission\": true,\n                    \"start_date\": \"2018-03-24T00:00:00.000+01:00\",\n                    \"end_date\": \"2018-03-24T00:00:00.000+01:00\",\n                    \"punchline\": \"A l'occasion du centenaire de la mort de Claude Debussy, la media-ludothèque et le conservatoire Maurice Ohana vous invitent à une après-midi musical, le samedi 24 mars à partir de 15h30.\",\n                    \"blurb\": \"Claude Debussy (1862-1918) était un compositeur français. Pour célébrer son centenaire, nous vous invitons à un après-midi musical. Au programme, une conférence par Bruno Giner sur le compositeur à 15h30. \\r\\nPuis, à 18h, les élèves du conservatoire interpréteront une sélection d’œuvres de Claude Debussy.\",\n                    \"linked_objects\": [\n                        {\n                            \"id\": 42,\n                            \"type\": \"Facility\",\n                            \"name\": \"Médiathèque de Combs-la-Ville\"\n                        },\n                        {\n                            \"id\": 12,\n                            \"type\": \"City\",\n                            \"name\": \"Combs-la-Ville\"\n                        }\n                    ],\n                    \"cover_picture\": {\n                        \"id\": 24665,\n                        \"name\": \"image de couverture de Après-midi musicale: Claude Debussy\",\n                        \"alt\": \"image de couverture de Après-midi musicale: Claude Debussy\",\n                        \"description\": \"image de couverture de Après-midi musicale: Claude Debussy\",\n                        \"slug\": null,\n                        \"image_urls_as_json\": {\n                            \"image_original_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/665/original/Photo_23a_Claude_Debussy.jpg?1516441408\",\n                            \"image_small_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/665/image_small/Photo_23a_Claude_Debussy.jpg?1516441408\",\n                            \"image_medium_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/665/image_medium/Photo_23a_Claude_Debussy.jpg?1516441408\",\n                            \"image_large_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/665/image_large/Photo_23a_Claude_Debussy.jpg?1516441408\"\n                        }\n                    },\n                    \"instances\": [\n                        {\n                            \"id\": 2,\n                            \"slug\": \"portail-sortir-gps\"\n                        }\n                    ],\n                    \"event_type\": {\n                        \"id\": 13,\n                        \"name\": \"Concert\"\n                    },\n                    \"event_styles\": [\n                        {\n                            \"id\": 111,\n                            \"name\": \"Musique Classique\"\n                        }\n                    ],\n                    \"event_dates\": [\n                        {\n                            \"id\": 41100,\n                            \"start_hour\": \"2000-01-01T15:30:00.000Z\",\n                            \"end_hour\": \"2000-01-01T19:30:00.000Z\",\n                            \"date\": \"2018-03-24T00:00:00.000+01:00\",\n                            \"sold_out\": false,\n                            \"start_date\": \"2018-03-24T15:30:00.000+00:00\",\n                            \"end_date\": \"2018-03-24T19:30:00.000+00:00\"\n                        }\n                    ],\n                    \"facilities\": [\n                        {\n                            \"id\": 42,\n                            \"name\": \"Médiathèque de Combs-la-Ville\",\n                            \"slug\": \"mediatheque-de-combs-la-ville\",\n                            \"address\": \"Rue Jean François Millet, 77380 Combs-la-Ville, France\",\n                            \"location\": {\n                                \"lat\": 48.659695,\n                                \"lon\": 2.5662415\n                            }\n                        }\n                    ],\n                    \"locations\": [],\n                    \"fees\": [],\n                    \"accessibility\": {\n                        \"id\": 1766,\n                        \"deaf_lsf\": false,\n                        \"deaf_vision_based\": false,\n                        \"deaf_subtitle\": false,\n                        \"deaf_hearing_loop\": false,\n                        \"blind_audio_description\": false,\n                        \"blind_darkness_based\": false,\n                        \"blind_text_based\": false,\n                        \"blind_braille\": false,\n                        \"blind_large_print\": false,\n                        \"motor_disabled_access\": true,\n                        \"has_accessibility\": true,\n                        \"has_deaf_accessibility\": false,\n                        \"has_blind_accessibility\": false\n                    },\n                    \"tags\": [\n                        \"Culture\"\n                    ],\n                    \"pages\": [\n                        {\n                            \"id\": 8636,\n                            \"instance\": {\n                                \"id\": 2,\n                                \"slug\": \"portail-sortir-gps\"\n                            }\n                        }\n                    ]\n                }\n            }\n        ]\n    },\n    \"aggregations\": {\n        \"event_styles_terms_agg\": {\n            \"doc_count\": 2,\n            \"name\": {\n                \"doc_count_error_upper_bound\": 0,\n                \"sum_other_doc_count\": 0,\n                \"buckets\": [\n                    {\n                        \"key\": \"111\",\n                        \"doc_count\": 1,\n                        \"name\": {\n                            \"doc_count_error_upper_bound\": 0,\n                            \"sum_other_doc_count\": 0,\n                            \"buckets\": [\n                                {\n                                    \"key\": \"classique\",\n                                    \"doc_count\": 1\n                                },\n                                {\n                                    \"key\": \"musique\",\n                                    \"doc_count\": 1\n                                }\n                            ]\n                        }\n                    },\n                    {\n                        \"key\": \"82\",\n                        \"doc_count\": 1,\n                        \"name\": {\n                            \"doc_count_error_upper_bound\": 0,\n                            \"sum_other_doc_count\": 0,\n                            \"buckets\": [\n                                {\n                                    \"key\": \"music\",\n                                    \"doc_count\": 1\n                                },\n                                {\n                                    \"key\": \"world\",\n                                    \"doc_count\": 1\n                                }\n                            ]\n                        }\n                    }\n                ]\n            }\n        },\n        \"events\": {\n            \"doc_count\": 3838,\n            \"dates\": {\n                \"doc_count\": 11064,\n                \"this_month\": {\n                    \"doc_count\": 737,\n                    \"events\": {\n                        \"doc_count\": 278\n                    }\n                },\n                \"this_week_end\": {\n                    \"doc_count\": 81,\n                    \"events\": {\n                        \"doc_count\": 54\n                    }\n                },\n                \"past\": {\n                    \"doc_count\": 10070,\n                    \"events\": {\n                        \"doc_count\": 3132\n                    }\n                },\n                \"today\": {\n                    \"doc_count\": 34,\n                    \"events\": {\n                        \"doc_count\": 28\n                    }\n                },\n                \"tomorrow\": {\n                    \"doc_count\": 22,\n                    \"events\": {\n                        \"doc_count\": 19\n                    }\n                },\n                \"last_days\": {\n                    \"doc_count\": 133,\n                    \"events\": {\n                        \"doc_count\": 75\n                    }\n                },\n                \"upcoming\": {\n                    \"doc_count\": 1028,\n                    \"events\": {\n                        \"doc_count\": 390\n                    }\n                },\n                \"this_week\": {\n                    \"doc_count\": 197,\n                    \"events\": {\n                        \"doc_count\": 96\n                    }\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"cefc8001-b8d4-4674-a913-eaf8895482f7"}],"id":"860b1a64-d0bd-4210-98b5-8ebb46eb0f8b","_postman_id":"860b1a64-d0bd-4210-98b5-8ebb46eb0f8b","description":""},{"name":"Ressources liées","item":[{"name":"✅ Types","id":"c44f91f6-d0e7-4b5c-ba5d-22cd3d077b0c","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/types","description":"<p>Type(s) de la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","types"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[{"id":"aff1c86e-e76e-4f2a-b8cc-6e593258c6ed","name":"✅ Types","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.publidata.io/v2/:instance/events/:id/types","host":["https://api.publidata.io"],"path":["v2",":instance","events",":id","types"],"variable":[{"key":"instance","value":"500-ans-renaissances"},{"key":"id","value":"y7KpS6Dgxv"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Tue, 06 Nov 2018 14:56:10 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"aca7a58992ce54decfd0aa1309558bf9\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"d9a108a9-5d7c-486f-9b8f-620b97ceecb4"},{"key":"X-Runtime","value":"0.137086"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"wo7NbcKj7n\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"wo7NbcKj7n\",\n                \"created_at\": \"2018-10-23T01:23:57Z\",\n                \"updated_at\": \"2018-10-23T01:24:19Z\",\n                \"name\": {\n                    \"fr\": \"Rassemblement\"\n                }\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": \"https://publidata-staging.herokuapp.com/api/v2/event_types/wo7NbcKj7n\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"Wn7lQcrKxm\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"Wn7lQcrKxm\",\n                \"created_at\": \"2018-10-23T01:23:57Z\",\n                \"updated_at\": \"2018-10-23T01:24:19Z\",\n                \"name\": {\n                    \"fr\": \"Colloque\"\n                }\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": \"https://publidata-staging.herokuapp.com/api/v2/event_types/Wn7lQcrKxm\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        }\n    ],\n    \"meta\": {\n        \"items\": 2,\n        \"count\": 2,\n        \"page\": 1\n    },\n    \"links\": {\n        \"self\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/types?page=1\",\n        \"pagination\": {\n            \"first\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/types?page=1\",\n            \"last\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/types?page=1\"\n        }\n    }\n}"}],"_postman_id":"c44f91f6-d0e7-4b5c-ba5d-22cd3d077b0c"},{"name":"🚧 Themes","id":"1c933c7c-2619-4ff8-9cf0-a32011c69891","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/themes","description":"<p>Thème(s) associé(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","themes"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"1c933c7c-2619-4ff8-9cf0-a32011c69891"},{"name":"✅ Dates","id":"86ceec84-65ee-453d-adaf-06db4cb3c222","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/dates","description":"<p>Date(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","dates"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[{"id":"667c3852-6562-4665-b6b3-d6d7099d2a23","name":"✅ Dates","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.publidata.io/v2/:instance/events/:id/dates","host":["https://api.publidata.io"],"path":["v2",":instance","events",":id","dates"],"variable":[{"key":"instance","value":"500-ans-renaissances"},{"key":"id","value":"y7KpS6Dgxv"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Tue, 06 Nov 2018 14:57:37 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"5019bf7102c4e9c481afd4dc20c410e1\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"5b74b321-cdd9-461b-a32e-4263c646d08b"},{"key":"X-Runtime","value":"0.316049"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"DVA6ivYR7X\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DVA6ivYR7X\",\n                \"created_at\": \"2018-10-31T11:33:11Z\",\n                \"updated_at\": \"2018-10-31T11:33:11Z\",\n                \"start_at\": \"2019-06-01T00:00:00Z\",\n                \"end_at\": \"2019-06-01T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 01 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"2VX9iOjd7N\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"2VX9iOjd7N\",\n                \"created_at\": \"2018-10-31T11:33:11Z\",\n                \"updated_at\": \"2018-10-31T11:33:11Z\",\n                \"start_at\": \"2019-06-02T00:00:00Z\",\n                \"end_at\": \"2019-06-02T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 02 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"J7d3igMbVB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"J7d3igMbVB\",\n                \"created_at\": \"2018-10-31T11:33:11Z\",\n                \"updated_at\": \"2018-10-31T11:33:11Z\",\n                \"start_at\": \"2019-06-03T00:00:00Z\",\n                \"end_at\": \"2019-06-03T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 03 Mo 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"jVJvi2nXVR\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"jVJvi2nXVR\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-04T00:00:00Z\",\n                \"end_at\": \"2019-06-04T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 04 Tu 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"G7jaiXOAVg\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"G7jaiXOAVg\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-05T00:00:00Z\",\n                \"end_at\": \"2019-06-05T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 05 We 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DLkqijM67a\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DLkqijM67a\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-06T00:00:00Z\",\n                \"end_at\": \"2019-06-06T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 06 Th 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"d7DzidZmLB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"d7DzidZmLB\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-07T00:00:00Z\",\n                \"end_at\": \"2019-06-07T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 07 Fr 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"y7KAiEOMLv\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"y7KAiEOMLv\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-08T00:00:00Z\",\n                \"end_at\": \"2019-06-08T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 08 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"Kx09iEraLX\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"Kx09iEraLX\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-09T00:00:00Z\",\n                \"end_at\": \"2019-06-09T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 09 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"Q7BaiA1AVb\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"Q7BaiA1AVb\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-10T00:00:00Z\",\n                \"end_at\": \"2019-06-10T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 10 Mo 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"NLwjibKKxD\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"NLwjibKKxD\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-11T00:00:00Z\",\n                \"end_at\": \"2019-06-11T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 11 Tu 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"D744i3N078\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"D744i3N078\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-12T00:00:00Z\",\n                \"end_at\": \"2019-06-12T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 12 We 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"8VvJieDWVv\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"8VvJieDWVv\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-13T00:00:00Z\",\n                \"end_at\": \"2019-06-13T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 13 Th 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DVA6ivYn7X\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DVA6ivYn7X\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-14T00:00:00Z\",\n                \"end_at\": \"2019-06-14T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 14 Fr 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"2VX9iOjl7N\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"2VX9iOjl7N\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-15T00:00:00Z\",\n                \"end_at\": \"2019-06-15T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 15 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"J7d3igMRVB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"J7d3igMRVB\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-16T00:00:00Z\",\n                \"end_at\": \"2019-06-16T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 16 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"jVJvi2nyVR\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"jVJvi2nyVR\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-17T00:00:00Z\",\n                \"end_at\": \"2019-06-17T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 17 Mo 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"G7jaiXOoVg\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"G7jaiXOoVg\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-18T00:00:00Z\",\n                \"end_at\": \"2019-06-18T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 18 Tu 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DLkqijMy7a\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DLkqijMy7a\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-19T00:00:00Z\",\n                \"end_at\": \"2019-06-19T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 19 We 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"d7DzidZMLB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"d7DzidZMLB\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-20T00:00:00Z\",\n                \"end_at\": \"2019-06-20T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 20 Th 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        }\n    ],\n    \"meta\": {\n        \"items\": 20,\n        \"count\": 30,\n        \"page\": 1\n    },\n    \"links\": {\n        \"self\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates?page=1\",\n        \"pagination\": {\n            \"first\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates?page=1\",\n            \"next\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates?page=2\",\n            \"last\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates?page=2\"\n        }\n    }\n}"}],"_postman_id":"86ceec84-65ee-453d-adaf-06db4cb3c222"},{"name":"🚧 Tickets","id":"94932869-43a4-4138-99fc-e9243a8a6c02","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/tickets","description":"<p>Billetterie(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","tickets"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"94932869-43a4-4138-99fc-e9243a8a6c02"},{"name":"🚧 Fees","id":"e83cfba3-361c-424e-95ca-9053d6bc7ebb","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/fees","description":"<p>Prix lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","fees"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"e83cfba3-361c-424e-95ca-9053d6bc7ebb"},{"name":"🚧 Contacts","id":"3b0e58a3-7727-4ae7-8d93-ae95e1f06f12","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/contacts","description":"<p>Information(s) de contact liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","contacts"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"3b0e58a3-7727-4ae7-8d93-ae95e1f06f12"},{"name":"🚧 Socials","id":"bd7d9030-78c2-4d88-8664-169c0fe327b8","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/socials","description":"<p>Information(s) sociale(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","socials"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"bd7d9030-78c2-4d88-8664-169c0fe327b8"},{"name":"🚧 Public","id":"1b3e4cb7-e7d1-4d6f-8151-6f199931ecef","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/public","description":"<p>Public associé à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","public"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"1b3e4cb7-e7d1-4d6f-8151-6f199931ecef"},{"name":"🚧 Accessibility","id":"23ee4288-0c59-47e2-98c9-11cebf1b9d85","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/accessibility","description":"<p>Information(s) d'accessibilité liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","accessibility"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"23ee4288-0c59-47e2-98c9-11cebf1b9d85"},{"name":"🚧 Partners","id":"d2c17391-8977-40b0-9039-3621494ba283","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/partners","description":"<p>Partenaire(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","partners"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"d2c17391-8977-40b0-9039-3621494ba283"},{"name":"🚧 Instances","id":"0d10168b-b9e4-49fb-982f-fff4a2a30065","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/instances","description":"<p>Instance(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","instances"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"0d10168b-b9e4-49fb-982f-fff4a2a30065"},{"name":"🚧 Pages","id":"6993abdc-3aa6-4522-996c-d1c66fcefe42","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/skills","description":"<p>Page(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","skills"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"6993abdc-3aa6-4522-996c-d1c66fcefe42"},{"name":"🚧 Contributors","id":"fd2723a4-6c77-47a1-b98a-3cc8dbc7a944","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/contributors","description":"<p>Contributeur(s) / mainteneur(s) de la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","contributors"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"fd2723a4-6c77-47a1-b98a-3cc8dbc7a944"}],"id":"cefca4a8-e2e5-4f82-9bfd-4981e0153e15","_postman_id":"cefca4a8-e2e5-4f82-9bfd-4981e0153e15","description":""},{"name":"Relations","item":[{"name":"🚧 Relations","id":"2c369c1a-cc95-4c2e-b4a8-bb0ff3cfdce7","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/themes","description":"<p>Ressource(s) associée(s) à ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","themes"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"2c369c1a-cc95-4c2e-b4a8-bb0ff3cfdce7"},{"name":"🚧 Facilities","id":"74ad1685-0563-4c77-aeb0-6370e816d4fa","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/facilities","description":"<p>Équipement(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","facilities"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"74ad1685-0563-4c77-aeb0-6370e816d4fa"},{"name":"🚧 Cities","id":"424f061a-8959-4e4a-af99-daa666852f78","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/cities","description":"<p>Commune(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","cities"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"424f061a-8959-4e4a-af99-daa666852f78"},{"name":"🚧 Departments","id":"6b9241d9-cf97-4477-90b2-8bfaac4d333a","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/departments","description":"<p>Départements(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","departments"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"6b9241d9-cf97-4477-90b2-8bfaac4d333a"},{"name":"🚧 Regions","id":"b6b7d8e1-dbb8-4ce4-8a85-994496290a99","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/regions","description":"<p>Région(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","regions"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"b6b7d8e1-dbb8-4ce4-8a85-994496290a99"},{"name":"🚧 News","id":"e9cc48ae-e5b9-4b3c-8aff-8f01ec070d19","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/news","description":"<p>Actualité(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","news"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"e9cc48ae-e5b9-4b3c-8aff-8f01ec070d19"},{"name":"✅ Events","id":"592ee047-26b8-45f5-a799-5abc19d3f677","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/events","description":"<p>Événement(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","events"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"592ee047-26b8-45f5-a799-5abc19d3f677"},{"name":"🚧 EventGroups","id":"cfa30aa1-35a5-46a1-a422-51eaaafc479e","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/event_groups","description":"<p>Groupe(s) d'événement(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","event_groups"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"cfa30aa1-35a5-46a1-a422-51eaaafc479e"},{"name":"🚧 Projects","id":"1f3baec5-8eec-406c-8b17-299b2217bfc4","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/projects","description":"<p>Projet(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","projects"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"1f3baec5-8eec-406c-8b17-299b2217bfc4"},{"name":"🚧 Performers","id":"345049a3-0d91-4865-a3e6-01274807a98f","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/performers","description":"<p>Artiste(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","performers"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"345049a3-0d91-4865-a3e6-01274807a98f"},{"name":"🚧 Companies","id":"37b8bde9-b495-45c3-b4e2-b00e0dddfb66","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/companies","description":"<p>Entreprise(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","companies"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"37b8bde9-b495-45c3-b4e2-b00e0dddfb66"},{"name":"🚧 NonProfits","id":"b0b3f55f-7c2e-4c79-bf83-5d505bc5eb93","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/non_profits","description":"<p>Associations(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","non_profits"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"b0b3f55f-7c2e-4c79-bf83-5d505bc5eb93"},{"name":"🚧 EtablissementPublics","id":"b8d96e7c-902c-42d4-acc9-73c9ad9ce7fd","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/etablissement_publics","description":"<p>Établissement(s) public(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","etablissement_publics"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"b8d96e7c-902c-42d4-acc9-73c9ad9ce7fd"},{"name":"🚧 Skills","id":"0df792f9-1cd6-4016-84c3-891fcfbc91f2","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/skills","description":"<p>Compétence(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","skills"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"0df792f9-1cd6-4016-84c3-891fcfbc91f2"},{"name":"🚧 Elects","id":"24549ac7-4267-4cd6-8c01-2ba5eb7b7b04","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/elects","description":"<p>Élus(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","elects"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"24549ac7-4267-4cd6-8c01-2ba5eb7b7b04"}],"id":"aa54ca26-a7a4-4d19-b7c5-1d8c48a88ba2","description":"<p>A venir... 🚧</p>\n","event":[{"listen":"prerequest","script":{"id":"487c0f48-a1cd-4aae-af2f-4b62ccf8bb0b","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"4dfafa06-8884-4b36-9c42-31cba1746986","type":"text/javascript","exec":[""]}}],"_postman_id":"aa54ca26-a7a4-4d19-b7c5-1d8c48a88ba2"},{"name":"Médias","item":[{"name":"🚧 Medias","id":"8d57c7f2-1dff-4343-92ae-f9c7d88c30ae","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/medias","description":"<p>Média(s) associé(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","medias"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"8d57c7f2-1dff-4343-92ae-f9c7d88c30ae"},{"name":"✅ Images","id":"74e7f21b-eaea-4f44-97a9-2ee08109260b","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/images","description":"<p>Image(s) associée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","images"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"74e7f21b-eaea-4f44-97a9-2ee08109260b"},{"name":"✅ Documents","id":"8355db7f-2e5f-4bb0-961f-5c3023a4d546","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/documents","description":"<p>Document(s) associé(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","documents"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"8355db7f-2e5f-4bb0-961f-5c3023a4d546"}],"id":"a6ffc941-cac3-42db-b7c6-721d897b82ac","_postman_id":"a6ffc941-cac3-42db-b7c6-721d897b82ac","description":""}],"id":"f37b0566-9c88-4f2a-b719-38f93b591eb2","description":"<p>Les événements</p>\n","event":[{"listen":"prerequest","script":{"id":"768578b7-1e5d-45b7-ab56-2a8b856f2061","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"a419bb76-510b-4b2b-bc5d-608de7e9b0d3","type":"text/javascript","exec":[""]}}],"_postman_id":"f37b0566-9c88-4f2a-b719-38f93b591eb2"},{"name":"🚧 Établissements publics","item":[{"name":"Endpoints principaux","item":[{"name":"✅ Index","id":"4ea08006-cdc4-4d8a-b39e-4225b4ffbf9a","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events","description":"<p>Liste des événements</p>\n","urlObject":{"path":["v2",":instance","events"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"}]}},"response":[{"id":"a4f122b7-8dca-4318-9b6b-e58af4edfd20","name":"✅ Index","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.publidata.io/v2/:instance/events","host":["https://api.publidata.io"],"path":["v2",":instance","events"],"variable":[{"key":"instance","value":"500-ans-renaissances"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Tue, 06 Nov 2018 14:35:32 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"e272b80759b3239cb223ac313ead9d8a\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"ef157796-c377-4ab4-b340-25fe123f51d3"},{"key":"X-Runtime","value":"0.211831"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"J7dASjXPxB\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"J7dASjXPxB\",\n                \"created_at\": \"2018-11-02T13:36:24Z\",\n                \"updated_at\": \"2018-11-06T14:11:43Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {\n                    \"fr\": \"La 28e édition du Festival International des Jardins abordera un thème cher à la Renaissance.\"\n                },\n                \"name\": {\n                    \"fr\": \"Festival International des Jardins de Chaumont-sur-Loire\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"medium-insert-active\\\"><br></p>\"\n                },\n                \"start_at\": \"2019-04-25T10:00:00Z\",\n                \"end_at\": \"2019-11-03T19:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"y7KpS6Dgxv\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"y7KpS6Dgxv\",\n                \"created_at\": \"2018-10-31T11:26:32Z\",\n                \"updated_at\": \"2018-11-06T10:56:29Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {\n                    \"fr\": \"62eme Colloque International d'études humanistes du centre d'études supérieures de la Renaissance\"\n                },\n                \"name\": {\n                    \"fr\": \"Léonard de Vinci création et innovations \"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"is-active\\\">Le 62ème colloque international d’études humanistes du Centre d’études supérieures de la Renaissance de Tours sera consacré à Léonard de Vinci en 2019.&nbsp;</p><p class=\\\"is-active\\\">Cet événement rassemblera les plus grands spécialistes internationaux du sujet et proposera d’aborder toutes les facettes de l’oeuvre de Léonard sous le prisme de l’invention et de l’innovation : mécanique, médecine, architecture, biomimétisme, etc. Une partie de ce colloque se tiendra dans des lieux marqués par la figure de Léonard de Vinci : le Château du Clos Lucé à Amboise et le Château de Chambord.</p>\"\n                },\n                \"start_at\": \"2019-06-01T00:00:00Z\",\n                \"end_at\": \"2019-06-30T00:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"G7j3SNKzxg\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"G7j3SNKzxg\",\n                \"created_at\": \"2018-10-31T09:20:00Z\",\n                \"updated_at\": \"2018-11-06T10:56:29Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {},\n                \"name\": {\n                    \"fr\": \"Les Borgia à Chinon\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"\\\">La Forteresse royale de Chinon, proposera une reconstitution historique de la venue de César Borgia, fils du pape Alexandre VI pour rencontrer le roi de France à Chinon en 1498 . Reconstitution (cortège équestre). Démonstrations de Calcio Storico (sport florentin de la Renaissance, ancêtre du football actuel…). Dégustations de mets et recettes de la Renaissance florentine. Danses et musiques Renaissance.<br></p>\"\n                },\n                \"start_at\": \"2019-07-21T00:00:00Z\",\n                \"end_at\": \"2019-07-21T00:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"jVJbSWMWVR\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"jVJbSWMWVR\",\n                \"created_at\": \"2018-10-31T08:54:32Z\",\n                \"updated_at\": \"2018-11-06T10:56:28Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {},\n                \"name\": {\n                    \"fr\": \"La renaissance en Val de Loire, en France et en Europe - Festival du film français renaissance\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p>Pour la 21ème édition des Rendez- vous de l’Histoire, le Centre d’Études Supérieures de la Renaissance sera fortement impliqué dans une programmation spécifique « La Renaissance en Val de Loire, en France et en Europe ». Dans le cadre du festival du film français « Renaissance », seront projetés des films historiques accompagnés de moments de réflexion (débats, conférences et ateliers) mettant en perspective la création cinématographique au regard de l’histoire de la peinture historiciste.<br></p>\"\n                },\n                \"start_at\": \"2019-10-01T00:00:00Z\",\n                \"end_at\": \"2019-10-31T00:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"J7dASjXwxB\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"J7dASjXwxB\",\n                \"created_at\": \"2018-10-31T08:42:55Z\",\n                \"updated_at\": \"2018-11-06T10:56:28Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {\n                    \"fr\": \"Parcours numérique, sonore et interactif\"\n                },\n                \"name\": {\n                    \"fr\": \"Renaissance comme Rabelais\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<h3>Parcours numérique, sonore et interactif combinant des moyens techniques innovants capables d’allier  géographie littéraire et géographie réelle. Création d’un parcours sonore géolocalisé à partir d’une application mobile entre La Devinière, maison natale de Rabelais, et l’Abbaye de Seuilly.<br></h3>\"\n                },\n                \"start_at\": \"2019-07-01T00:00:00Z\",\n                \"end_at\": \"2019-10-31T00:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"DVAWS3NQxX\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"DVAWS3NQxX\",\n                \"created_at\": \"2018-10-31T08:34:25Z\",\n                \"updated_at\": \"2018-11-06T10:56:28Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {},\n                \"name\": {\n                    \"fr\": \"Spectacle numérique itinérant Renaissance(S)\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p>Ce spectacle numérique invite le public à s’immerger par le biais des dernières technologies dans un environnement visuel et sonore en plusieurs dimensions. Diverses technologies, de réalité augmentée ou de réalité virtuelle peuvent être détournées par le biais d’une immersion sensori-motrice grâce à une ou plusieurs interfaces visuelles. Ce spectacle proposera une narration dans l’esprit humaniste et novateur de la Renaissance.</p><p>Il évoquera les dimensions créatives, anticipatrices, pluridisciplinaires de Léonard de Vinci, les acteurs, oeuvres, sites patrimoniaux et culturels majeurs du territoire à la Renaissance, le Centre-Val de Loire aujourd’hui et sa projection dans le futur.</p>\"\n                },\n                \"start_at\": \"2019-08-15T19:00:00Z\",\n                \"end_at\": \"2019-09-15T23:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"8VvZS1y0Vv\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"8VvZS1y0Vv\",\n                \"created_at\": \"2018-10-31T08:29:42Z\",\n                \"updated_at\": \"2018-11-06T10:56:28Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {},\n                \"name\": {\n                    \"fr\": \"Magnificences à la cour de France\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"is-active\\\">Ce spectacle de l’ensemble Doulce Mémoire, recrée l’univers d’une fête à la cour de François I<sup>er</sup>, autour de 1515, celles qui virent l’arrivée en France de Léonard de Vinci à l’invitation du roi français. Peintre, inventeur de génie, Léonard était aussi organisateur de fêtes fameuses, dont l’inventivité et la puissance créatrice étaient appréciées les puissants.<br></p>\"\n                },\n                \"start_at\": \"2019-07-23T19:00:00Z\",\n                \"end_at\": \"2019-07-23T23:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"NLwlSvmaVD\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"NLwlSvmaVD\",\n                \"created_at\": \"2018-10-30T16:51:07Z\",\n                \"updated_at\": \"2018-11-06T10:56:27Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {\n                    \"fr\": \"Exposition regroupant des artistes contemporains influencés par Léonard de Vinci et la Renaissance.\"\n                },\n                \"name\": {\n                    \"fr\": \"Hommage contemporain à la Renaissance\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"is-active\\\">Exposition d’artistes contemporains ayant été influencés par Léonard de Vinci et la Renaissance, sur l’exemple de Fabien Merelle, établi à Tours et travaillant sur la scène internationale.&nbsp;</p><p class=\\\"is-active\\\">L’exposition « Hommage à Léonard » transpose dans l’art contemporain l’héritage du maître du Cinquecento mort en Val de Loire il y a 500 ans. Vaste cabinet de curiosités, l’exposition présentée dans les salles historiques du château fait écho au système de pensée&nbsp;<span style=\\\"font-size: 1em; font-family: ProximaNova, Helvetica, Arial, &quot;Sans Serif&quot;;\\\">du Maitre, génie polyvalent où la réalisation ne constitue pas la fin mais le moyen de la réflexion. Conçue comme une sorte de « mise en curiosité » envers les différents apports de Léonard, homme d’esprit universel à l’histoire des arts en Europe, interprétés ou prolongés par différents artistes de notre temps travaillant sur la scène internationale ; l’exposition montre aussi que les échanges entre Italie et France vers 1500, l’italianisme dans les&nbsp;</span><span style=\\\"font-size: 1em; font-family: ProximaNova, Helvetica, Arial, &quot;Sans Serif&quot;;\\\">arts amorcé sous Charles VIII et Louis XII se perpétuent de nos jours, avec les travaux des artistes florentines Antonella Bussanich, Alessandra Capodacqua et Alessandra Ragionier. Comme dans les chapitres d’un livre, chaque salle illustre l’un des thèmes étudiés par Léonard. L’autoportrait / Le portrait / La peinture d’histoire /&nbsp;</span><span style=\\\"font-size: 1em; font-family: ProximaNova, Helvetica, Arial, &quot;Sans Serif&quot;;\\\">Le Paysage / Le codex / La nature morte / Le Portrait féminin / Le Drapé.</span></p>\"\n                },\n                \"start_at\": \"2019-04-01T10:00:00Z\",\n                \"end_at\": \"2019-11-30T18:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"8VOeS416xY\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"8VOeS416xY\",\n                \"created_at\": \"2018-10-29T16:47:42Z\",\n                \"updated_at\": \"2018-11-06T10:56:30Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {\n                    \"fr\": \"Dans le cadre de l'anniversaire des 500ans de la Renaissance, l'artiste Ravo revisite l'oeuvre de François-Guillaume Ménageot \\\"La mort de Léonard de Vinci\\\"\"\n                },\n                \"name\": {\n                    \"fr\": \"Ravo Mattoni invité du Château Royal d' Amboise\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"\\\">Andrea Mattoni alias <b>RAVO</b>, artiste-graffeur italien de son état, a débuté en 2016 un ambitieux projet visant à reproduire, in situ et en très grand format, des chefs-d’œuvre de la peinture classique signés du Caravage, de Delacroix, de Delatour… Profondeur des couleurs, puissance des lignes et de l’échelle, l’hommage de RAVO aux grands maîtres est d’une modernité réjouissante… Le résultat est bluffant.</p><p class=\\\"\\\">De manière à prolonger l’exposition « La Mort de Léonard de Vinci : la construction d’un mythe » préparée avec la BNF, le château royal d’Amboise a demandé à RAVO de réaliser 5 toiles de grandes dimensions (4.5m X 3m). Celles-ci prendront pour sujet des détails du monumental tableau de François-Guillaume Ménageot « La Mort de Léonard de Vinci », et trouveront place sur les murs de la tour cavalière des Minimes, du 2 mai au 2 septembre 2019. Pour honorer cette commande, l’artiste sera en résidence au château royal d’Amboise durant une dizaine de jours, en avril 2019. Il réalisera ses peintures en public.</p><p class=\\\"\\\">Cette exposition est organisée avec le concours de l’association des Ateliers de l’Etoile.</p><p class=\\\"\\\"><span style=\\\"font-size: 1em; font-family: ProximaNova, Helvetica, Arial, &quot;Sans Serif&quot;;\\\"><b>\\\"Exposition « La Mort de Léonard de Vinci : la construction d’un mythe » - Partenariat BNF (Bibliothèque Nationale de France)</b></span><br></p><p class=\\\"\\\">Tous les jours, du 2 mai au 2 septembre 2019.</p><p class=\\\"\\\">La grande exposition intitulée « La Mort de Léonard de Vinci : la construction d’un mythe », articulée autour du monumental tableau (280 cm X 357 cm) de François-Guillaume Ménageot La mort de Léonard de Vinci, et d’une collection de gravures issues des collections nationales, nous éclairera sur la manière dont les contours de l’amitié entre le roi François Ier et Léonard ont été progressivement réécrits par l’Histoire, et assimilés par elle jusqu’à la construction d’un mythe mis au service de l’image de la monarchie française au XVIII<sup>ème</sup> siècle.</p><p>Au cœur de la riche programmation des célébrations du 5ème centenaire, cette exposition majeure viendra aussi rappeler à un public venu des quatre coins du monde la place éternelle qu’occupe Léonard de Vinci en Val de Loire, et à Amboise en particulier où il repose pour l’éternité dans la quiétude de la chapelle du château.\\\"</p>\"\n                },\n                \"start_at\": \"2019-05-02T09:00:00Z\",\n                \"end_at\": \"2019-09-02T18:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"items\": 9,\n        \"count\": 9,\n        \"page\": 1\n    },\n    \"links\": {\n        \"self\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events?page=1\",\n        \"pagination\": {\n            \"first\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events?page=1\",\n            \"last\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events?page=1\"\n        }\n    }\n}"}],"_postman_id":"4ea08006-cdc4-4d8a-b39e-4225b4ffbf9a"},{"name":"✅ Show","id":"0f8e0a94-0e01-4354-8c36-a6b512d213c1","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/{{instance_id}}/events/:id","description":"<p>Détail d'un événement</p>\n","urlObject":{"path":["v2","{{instance_id}}","events",":id"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[{"id":"e3cb3036-25fb-44fc-959b-02f734412f46","name":"✅ Show","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.publidata.io/v2/{{instance_id}}/events/:id","host":["https://api.publidata.io"],"path":["v2","{{instance_id}}","events",":id"],"variable":[{"key":"id","value":"y7KpS6Dgxv"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Tue, 06 Nov 2018 14:50:05 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"811c246d37cc926cc75bf582cd364fb3\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"d619c237-6f78-4100-9d77-b11aa3b6dc53"},{"key":"X-Runtime","value":"0.051868"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"y7KpS6Dgxv\",\n        \"type\": \"event\",\n        \"attributes\": {\n            \"id\": \"y7KpS6Dgxv\",\n            \"created_at\": \"2018-10-31T11:26:32Z\",\n            \"updated_at\": \"2018-11-06T10:56:29Z\",\n            \"cancelled\": false,\n            \"cancellation_reason\": null,\n            \"free_admission\": null,\n            \"free_admission_condition\": null,\n            \"punchline\": {\n                \"fr\": \"62eme Colloque International d'études humanistes du centre d'études supérieures de la Renaissance\"\n            },\n            \"name\": {\n                \"fr\": \"Léonard de Vinci création et innovations \"\n            },\n            \"blurb\": {\n                \"fr\": \"<p class=\\\"is-active\\\">Le 62ème colloque international d’études humanistes du Centre d’études supérieures de la Renaissance de Tours sera consacré à Léonard de Vinci en 2019.&nbsp;</p><p class=\\\"is-active\\\">Cet événement rassemblera les plus grands spécialistes internationaux du sujet et proposera d’aborder toutes les facettes de l’oeuvre de Léonard sous le prisme de l’invention et de l’innovation : mécanique, médecine, architecture, biomimétisme, etc. Une partie de ce colloque se tiendra dans des lieux marqués par la figure de Léonard de Vinci : le Château du Clos Lucé à Amboise et le Château de Chambord.</p>\"\n            },\n            \"start_at\": \"2019-06-01T00:00:00Z\",\n            \"end_at\": \"2019-06-30T00:00:00Z\"\n        },\n        \"relationships\": {},\n        \"links\": {\n            \"self\": {\n                \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv\"\n            },\n            \"relations\": {\n                \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/cities\",\n                \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/companies\",\n                \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/departments\",\n                \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/elects\",\n                \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/etablissement_publics\",\n                \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/event_groups\",\n                \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/events\",\n                \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/facilities\",\n                \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/news\",\n                \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/non_profits\",\n                \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/performers\",\n                \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/projects\",\n                \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/regions\",\n                \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/skills\"\n            },\n            \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/images\",\n            \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/documents\",\n            \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates\",\n            \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/type\",\n            \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/types\"\n        },\n        \"meta\": {\n            \"licenses\": [\n                {\n                    \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                    \"SPDX\": \"ODbL-1.0\",\n                    \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                    \"targets\": [\n                        \"cancelled\",\n                        \"cancellation_reason\",\n                        \"free_admission\",\n                        \"free_admission_condition\",\n                        \"punchline\",\n                        \"name\",\n                        \"blurb\",\n                        \"start_at\",\n                        \"end_at\"\n                    ]\n                }\n            ],\n            \"instances\": {\n                \"500-ans-renaissances\": [\n                    \"fr\"\n                ]\n            }\n        }\n    }\n}"}],"_postman_id":"0f8e0a94-0e01-4354-8c36-a6b512d213c1"},{"name":"✅ Show with included resources","id":"c2a4067a-dcb3-4f0e-b9b1-1482720646eb","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id?include=dates,types","description":"<p>Avec le paramètre <code>include</code> vous avez la possibilité d'insérer dans la vue principale des ressources liées, vous évitant des requêtes supplémentaires.</p>\n","urlObject":{"path":["v2",":instance","events",":id"],"host":["https://api.publidata.io"],"query":[{"description":{"content":"<p>Liste des ressources à insérer</p>\n","type":"text/plain"},"key":"include","value":"dates,types"}],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[{"id":"c1e7be66-4723-49b3-92df-d3e2cefd27f3","name":"✅ Show with included resources","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.publidata.io/v2/:instance/events/:id?include=dates,types","host":["https://api.publidata.io"],"path":["v2",":instance","events",":id"],"query":[{"key":"include","value":"dates,types","description":"Liste des ressources à insérer"}],"variable":[{"key":"instance","value":"500-ans-renaissances"},{"key":"id","value":"y7KpS6Dgxv"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Tue, 06 Nov 2018 14:54:52 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"2c566edafdfca2fe7ed4fc7f8ef3e15b\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"b8d67f08-016a-4d6c-b10e-7d6467c5bcdf"},{"key":"X-Runtime","value":"0.483946"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"y7KpS6Dgxv\",\n        \"type\": \"event\",\n        \"attributes\": {\n            \"id\": \"y7KpS6Dgxv\",\n            \"created_at\": \"2018-10-31T11:26:32Z\",\n            \"updated_at\": \"2018-11-06T10:56:29Z\",\n            \"cancelled\": false,\n            \"cancellation_reason\": null,\n            \"free_admission\": null,\n            \"free_admission_condition\": null,\n            \"punchline\": {\n                \"fr\": \"62eme Colloque International d'études humanistes du centre d'études supérieures de la Renaissance\"\n            },\n            \"name\": {\n                \"fr\": \"Léonard de Vinci création et innovations \"\n            },\n            \"blurb\": {\n                \"fr\": \"<p class=\\\"is-active\\\">Le 62ème colloque international d’études humanistes du Centre d’études supérieures de la Renaissance de Tours sera consacré à Léonard de Vinci en 2019.&nbsp;</p><p class=\\\"is-active\\\">Cet événement rassemblera les plus grands spécialistes internationaux du sujet et proposera d’aborder toutes les facettes de l’oeuvre de Léonard sous le prisme de l’invention et de l’innovation : mécanique, médecine, architecture, biomimétisme, etc. Une partie de ce colloque se tiendra dans des lieux marqués par la figure de Léonard de Vinci : le Château du Clos Lucé à Amboise et le Château de Chambord.</p>\"\n            },\n            \"start_at\": \"2019-06-01T00:00:00Z\",\n            \"end_at\": \"2019-06-30T00:00:00Z\"\n        },\n        \"relationships\": {\n            \"types\": {\n                \"data\": []\n            },\n            \"dates\": {\n                \"data\": [\n                    {\n                        \"id\": \"axGeikm1VN\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"8VZZiNZ8Vd\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"eVgRimO4Lo\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"E79OiqZQLM\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"YVYgiW4lxD\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"87oei8vYLQ\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"gLb4iOga7J\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"o7EMiQDr75\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"B72ZiYOv7O\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"y7KAiEO4Lv\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"d7DzidZMLB\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"DLkqijMy7a\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"G7jaiXOoVg\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"jVJvi2nyVR\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"J7d3igMRVB\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"2VX9iOjl7N\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"DVA6ivYn7X\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"8VvJieDWVv\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"D744i3N078\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"NLwjibKKxD\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"Q7BaiA1AVb\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"Kx09iEraLX\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"y7KAiEOMLv\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"d7DzidZmLB\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"DLkqijM67a\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"G7jaiXOAVg\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"jVJvi2nXVR\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"J7d3igMbVB\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"2VX9iOjd7N\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"DVA6ivYR7X\",\n                        \"type\": \"date\"\n                    }\n                ]\n            }\n        },\n        \"links\": {\n            \"self\": {\n                \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv\"\n            },\n            \"relations\": {\n                \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/cities\",\n                \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/companies\",\n                \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/departments\",\n                \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/elects\",\n                \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/etablissement_publics\",\n                \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/event_groups\",\n                \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/events\",\n                \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/facilities\",\n                \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/news\",\n                \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/non_profits\",\n                \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/performers\",\n                \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/projects\",\n                \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/regions\",\n                \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/skills\"\n            },\n            \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/images\",\n            \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/documents\",\n            \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates\",\n            \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/type\",\n            \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/types\"\n        },\n        \"meta\": {\n            \"included\": [\n                \"dates\",\n                \"types\"\n            ],\n            \"licenses\": [\n                {\n                    \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                    \"SPDX\": \"ODbL-1.0\",\n                    \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                    \"targets\": [\n                        \"cancelled\",\n                        \"cancellation_reason\",\n                        \"free_admission\",\n                        \"free_admission_condition\",\n                        \"punchline\",\n                        \"name\",\n                        \"blurb\",\n                        \"start_at\",\n                        \"end_at\"\n                    ]\n                }\n            ],\n            \"instances\": {\n                \"500-ans-renaissances\": [\n                    \"fr\"\n                ]\n            }\n        }\n    },\n    \"included\": [\n        {\n            \"id\": \"axGeikm1VN\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"axGeikm1VN\",\n                \"created_at\": \"2018-10-31T11:33:15Z\",\n                \"updated_at\": \"2018-10-31T11:33:15Z\",\n                \"start_at\": \"2019-06-30T00:00:00Z\",\n                \"end_at\": \"2019-06-30T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 30 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"8VZZiNZ8Vd\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"8VZZiNZ8Vd\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-29T00:00:00Z\",\n                \"end_at\": \"2019-06-29T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 29 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"eVgRimO4Lo\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"eVgRimO4Lo\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-28T00:00:00Z\",\n                \"end_at\": \"2019-06-28T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 28 Fr 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"E79OiqZQLM\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"E79OiqZQLM\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-27T00:00:00Z\",\n                \"end_at\": \"2019-06-27T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 27 Th 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"YVYgiW4lxD\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"YVYgiW4lxD\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-26T00:00:00Z\",\n                \"end_at\": \"2019-06-26T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 26 We 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"87oei8vYLQ\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"87oei8vYLQ\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-25T00:00:00Z\",\n                \"end_at\": \"2019-06-25T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 25 Tu 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"gLb4iOga7J\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"gLb4iOga7J\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-24T00:00:00Z\",\n                \"end_at\": \"2019-06-24T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 24 Mo 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"o7EMiQDr75\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"o7EMiQDr75\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-23T00:00:00Z\",\n                \"end_at\": \"2019-06-23T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 23 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"B72ZiYOv7O\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"B72ZiYOv7O\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-22T00:00:00Z\",\n                \"end_at\": \"2019-06-22T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 22 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"y7KAiEO4Lv\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"y7KAiEO4Lv\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-21T00:00:00Z\",\n                \"end_at\": \"2019-06-21T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 21 Fr 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"d7DzidZMLB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"d7DzidZMLB\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-20T00:00:00Z\",\n                \"end_at\": \"2019-06-20T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 20 Th 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DLkqijMy7a\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DLkqijMy7a\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-19T00:00:00Z\",\n                \"end_at\": \"2019-06-19T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 19 We 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"G7jaiXOoVg\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"G7jaiXOoVg\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-18T00:00:00Z\",\n                \"end_at\": \"2019-06-18T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 18 Tu 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"jVJvi2nyVR\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"jVJvi2nyVR\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-17T00:00:00Z\",\n                \"end_at\": \"2019-06-17T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 17 Mo 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"J7d3igMRVB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"J7d3igMRVB\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-16T00:00:00Z\",\n                \"end_at\": \"2019-06-16T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 16 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"2VX9iOjl7N\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"2VX9iOjl7N\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-15T00:00:00Z\",\n                \"end_at\": \"2019-06-15T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 15 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DVA6ivYn7X\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DVA6ivYn7X\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-14T00:00:00Z\",\n                \"end_at\": \"2019-06-14T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 14 Fr 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"8VvJieDWVv\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"8VvJieDWVv\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-13T00:00:00Z\",\n                \"end_at\": \"2019-06-13T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 13 Th 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"D744i3N078\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"D744i3N078\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-12T00:00:00Z\",\n                \"end_at\": \"2019-06-12T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 12 We 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"NLwjibKKxD\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"NLwjibKKxD\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-11T00:00:00Z\",\n                \"end_at\": \"2019-06-11T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 11 Tu 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"Q7BaiA1AVb\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"Q7BaiA1AVb\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-10T00:00:00Z\",\n                \"end_at\": \"2019-06-10T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 10 Mo 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"Kx09iEraLX\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"Kx09iEraLX\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-09T00:00:00Z\",\n                \"end_at\": \"2019-06-09T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 09 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"y7KAiEOMLv\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"y7KAiEOMLv\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-08T00:00:00Z\",\n                \"end_at\": \"2019-06-08T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 08 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"d7DzidZmLB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"d7DzidZmLB\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-07T00:00:00Z\",\n                \"end_at\": \"2019-06-07T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 07 Fr 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DLkqijM67a\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DLkqijM67a\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-06T00:00:00Z\",\n                \"end_at\": \"2019-06-06T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 06 Th 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"G7jaiXOAVg\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"G7jaiXOAVg\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-05T00:00:00Z\",\n                \"end_at\": \"2019-06-05T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 05 We 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"jVJvi2nXVR\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"jVJvi2nXVR\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-04T00:00:00Z\",\n                \"end_at\": \"2019-06-04T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 04 Tu 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"J7d3igMbVB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"J7d3igMbVB\",\n                \"created_at\": \"2018-10-31T11:33:11Z\",\n                \"updated_at\": \"2018-10-31T11:33:11Z\",\n                \"start_at\": \"2019-06-03T00:00:00Z\",\n                \"end_at\": \"2019-06-03T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 03 Mo 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"2VX9iOjd7N\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"2VX9iOjd7N\",\n                \"created_at\": \"2018-10-31T11:33:11Z\",\n                \"updated_at\": \"2018-10-31T11:33:11Z\",\n                \"start_at\": \"2019-06-02T00:00:00Z\",\n                \"end_at\": \"2019-06-02T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 02 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DVA6ivYR7X\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DVA6ivYR7X\",\n                \"created_at\": \"2018-10-31T11:33:11Z\",\n                \"updated_at\": \"2018-10-31T11:33:11Z\",\n                \"start_at\": \"2019-06-01T00:00:00Z\",\n                \"end_at\": \"2019-06-01T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 01 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"wo7NbcKj7n\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"wo7NbcKj7n\",\n                \"created_at\": \"2018-10-23T01:23:57Z\",\n                \"updated_at\": \"2018-10-23T01:24:19Z\",\n                \"name\": {\n                    \"fr\": \"Rassemblement\"\n                }\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": \"https://publidata-staging.herokuapp.com/api/v2/event_types/wo7NbcKj7n\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"Wn7lQcrKxm\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"Wn7lQcrKxm\",\n                \"created_at\": \"2018-10-23T01:23:57Z\",\n                \"updated_at\": \"2018-10-23T01:24:19Z\",\n                \"name\": {\n                    \"fr\": \"Colloque\"\n                }\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": \"https://publidata-staging.herokuapp.com/api/v2/event_types/Wn7lQcrKxm\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        }\n    ]\n}"}],"_postman_id":"c2a4067a-dcb3-4f0e-b9b1-1482720646eb"},{"name":"🚧 Show translated","id":"76d8d77b-be32-4279-932c-d6a2b067d7ef","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id?lang=en","description":"<p>Le paramètre <code>lang</code> vous permet de récupérer les contenus éditoriaux d'une ressource dans une langue donnée.</p>\n","urlObject":{"path":["v2",":instance","events",":id"],"host":["https://api.publidata.io"],"query":[{"description":{"content":"<p>Langue désirée</p>\n","type":"text/plain"},"key":"lang","value":"en"}],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"76d8d77b-be32-4279-932c-d6a2b067d7ef"},{"name":"🚧 Search","id":"53ae05e6-e9f4-46a9-a17b-bd795280d915","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.publidata.io/v2/:instance/events/?q=Sénart&size=10&page=1&marker=false&instances[]=2&types[]=Event&performers[]=Nakht&facilities[]=8&events[]=1&event_groups[]=1&news[]=1&projects[]=1&cities[]=7&etablissement_publics[]=1&departments[]=1&regions[]=1&skills[]=1&elects[]=1&bbox[]&event_types[]=Oeuvre d'art&event_styles[]=Gymnastique&date[start]=1526054400&date[end]=1526083199&price[min]=10&price[max]=50&free_admission=true&accessibilities[]=has_deaf_accessibility","description":"<p>Recherche d'événements : 🚧 à venir... </p>\n","urlObject":{"path":["v2",":instance","events",""],"host":["https://api.publidata.io"],"query":[{"description":{"content":"<p>Filtre textuel</p>\n","type":"text/plain"},"key":"q","value":"Sénart"},{"description":{"content":"<p>Nombre de résultats retournés (defaut: 10)</p>\n","type":"text/plain"},"key":"size","value":"10"},{"description":{"content":"<p>Pagination (defaut: 1)</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>Filtre booléen pour ne retourner que les locations (default: false)</p>\n","type":"text/plain"},"key":"marker","value":"false"},{"description":{"content":"<p>Filtre par instance (array d'id)</p>\n","type":"text/plain"},"key":"instances[]","value":"2"},{"description":{"content":"<p>Filtre par type de ressource (array de type parmi la liste suivante : News Event Facility Project City Epci Department Region EventGroup Skill Elect Performer Company NonProfit EtablissementPublic)</p>\n","type":"text/plain"},"key":"types[]","value":"Event"},{"description":{"content":"<p>Filtre par artiste lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"performers[]","value":"Nakht"},{"description":{"content":"<p>Filtre par équipement lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"facilities[]","value":"8"},{"description":{"content":"<p>Filtre par événement lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"events[]","value":"1"},{"description":{"content":"<p>Filtre par groupe d'événements lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"event_groups[]","value":"1"},{"description":{"content":"<p>Filtre par actualité liée (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"news[]","value":"1"},{"description":{"content":"<p>Filtre par projet lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"projects[]","value":"1"},{"description":{"content":"<p>Filtre par ville et location liées (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"cities[]","value":"7"},{"description":{"content":"<p>Filtre par établissement public lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"etablissement_publics[]","value":"1"},{"description":{"content":"<p>Filtre par departement lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"departments[]","value":"1"},{"description":{"content":"<p>Filtre par region liée (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"regions[]","value":"1"},{"description":{"content":"<p>Filtre par compétence liée (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"skills[]","value":"1"},{"description":{"content":"<p>Filtre par élu lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"elects[]","value":"1"},{"description":{"content":"<p>Filtre géographique (array de latitudes, longitudes dans l'ordre suivant minX, minY, maxX, maxY)</p>\n","type":"text/plain"},"key":"bbox[]","value":null},{"description":{"content":"<p>Filtre par type d'événement (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"event_types[]","value":"Oeuvre d'art"},{"description":{"content":"<p>Filtre par style d'événement (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"event_styles[]","value":"Gymnastique"},{"description":{"content":"<p>Filtre par date/heure de début (timestamp en seconde)</p>\n","type":"text/plain"},"key":"date[start]","value":"1526054400"},{"description":{"content":"<p>Filtre par date/heure de fin (timestamp en seconde)</p>\n","type":"text/plain"},"key":"date[end]","value":"1526083199"},{"description":{"content":"<p>Filtre de prix minimum</p>\n","type":"text/plain"},"key":"price[min]","value":"10"},{"description":{"content":"<p>Filtre de prix maximum</p>\n","type":"text/plain"},"key":"price[max]","value":"50"},{"description":{"content":"<p>Filtre de gratuité (boolean)</p>\n","type":"text/plain"},"key":"free_admission","value":"true"},{"description":{"content":"<p>Filtre d'accessibilité (array de string)</p>\n","type":"text/plain"},"key":"accessibilities[]","value":"has_deaf_accessibility"}],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"}]}},"response":[{"id":"d7de2129-6807-48e5-bb33-c30a9d35a866","name":"Search events","originalRequest":{"method":"GET","header":[],"url":{"raw":"www.publidata.io/api/v1/events?q=&options[geo][top_left][lat]=49.05965195372349&options[geo][top_left][lon]=2.1371613664061897&options[geo][bottom_right][lat]=48.21570798955211&options[geo][bottom_right][lon]=2.7688752335936897&options[city]=Combs-la-Ville&options[paging][from]=0&options[event_types][]=Concert&options[dates][start_date]=1521812100000&options[dates][end_date]=1522499700000&options[instances][]=2","host":["www","publidata","io"],"path":["api","v1","events"],"query":[{"key":"q","value":"","description":"Recherche (full-text)"},{"key":"options[geo][top_left][lat]","value":"49.05965195372349","description":"Latitude coin supérieur gauche geo-box (lat)"},{"key":"options[geo][top_left][lon]","value":"2.1371613664061897","description":"Longitude coin supérieur gauche geo-box (lon)"},{"key":"options[geo][bottom_right][lat]","value":"48.21570798955211","description":"Latitude coin inférieur droit geo-box (lat)"},{"key":"options[geo][bottom_right][lon]","value":"2.7688752335936897","description":"Longitude coin inférieur droit geo-box (lon)"},{"key":"options[city]","value":"Combs-la-Ville","description":"Ville (full-text ou code postal)"},{"key":"options[paging][from]","value":"0","description":"Début de la pagination (integer)"},{"key":"options[event_types][]","value":"Concert","description":"Types d'événement (array de string)"},{"key":"options[dates][start_date]","value":"1521812100000","description":"Date de début (format timestamp unix 1508267068688)"},{"key":"options[dates][end_date]","value":"1522499700000","description":"Date de fin (format timestamp unix 1539803068688)"},{"key":"options[instances][]","value":"2"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"took\": 11,\n    \"timed_out\": false,\n    \"_shards\": {\n        \"total\": 1,\n        \"successful\": 1,\n        \"failed\": 0\n    },\n    \"hits\": {\n        \"total\": 2,\n        \"max_score\": 0.9812665,\n        \"hits\": [\n            {\n                \"_index\": \"events\",\n                \"_type\": \"event\",\n                \"_id\": \"3241\",\n                \"_score\": 0.9812665,\n                \"_source\": {\n                    \"id\": 3241,\n                    \"name\": \"Concert des orchestres\",\n                    \"slug\": \"concert-des-orchestres\",\n                    \"status\": \"published\",\n                    \"free_admission\": true,\n                    \"start_date\": \"2018-03-23T00:00:00.000+01:00\",\n                    \"end_date\": \"2018-03-23T00:00:00.000+01:00\",\n                    \"punchline\": \"Le vendredi 23 mars 2018 à 20h au Théâtre de la Coupole, les musiciens du Conservatoire Maurice Ohana de Combs-la-ville vous attendent pour leur rendez-vous annuel...\",\n                    \"blurb\": \"Cette soirée donne la possibilité à plusieurs formations orchestrales du conservatoire Maurice Ohana de se produire sur scène. \\r\\n\\r\\nProgramme musical éclectique et varié, ce concert  permet de vivre la musique ensemble et de la partager sans modération avec le public.\",\n                    \"linked_objects\": [\n                        {\n                            \"id\": 180,\n                            \"type\": \"Facility\",\n                            \"name\": \"La Coupole\"\n                        },\n                        {\n                            \"id\": 12,\n                            \"type\": \"City\",\n                            \"name\": \"Combs-la-Ville\"\n                        }\n                    ],\n                    \"cover_picture\": {\n                        \"id\": 22632,\n                        \"name\": \"image de couverture de Concert des orchestres\",\n                        \"alt\": \"image de couverture de Concert des orchestres\",\n                        \"description\": \"image de couverture de Concert des orchestres\",\n                        \"slug\": null,\n                        \"image_urls_as_json\": {\n                            \"image_original_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/632/original/open-uri20171002-4-1etqlbo?1506962457\",\n                            \"image_small_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/632/image_small/open-uri20171002-4-1etqlbo?1506962457\",\n                            \"image_medium_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/632/image_medium/open-uri20171002-4-1etqlbo?1506962457\",\n                            \"image_large_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/632/image_large/open-uri20171002-4-1etqlbo?1506962457\"\n                        }\n                    },\n                    \"instances\": [\n                        {\n                            \"id\": 2,\n                            \"slug\": \"portail-sortir-gps\"\n                        }\n                    ],\n                    \"event_type\": {\n                        \"id\": 13,\n                        \"name\": \"Concert\"\n                    },\n                    \"event_styles\": [\n                        {\n                            \"id\": 82,\n                            \"name\": \"World Music\"\n                        }\n                    ],\n                    \"event_dates\": [\n                        {\n                            \"id\": 37799,\n                            \"start_hour\": \"2000-01-01T20:00:00.000Z\",\n                            \"end_hour\": \"2000-01-01T22:00:00.000Z\",\n                            \"date\": \"2018-03-23T00:00:00.000+01:00\",\n                            \"sold_out\": false,\n                            \"start_date\": \"2018-03-23T20:00:00.000+00:00\",\n                            \"end_date\": \"2018-03-23T22:00:00.000+00:00\"\n                        }\n                    ],\n                    \"facilities\": [\n                        {\n                            \"id\": 180,\n                            \"name\": \"La Coupole\",\n                            \"slug\": \"la-coupole\",\n                            \"address\": \"Rue Jean François Millet, 77380 Combs-la-Ville, France\",\n                            \"location\": {\n                                \"lat\": 48.659695,\n                                \"lon\": 2.5662415\n                            }\n                        }\n                    ],\n                    \"locations\": [],\n                    \"fees\": [],\n                    \"tags\": [],\n                    \"pages\": [\n                        {\n                            \"id\": 7659,\n                            \"instance\": {\n                                \"id\": 2,\n                                \"slug\": \"portail-sortir-gps\"\n                            }\n                        }\n                    ]\n                }\n            },\n            {\n                \"_index\": \"events\",\n                \"_type\": \"event\",\n                \"_id\": \"3983\",\n                \"_score\": 0.9794048,\n                \"_source\": {\n                    \"id\": 3983,\n                    \"name\": \"Après-midi musicale: Claude Debussy\",\n                    \"slug\": \"apres-midi-musicale-claude-debussy\",\n                    \"status\": \"published\",\n                    \"free_admission\": true,\n                    \"start_date\": \"2018-03-24T00:00:00.000+01:00\",\n                    \"end_date\": \"2018-03-24T00:00:00.000+01:00\",\n                    \"punchline\": \"A l'occasion du centenaire de la mort de Claude Debussy, la media-ludothèque et le conservatoire Maurice Ohana vous invitent à une après-midi musical, le samedi 24 mars à partir de 15h30.\",\n                    \"blurb\": \"Claude Debussy (1862-1918) était un compositeur français. Pour célébrer son centenaire, nous vous invitons à un après-midi musical. Au programme, une conférence par Bruno Giner sur le compositeur à 15h30. \\r\\nPuis, à 18h, les élèves du conservatoire interpréteront une sélection d’œuvres de Claude Debussy.\",\n                    \"linked_objects\": [\n                        {\n                            \"id\": 42,\n                            \"type\": \"Facility\",\n                            \"name\": \"Médiathèque de Combs-la-Ville\"\n                        },\n                        {\n                            \"id\": 12,\n                            \"type\": \"City\",\n                            \"name\": \"Combs-la-Ville\"\n                        }\n                    ],\n                    \"cover_picture\": {\n                        \"id\": 24665,\n                        \"name\": \"image de couverture de Après-midi musicale: Claude Debussy\",\n                        \"alt\": \"image de couverture de Après-midi musicale: Claude Debussy\",\n                        \"description\": \"image de couverture de Après-midi musicale: Claude Debussy\",\n                        \"slug\": null,\n                        \"image_urls_as_json\": {\n                            \"image_original_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/665/original/Photo_23a_Claude_Debussy.jpg?1516441408\",\n                            \"image_small_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/665/image_small/Photo_23a_Claude_Debussy.jpg?1516441408\",\n                            \"image_medium_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/665/image_medium/Photo_23a_Claude_Debussy.jpg?1516441408\",\n                            \"image_large_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/665/image_large/Photo_23a_Claude_Debussy.jpg?1516441408\"\n                        }\n                    },\n                    \"instances\": [\n                        {\n                            \"id\": 2,\n                            \"slug\": \"portail-sortir-gps\"\n                        }\n                    ],\n                    \"event_type\": {\n                        \"id\": 13,\n                        \"name\": \"Concert\"\n                    },\n                    \"event_styles\": [\n                        {\n                            \"id\": 111,\n                            \"name\": \"Musique Classique\"\n                        }\n                    ],\n                    \"event_dates\": [\n                        {\n                            \"id\": 41100,\n                            \"start_hour\": \"2000-01-01T15:30:00.000Z\",\n                            \"end_hour\": \"2000-01-01T19:30:00.000Z\",\n                            \"date\": \"2018-03-24T00:00:00.000+01:00\",\n                            \"sold_out\": false,\n                            \"start_date\": \"2018-03-24T15:30:00.000+00:00\",\n                            \"end_date\": \"2018-03-24T19:30:00.000+00:00\"\n                        }\n                    ],\n                    \"facilities\": [\n                        {\n                            \"id\": 42,\n                            \"name\": \"Médiathèque de Combs-la-Ville\",\n                            \"slug\": \"mediatheque-de-combs-la-ville\",\n                            \"address\": \"Rue Jean François Millet, 77380 Combs-la-Ville, France\",\n                            \"location\": {\n                                \"lat\": 48.659695,\n                                \"lon\": 2.5662415\n                            }\n                        }\n                    ],\n                    \"locations\": [],\n                    \"fees\": [],\n                    \"accessibility\": {\n                        \"id\": 1766,\n                        \"deaf_lsf\": false,\n                        \"deaf_vision_based\": false,\n                        \"deaf_subtitle\": false,\n                        \"deaf_hearing_loop\": false,\n                        \"blind_audio_description\": false,\n                        \"blind_darkness_based\": false,\n                        \"blind_text_based\": false,\n                        \"blind_braille\": false,\n                        \"blind_large_print\": false,\n                        \"motor_disabled_access\": true,\n                        \"has_accessibility\": true,\n                        \"has_deaf_accessibility\": false,\n                        \"has_blind_accessibility\": false\n                    },\n                    \"tags\": [\n                        \"Culture\"\n                    ],\n                    \"pages\": [\n                        {\n                            \"id\": 8636,\n                            \"instance\": {\n                                \"id\": 2,\n                                \"slug\": \"portail-sortir-gps\"\n                            }\n                        }\n                    ]\n                }\n            }\n        ]\n    },\n    \"aggregations\": {\n        \"event_styles_terms_agg\": {\n            \"doc_count\": 2,\n            \"name\": {\n                \"doc_count_error_upper_bound\": 0,\n                \"sum_other_doc_count\": 0,\n                \"buckets\": [\n                    {\n                        \"key\": \"111\",\n                        \"doc_count\": 1,\n                        \"name\": {\n                            \"doc_count_error_upper_bound\": 0,\n                            \"sum_other_doc_count\": 0,\n                            \"buckets\": [\n                                {\n                                    \"key\": \"classique\",\n                                    \"doc_count\": 1\n                                },\n                                {\n                                    \"key\": \"musique\",\n                                    \"doc_count\": 1\n                                }\n                            ]\n                        }\n                    },\n                    {\n                        \"key\": \"82\",\n                        \"doc_count\": 1,\n                        \"name\": {\n                            \"doc_count_error_upper_bound\": 0,\n                            \"sum_other_doc_count\": 0,\n                            \"buckets\": [\n                                {\n                                    \"key\": \"music\",\n                                    \"doc_count\": 1\n                                },\n                                {\n                                    \"key\": \"world\",\n                                    \"doc_count\": 1\n                                }\n                            ]\n                        }\n                    }\n                ]\n            }\n        },\n        \"events\": {\n            \"doc_count\": 3838,\n            \"dates\": {\n                \"doc_count\": 11064,\n                \"this_month\": {\n                    \"doc_count\": 737,\n                    \"events\": {\n                        \"doc_count\": 278\n                    }\n                },\n                \"this_week_end\": {\n                    \"doc_count\": 81,\n                    \"events\": {\n                        \"doc_count\": 54\n                    }\n                },\n                \"past\": {\n                    \"doc_count\": 10070,\n                    \"events\": {\n                        \"doc_count\": 3132\n                    }\n                },\n                \"today\": {\n                    \"doc_count\": 34,\n                    \"events\": {\n                        \"doc_count\": 28\n                    }\n                },\n                \"tomorrow\": {\n                    \"doc_count\": 22,\n                    \"events\": {\n                        \"doc_count\": 19\n                    }\n                },\n                \"last_days\": {\n                    \"doc_count\": 133,\n                    \"events\": {\n                        \"doc_count\": 75\n                    }\n                },\n                \"upcoming\": {\n                    \"doc_count\": 1028,\n                    \"events\": {\n                        \"doc_count\": 390\n                    }\n                },\n                \"this_week\": {\n                    \"doc_count\": 197,\n                    \"events\": {\n                        \"doc_count\": 96\n                    }\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"53ae05e6-e9f4-46a9-a17b-bd795280d915"}],"id":"a836f6e0-c832-47dc-92c6-0459e6cdc8f1","_postman_id":"a836f6e0-c832-47dc-92c6-0459e6cdc8f1","description":""},{"name":"Ressources liées","item":[{"name":"✅ Types","id":"515dc261-bf7c-42d2-bc69-926976f8303f","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/types","description":"<p>Type(s) de la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","types"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[{"id":"1b8a2739-9e41-430b-a688-47a10e501773","name":"✅ Types","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.publidata.io/v2/:instance/events/:id/types","host":["https://api.publidata.io"],"path":["v2",":instance","events",":id","types"],"variable":[{"key":"instance","value":"500-ans-renaissances"},{"key":"id","value":"y7KpS6Dgxv"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Tue, 06 Nov 2018 14:56:10 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"aca7a58992ce54decfd0aa1309558bf9\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"d9a108a9-5d7c-486f-9b8f-620b97ceecb4"},{"key":"X-Runtime","value":"0.137086"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"wo7NbcKj7n\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"wo7NbcKj7n\",\n                \"created_at\": \"2018-10-23T01:23:57Z\",\n                \"updated_at\": \"2018-10-23T01:24:19Z\",\n                \"name\": {\n                    \"fr\": \"Rassemblement\"\n                }\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": \"https://publidata-staging.herokuapp.com/api/v2/event_types/wo7NbcKj7n\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"Wn7lQcrKxm\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"Wn7lQcrKxm\",\n                \"created_at\": \"2018-10-23T01:23:57Z\",\n                \"updated_at\": \"2018-10-23T01:24:19Z\",\n                \"name\": {\n                    \"fr\": \"Colloque\"\n                }\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": \"https://publidata-staging.herokuapp.com/api/v2/event_types/Wn7lQcrKxm\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        }\n    ],\n    \"meta\": {\n        \"items\": 2,\n        \"count\": 2,\n        \"page\": 1\n    },\n    \"links\": {\n        \"self\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/types?page=1\",\n        \"pagination\": {\n            \"first\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/types?page=1\",\n            \"last\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/types?page=1\"\n        }\n    }\n}"}],"_postman_id":"515dc261-bf7c-42d2-bc69-926976f8303f"},{"name":"🚧 Themes","id":"0022bb10-0a83-4c38-9317-28960bae1c66","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/themes","description":"<p>Thème(s) associé(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","themes"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"0022bb10-0a83-4c38-9317-28960bae1c66"},{"name":"✅ Dates","id":"2106a4bf-345f-4b71-be47-c1b705222998","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/dates","description":"<p>Date(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","dates"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[{"id":"4d65b547-b587-4700-85b0-e087d0907cba","name":"✅ Dates","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.publidata.io/v2/:instance/events/:id/dates","host":["https://api.publidata.io"],"path":["v2",":instance","events",":id","dates"],"variable":[{"key":"instance","value":"500-ans-renaissances"},{"key":"id","value":"y7KpS6Dgxv"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Tue, 06 Nov 2018 14:57:37 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"5019bf7102c4e9c481afd4dc20c410e1\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"5b74b321-cdd9-461b-a32e-4263c646d08b"},{"key":"X-Runtime","value":"0.316049"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"DVA6ivYR7X\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DVA6ivYR7X\",\n                \"created_at\": \"2018-10-31T11:33:11Z\",\n                \"updated_at\": \"2018-10-31T11:33:11Z\",\n                \"start_at\": \"2019-06-01T00:00:00Z\",\n                \"end_at\": \"2019-06-01T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 01 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"2VX9iOjd7N\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"2VX9iOjd7N\",\n                \"created_at\": \"2018-10-31T11:33:11Z\",\n                \"updated_at\": \"2018-10-31T11:33:11Z\",\n                \"start_at\": \"2019-06-02T00:00:00Z\",\n                \"end_at\": \"2019-06-02T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 02 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"J7d3igMbVB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"J7d3igMbVB\",\n                \"created_at\": \"2018-10-31T11:33:11Z\",\n                \"updated_at\": \"2018-10-31T11:33:11Z\",\n                \"start_at\": \"2019-06-03T00:00:00Z\",\n                \"end_at\": \"2019-06-03T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 03 Mo 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"jVJvi2nXVR\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"jVJvi2nXVR\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-04T00:00:00Z\",\n                \"end_at\": \"2019-06-04T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 04 Tu 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"G7jaiXOAVg\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"G7jaiXOAVg\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-05T00:00:00Z\",\n                \"end_at\": \"2019-06-05T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 05 We 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DLkqijM67a\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DLkqijM67a\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-06T00:00:00Z\",\n                \"end_at\": \"2019-06-06T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 06 Th 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"d7DzidZmLB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"d7DzidZmLB\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-07T00:00:00Z\",\n                \"end_at\": \"2019-06-07T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 07 Fr 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"y7KAiEOMLv\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"y7KAiEOMLv\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-08T00:00:00Z\",\n                \"end_at\": \"2019-06-08T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 08 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"Kx09iEraLX\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"Kx09iEraLX\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-09T00:00:00Z\",\n                \"end_at\": \"2019-06-09T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 09 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"Q7BaiA1AVb\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"Q7BaiA1AVb\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-10T00:00:00Z\",\n                \"end_at\": \"2019-06-10T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 10 Mo 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"NLwjibKKxD\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"NLwjibKKxD\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-11T00:00:00Z\",\n                \"end_at\": \"2019-06-11T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 11 Tu 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"D744i3N078\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"D744i3N078\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-12T00:00:00Z\",\n                \"end_at\": \"2019-06-12T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 12 We 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"8VvJieDWVv\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"8VvJieDWVv\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-13T00:00:00Z\",\n                \"end_at\": \"2019-06-13T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 13 Th 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DVA6ivYn7X\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DVA6ivYn7X\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-14T00:00:00Z\",\n                \"end_at\": \"2019-06-14T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 14 Fr 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"2VX9iOjl7N\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"2VX9iOjl7N\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-15T00:00:00Z\",\n                \"end_at\": \"2019-06-15T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 15 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"J7d3igMRVB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"J7d3igMRVB\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-16T00:00:00Z\",\n                \"end_at\": \"2019-06-16T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 16 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"jVJvi2nyVR\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"jVJvi2nyVR\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-17T00:00:00Z\",\n                \"end_at\": \"2019-06-17T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 17 Mo 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"G7jaiXOoVg\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"G7jaiXOoVg\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-18T00:00:00Z\",\n                \"end_at\": \"2019-06-18T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 18 Tu 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DLkqijMy7a\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DLkqijMy7a\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-19T00:00:00Z\",\n                \"end_at\": \"2019-06-19T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 19 We 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"d7DzidZMLB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"d7DzidZMLB\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-20T00:00:00Z\",\n                \"end_at\": \"2019-06-20T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 20 Th 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        }\n    ],\n    \"meta\": {\n        \"items\": 20,\n        \"count\": 30,\n        \"page\": 1\n    },\n    \"links\": {\n        \"self\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates?page=1\",\n        \"pagination\": {\n            \"first\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates?page=1\",\n            \"next\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates?page=2\",\n            \"last\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates?page=2\"\n        }\n    }\n}"}],"_postman_id":"2106a4bf-345f-4b71-be47-c1b705222998"},{"name":"🚧 Tickets","id":"e5111510-98a9-4c57-b0d9-99e6280733f0","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/tickets","description":"<p>Billetterie(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","tickets"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"e5111510-98a9-4c57-b0d9-99e6280733f0"},{"name":"🚧 Fees","id":"e4b9a4ca-8865-4d1c-9f97-90e2d8a3f4e7","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/fees","description":"<p>Prix lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","fees"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"e4b9a4ca-8865-4d1c-9f97-90e2d8a3f4e7"},{"name":"🚧 Contacts","id":"538d8317-8c92-41fd-ace7-050df04bf861","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/contacts","description":"<p>Information(s) de contact liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","contacts"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"538d8317-8c92-41fd-ace7-050df04bf861"},{"name":"🚧 Socials","id":"85d3f0dc-d30a-4fd4-bb2c-e95db81cbe00","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/socials","description":"<p>Information(s) sociale(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","socials"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"85d3f0dc-d30a-4fd4-bb2c-e95db81cbe00"},{"name":"🚧 Public","id":"f0e0e542-bbe9-4934-ac59-861db2d16310","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/public","description":"<p>Public associé à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","public"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"f0e0e542-bbe9-4934-ac59-861db2d16310"},{"name":"🚧 Accessibility","id":"6a06b559-007c-4f54-b365-3d63056bbd3b","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/accessibility","description":"<p>Information(s) d'accessibilité liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","accessibility"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"6a06b559-007c-4f54-b365-3d63056bbd3b"},{"name":"🚧 Partners","id":"bc1a47c3-aac4-4b98-9abd-2f4ae892e0d2","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/partners","description":"<p>Partenaire(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","partners"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"bc1a47c3-aac4-4b98-9abd-2f4ae892e0d2"},{"name":"🚧 Instances","id":"512fad77-3e94-48d8-a7e6-32d83e50aadc","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/instances","description":"<p>Instance(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","instances"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"512fad77-3e94-48d8-a7e6-32d83e50aadc"},{"name":"🚧 Pages","id":"de5ef224-9c15-49e4-8af6-ffdc19c12ecd","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/skills","description":"<p>Page(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","skills"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"de5ef224-9c15-49e4-8af6-ffdc19c12ecd"},{"name":"🚧 Contributors","id":"73837b07-4030-4fd0-80f8-f470d7675f9c","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/contributors","description":"<p>Contributeur(s) / mainteneur(s) de la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","contributors"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"73837b07-4030-4fd0-80f8-f470d7675f9c"}],"id":"45491d5d-c977-4690-b9fa-fe515ef6fd01","_postman_id":"45491d5d-c977-4690-b9fa-fe515ef6fd01","description":""},{"name":"Relations","item":[{"name":"🚧 Relations","id":"72831a4d-a03c-4fa4-8c44-c1e567be8240","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/themes","description":"<p>Ressource(s) associée(s) à ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","themes"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"72831a4d-a03c-4fa4-8c44-c1e567be8240"},{"name":"🚧 Facilities","id":"78006a96-27c1-4f88-9ae6-a611e1968b43","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/facilities","description":"<p>Équipement(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","facilities"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"78006a96-27c1-4f88-9ae6-a611e1968b43"},{"name":"🚧 Cities","id":"3ae92d77-f773-4745-bf68-2560c1a001a2","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/cities","description":"<p>Commune(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","cities"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"3ae92d77-f773-4745-bf68-2560c1a001a2"},{"name":"🚧 Departments","id":"0384fb61-ef42-4078-9d2a-da7335ab1903","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/departments","description":"<p>Départements(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","departments"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"0384fb61-ef42-4078-9d2a-da7335ab1903"},{"name":"🚧 Regions","id":"fff6f3c0-8dc0-4c8c-8a4e-8672868ac6d3","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/regions","description":"<p>Région(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","regions"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"fff6f3c0-8dc0-4c8c-8a4e-8672868ac6d3"},{"name":"🚧 News","id":"a2fce2c4-2baf-46cd-9d3a-cc7c2c7db230","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/news","description":"<p>Actualité(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","news"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"a2fce2c4-2baf-46cd-9d3a-cc7c2c7db230"},{"name":"✅ Events","id":"8f61a0a7-5708-498b-b621-c4cebe26bf9f","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/events","description":"<p>Événement(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","events"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"8f61a0a7-5708-498b-b621-c4cebe26bf9f"},{"name":"🚧 EventGroups","id":"d0541cf8-ba89-48d8-988e-d775468cdb2c","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/event_groups","description":"<p>Groupe(s) d'événement(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","event_groups"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"d0541cf8-ba89-48d8-988e-d775468cdb2c"},{"name":"🚧 Projects","id":"d9d05e6a-fa91-4037-9a57-ba06a66d39a3","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/projects","description":"<p>Projet(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","projects"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"d9d05e6a-fa91-4037-9a57-ba06a66d39a3"},{"name":"🚧 Performers","id":"9f5f3af3-ea8b-4726-baaf-9c2f166c475c","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/performers","description":"<p>Artiste(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","performers"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"9f5f3af3-ea8b-4726-baaf-9c2f166c475c"},{"name":"🚧 Companies","id":"43fd3148-c92c-4791-ab97-94fcac7d8125","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/companies","description":"<p>Entreprise(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","companies"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"43fd3148-c92c-4791-ab97-94fcac7d8125"},{"name":"🚧 NonProfits","id":"191f0eee-76da-4b4e-8d1a-56e43340aca8","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/non_profits","description":"<p>Associations(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","non_profits"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"191f0eee-76da-4b4e-8d1a-56e43340aca8"},{"name":"🚧 EtablissementPublics","id":"36ccd09e-d271-436c-a1bd-950dbe6d8341","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/etablissement_publics","description":"<p>Établissement(s) public(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","etablissement_publics"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"36ccd09e-d271-436c-a1bd-950dbe6d8341"},{"name":"🚧 Skills","id":"c9156af5-6696-4f0c-aff6-09c6c0ca82b6","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/skills","description":"<p>Compétence(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","skills"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"c9156af5-6696-4f0c-aff6-09c6c0ca82b6"},{"name":"🚧 Elects","id":"bf8831b8-8c34-4bc8-8bfc-31c3f12dc4a3","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/elects","description":"<p>Élus(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","elects"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"bf8831b8-8c34-4bc8-8bfc-31c3f12dc4a3"}],"id":"1373cea6-e100-4e91-a0f5-50dd1e87f819","description":"<p>A venir... 🚧</p>\n","event":[{"listen":"prerequest","script":{"id":"487c0f48-a1cd-4aae-af2f-4b62ccf8bb0b","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"4dfafa06-8884-4b36-9c42-31cba1746986","type":"text/javascript","exec":[""]}}],"_postman_id":"1373cea6-e100-4e91-a0f5-50dd1e87f819"},{"name":"Médias","item":[{"name":"🚧 Medias","id":"4d6ce81e-e8a7-438a-bd8e-8b557f32effc","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/medias","description":"<p>Média(s) associé(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","medias"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"4d6ce81e-e8a7-438a-bd8e-8b557f32effc"},{"name":"✅ Images","id":"46b3c929-950c-417f-82ae-9fa250b1e39a","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/images","description":"<p>Image(s) associée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","images"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"46b3c929-950c-417f-82ae-9fa250b1e39a"},{"name":"✅ Documents","id":"6121ad4c-bfda-48e1-a49b-0227e8d1b2df","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/documents","description":"<p>Document(s) associé(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","documents"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"6121ad4c-bfda-48e1-a49b-0227e8d1b2df"}],"id":"40d9ab5c-db12-4c4f-bb06-5d48d2bb76aa","_postman_id":"40d9ab5c-db12-4c4f-bb06-5d48d2bb76aa","description":""}],"id":"ede8697c-2f0f-473f-a7f7-c511f0915a85","description":"<p>Les événements</p>\n","event":[{"listen":"prerequest","script":{"id":"768578b7-1e5d-45b7-ab56-2a8b856f2061","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"a419bb76-510b-4b2b-bc5d-608de7e9b0d3","type":"text/javascript","exec":[""]}}],"_postman_id":"ede8697c-2f0f-473f-a7f7-c511f0915a85"},{"name":"🚧 Compétences","item":[{"name":"Endpoints principaux","item":[{"name":"✅ Index","id":"01252edb-5745-4f78-ab24-ac3799539a9e","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events","description":"<p>Liste des événements</p>\n","urlObject":{"path":["v2",":instance","events"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"}]}},"response":[{"id":"77c63c13-5e1d-4459-8d1c-841c352c9f93","name":"✅ Index","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.publidata.io/v2/:instance/events","host":["https://api.publidata.io"],"path":["v2",":instance","events"],"variable":[{"key":"instance","value":"500-ans-renaissances"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Tue, 06 Nov 2018 14:35:32 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"e272b80759b3239cb223ac313ead9d8a\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"ef157796-c377-4ab4-b340-25fe123f51d3"},{"key":"X-Runtime","value":"0.211831"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"J7dASjXPxB\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"J7dASjXPxB\",\n                \"created_at\": \"2018-11-02T13:36:24Z\",\n                \"updated_at\": \"2018-11-06T14:11:43Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {\n                    \"fr\": \"La 28e édition du Festival International des Jardins abordera un thème cher à la Renaissance.\"\n                },\n                \"name\": {\n                    \"fr\": \"Festival International des Jardins de Chaumont-sur-Loire\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"medium-insert-active\\\"><br></p>\"\n                },\n                \"start_at\": \"2019-04-25T10:00:00Z\",\n                \"end_at\": \"2019-11-03T19:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"y7KpS6Dgxv\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"y7KpS6Dgxv\",\n                \"created_at\": \"2018-10-31T11:26:32Z\",\n                \"updated_at\": \"2018-11-06T10:56:29Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {\n                    \"fr\": \"62eme Colloque International d'études humanistes du centre d'études supérieures de la Renaissance\"\n                },\n                \"name\": {\n                    \"fr\": \"Léonard de Vinci création et innovations \"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"is-active\\\">Le 62ème colloque international d’études humanistes du Centre d’études supérieures de la Renaissance de Tours sera consacré à Léonard de Vinci en 2019.&nbsp;</p><p class=\\\"is-active\\\">Cet événement rassemblera les plus grands spécialistes internationaux du sujet et proposera d’aborder toutes les facettes de l’oeuvre de Léonard sous le prisme de l’invention et de l’innovation : mécanique, médecine, architecture, biomimétisme, etc. Une partie de ce colloque se tiendra dans des lieux marqués par la figure de Léonard de Vinci : le Château du Clos Lucé à Amboise et le Château de Chambord.</p>\"\n                },\n                \"start_at\": \"2019-06-01T00:00:00Z\",\n                \"end_at\": \"2019-06-30T00:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"G7j3SNKzxg\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"G7j3SNKzxg\",\n                \"created_at\": \"2018-10-31T09:20:00Z\",\n                \"updated_at\": \"2018-11-06T10:56:29Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {},\n                \"name\": {\n                    \"fr\": \"Les Borgia à Chinon\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"\\\">La Forteresse royale de Chinon, proposera une reconstitution historique de la venue de César Borgia, fils du pape Alexandre VI pour rencontrer le roi de France à Chinon en 1498 . Reconstitution (cortège équestre). Démonstrations de Calcio Storico (sport florentin de la Renaissance, ancêtre du football actuel…). Dégustations de mets et recettes de la Renaissance florentine. Danses et musiques Renaissance.<br></p>\"\n                },\n                \"start_at\": \"2019-07-21T00:00:00Z\",\n                \"end_at\": \"2019-07-21T00:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"jVJbSWMWVR\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"jVJbSWMWVR\",\n                \"created_at\": \"2018-10-31T08:54:32Z\",\n                \"updated_at\": \"2018-11-06T10:56:28Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {},\n                \"name\": {\n                    \"fr\": \"La renaissance en Val de Loire, en France et en Europe - Festival du film français renaissance\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p>Pour la 21ème édition des Rendez- vous de l’Histoire, le Centre d’Études Supérieures de la Renaissance sera fortement impliqué dans une programmation spécifique « La Renaissance en Val de Loire, en France et en Europe ». Dans le cadre du festival du film français « Renaissance », seront projetés des films historiques accompagnés de moments de réflexion (débats, conférences et ateliers) mettant en perspective la création cinématographique au regard de l’histoire de la peinture historiciste.<br></p>\"\n                },\n                \"start_at\": \"2019-10-01T00:00:00Z\",\n                \"end_at\": \"2019-10-31T00:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"J7dASjXwxB\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"J7dASjXwxB\",\n                \"created_at\": \"2018-10-31T08:42:55Z\",\n                \"updated_at\": \"2018-11-06T10:56:28Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {\n                    \"fr\": \"Parcours numérique, sonore et interactif\"\n                },\n                \"name\": {\n                    \"fr\": \"Renaissance comme Rabelais\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<h3>Parcours numérique, sonore et interactif combinant des moyens techniques innovants capables d’allier  géographie littéraire et géographie réelle. Création d’un parcours sonore géolocalisé à partir d’une application mobile entre La Devinière, maison natale de Rabelais, et l’Abbaye de Seuilly.<br></h3>\"\n                },\n                \"start_at\": \"2019-07-01T00:00:00Z\",\n                \"end_at\": \"2019-10-31T00:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"DVAWS3NQxX\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"DVAWS3NQxX\",\n                \"created_at\": \"2018-10-31T08:34:25Z\",\n                \"updated_at\": \"2018-11-06T10:56:28Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {},\n                \"name\": {\n                    \"fr\": \"Spectacle numérique itinérant Renaissance(S)\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p>Ce spectacle numérique invite le public à s’immerger par le biais des dernières technologies dans un environnement visuel et sonore en plusieurs dimensions. Diverses technologies, de réalité augmentée ou de réalité virtuelle peuvent être détournées par le biais d’une immersion sensori-motrice grâce à une ou plusieurs interfaces visuelles. Ce spectacle proposera une narration dans l’esprit humaniste et novateur de la Renaissance.</p><p>Il évoquera les dimensions créatives, anticipatrices, pluridisciplinaires de Léonard de Vinci, les acteurs, oeuvres, sites patrimoniaux et culturels majeurs du territoire à la Renaissance, le Centre-Val de Loire aujourd’hui et sa projection dans le futur.</p>\"\n                },\n                \"start_at\": \"2019-08-15T19:00:00Z\",\n                \"end_at\": \"2019-09-15T23:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"8VvZS1y0Vv\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"8VvZS1y0Vv\",\n                \"created_at\": \"2018-10-31T08:29:42Z\",\n                \"updated_at\": \"2018-11-06T10:56:28Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {},\n                \"name\": {\n                    \"fr\": \"Magnificences à la cour de France\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"is-active\\\">Ce spectacle de l’ensemble Doulce Mémoire, recrée l’univers d’une fête à la cour de François I<sup>er</sup>, autour de 1515, celles qui virent l’arrivée en France de Léonard de Vinci à l’invitation du roi français. Peintre, inventeur de génie, Léonard était aussi organisateur de fêtes fameuses, dont l’inventivité et la puissance créatrice étaient appréciées les puissants.<br></p>\"\n                },\n                \"start_at\": \"2019-07-23T19:00:00Z\",\n                \"end_at\": \"2019-07-23T23:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"NLwlSvmaVD\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"NLwlSvmaVD\",\n                \"created_at\": \"2018-10-30T16:51:07Z\",\n                \"updated_at\": \"2018-11-06T10:56:27Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {\n                    \"fr\": \"Exposition regroupant des artistes contemporains influencés par Léonard de Vinci et la Renaissance.\"\n                },\n                \"name\": {\n                    \"fr\": \"Hommage contemporain à la Renaissance\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"is-active\\\">Exposition d’artistes contemporains ayant été influencés par Léonard de Vinci et la Renaissance, sur l’exemple de Fabien Merelle, établi à Tours et travaillant sur la scène internationale.&nbsp;</p><p class=\\\"is-active\\\">L’exposition « Hommage à Léonard » transpose dans l’art contemporain l’héritage du maître du Cinquecento mort en Val de Loire il y a 500 ans. Vaste cabinet de curiosités, l’exposition présentée dans les salles historiques du château fait écho au système de pensée&nbsp;<span style=\\\"font-size: 1em; font-family: ProximaNova, Helvetica, Arial, &quot;Sans Serif&quot;;\\\">du Maitre, génie polyvalent où la réalisation ne constitue pas la fin mais le moyen de la réflexion. Conçue comme une sorte de « mise en curiosité » envers les différents apports de Léonard, homme d’esprit universel à l’histoire des arts en Europe, interprétés ou prolongés par différents artistes de notre temps travaillant sur la scène internationale ; l’exposition montre aussi que les échanges entre Italie et France vers 1500, l’italianisme dans les&nbsp;</span><span style=\\\"font-size: 1em; font-family: ProximaNova, Helvetica, Arial, &quot;Sans Serif&quot;;\\\">arts amorcé sous Charles VIII et Louis XII se perpétuent de nos jours, avec les travaux des artistes florentines Antonella Bussanich, Alessandra Capodacqua et Alessandra Ragionier. Comme dans les chapitres d’un livre, chaque salle illustre l’un des thèmes étudiés par Léonard. L’autoportrait / Le portrait / La peinture d’histoire /&nbsp;</span><span style=\\\"font-size: 1em; font-family: ProximaNova, Helvetica, Arial, &quot;Sans Serif&quot;;\\\">Le Paysage / Le codex / La nature morte / Le Portrait féminin / Le Drapé.</span></p>\"\n                },\n                \"start_at\": \"2019-04-01T10:00:00Z\",\n                \"end_at\": \"2019-11-30T18:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"8VOeS416xY\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"8VOeS416xY\",\n                \"created_at\": \"2018-10-29T16:47:42Z\",\n                \"updated_at\": \"2018-11-06T10:56:30Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {\n                    \"fr\": \"Dans le cadre de l'anniversaire des 500ans de la Renaissance, l'artiste Ravo revisite l'oeuvre de François-Guillaume Ménageot \\\"La mort de Léonard de Vinci\\\"\"\n                },\n                \"name\": {\n                    \"fr\": \"Ravo Mattoni invité du Château Royal d' Amboise\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"\\\">Andrea Mattoni alias <b>RAVO</b>, artiste-graffeur italien de son état, a débuté en 2016 un ambitieux projet visant à reproduire, in situ et en très grand format, des chefs-d’œuvre de la peinture classique signés du Caravage, de Delacroix, de Delatour… Profondeur des couleurs, puissance des lignes et de l’échelle, l’hommage de RAVO aux grands maîtres est d’une modernité réjouissante… Le résultat est bluffant.</p><p class=\\\"\\\">De manière à prolonger l’exposition « La Mort de Léonard de Vinci : la construction d’un mythe » préparée avec la BNF, le château royal d’Amboise a demandé à RAVO de réaliser 5 toiles de grandes dimensions (4.5m X 3m). Celles-ci prendront pour sujet des détails du monumental tableau de François-Guillaume Ménageot « La Mort de Léonard de Vinci », et trouveront place sur les murs de la tour cavalière des Minimes, du 2 mai au 2 septembre 2019. Pour honorer cette commande, l’artiste sera en résidence au château royal d’Amboise durant une dizaine de jours, en avril 2019. Il réalisera ses peintures en public.</p><p class=\\\"\\\">Cette exposition est organisée avec le concours de l’association des Ateliers de l’Etoile.</p><p class=\\\"\\\"><span style=\\\"font-size: 1em; font-family: ProximaNova, Helvetica, Arial, &quot;Sans Serif&quot;;\\\"><b>\\\"Exposition « La Mort de Léonard de Vinci : la construction d’un mythe » - Partenariat BNF (Bibliothèque Nationale de France)</b></span><br></p><p class=\\\"\\\">Tous les jours, du 2 mai au 2 septembre 2019.</p><p class=\\\"\\\">La grande exposition intitulée « La Mort de Léonard de Vinci : la construction d’un mythe », articulée autour du monumental tableau (280 cm X 357 cm) de François-Guillaume Ménageot La mort de Léonard de Vinci, et d’une collection de gravures issues des collections nationales, nous éclairera sur la manière dont les contours de l’amitié entre le roi François Ier et Léonard ont été progressivement réécrits par l’Histoire, et assimilés par elle jusqu’à la construction d’un mythe mis au service de l’image de la monarchie française au XVIII<sup>ème</sup> siècle.</p><p>Au cœur de la riche programmation des célébrations du 5ème centenaire, cette exposition majeure viendra aussi rappeler à un public venu des quatre coins du monde la place éternelle qu’occupe Léonard de Vinci en Val de Loire, et à Amboise en particulier où il repose pour l’éternité dans la quiétude de la chapelle du château.\\\"</p>\"\n                },\n                \"start_at\": \"2019-05-02T09:00:00Z\",\n                \"end_at\": \"2019-09-02T18:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"items\": 9,\n        \"count\": 9,\n        \"page\": 1\n    },\n    \"links\": {\n        \"self\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events?page=1\",\n        \"pagination\": {\n            \"first\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events?page=1\",\n            \"last\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events?page=1\"\n        }\n    }\n}"}],"_postman_id":"01252edb-5745-4f78-ab24-ac3799539a9e"},{"name":"✅ Show","id":"79ab9597-2768-4637-bbc7-e7dab81e0e4c","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/{{instance_id}}/events/:id","description":"<p>Détail d'un événement</p>\n","urlObject":{"path":["v2","{{instance_id}}","events",":id"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[{"id":"4d1f7fa8-267e-41de-869a-942a4eaa11e9","name":"✅ Show","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.publidata.io/v2/{{instance_id}}/events/:id","host":["https://api.publidata.io"],"path":["v2","{{instance_id}}","events",":id"],"variable":[{"key":"id","value":"y7KpS6Dgxv"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Tue, 06 Nov 2018 14:50:05 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"811c246d37cc926cc75bf582cd364fb3\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"d619c237-6f78-4100-9d77-b11aa3b6dc53"},{"key":"X-Runtime","value":"0.051868"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"y7KpS6Dgxv\",\n        \"type\": \"event\",\n        \"attributes\": {\n            \"id\": \"y7KpS6Dgxv\",\n            \"created_at\": \"2018-10-31T11:26:32Z\",\n            \"updated_at\": \"2018-11-06T10:56:29Z\",\n            \"cancelled\": false,\n            \"cancellation_reason\": null,\n            \"free_admission\": null,\n            \"free_admission_condition\": null,\n            \"punchline\": {\n                \"fr\": \"62eme Colloque International d'études humanistes du centre d'études supérieures de la Renaissance\"\n            },\n            \"name\": {\n                \"fr\": \"Léonard de Vinci création et innovations \"\n            },\n            \"blurb\": {\n                \"fr\": \"<p class=\\\"is-active\\\">Le 62ème colloque international d’études humanistes du Centre d’études supérieures de la Renaissance de Tours sera consacré à Léonard de Vinci en 2019.&nbsp;</p><p class=\\\"is-active\\\">Cet événement rassemblera les plus grands spécialistes internationaux du sujet et proposera d’aborder toutes les facettes de l’oeuvre de Léonard sous le prisme de l’invention et de l’innovation : mécanique, médecine, architecture, biomimétisme, etc. Une partie de ce colloque se tiendra dans des lieux marqués par la figure de Léonard de Vinci : le Château du Clos Lucé à Amboise et le Château de Chambord.</p>\"\n            },\n            \"start_at\": \"2019-06-01T00:00:00Z\",\n            \"end_at\": \"2019-06-30T00:00:00Z\"\n        },\n        \"relationships\": {},\n        \"links\": {\n            \"self\": {\n                \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv\"\n            },\n            \"relations\": {\n                \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/cities\",\n                \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/companies\",\n                \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/departments\",\n                \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/elects\",\n                \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/etablissement_publics\",\n                \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/event_groups\",\n                \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/events\",\n                \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/facilities\",\n                \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/news\",\n                \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/non_profits\",\n                \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/performers\",\n                \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/projects\",\n                \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/regions\",\n                \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/skills\"\n            },\n            \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/images\",\n            \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/documents\",\n            \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates\",\n            \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/type\",\n            \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/types\"\n        },\n        \"meta\": {\n            \"licenses\": [\n                {\n                    \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                    \"SPDX\": \"ODbL-1.0\",\n                    \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                    \"targets\": [\n                        \"cancelled\",\n                        \"cancellation_reason\",\n                        \"free_admission\",\n                        \"free_admission_condition\",\n                        \"punchline\",\n                        \"name\",\n                        \"blurb\",\n                        \"start_at\",\n                        \"end_at\"\n                    ]\n                }\n            ],\n            \"instances\": {\n                \"500-ans-renaissances\": [\n                    \"fr\"\n                ]\n            }\n        }\n    }\n}"}],"_postman_id":"79ab9597-2768-4637-bbc7-e7dab81e0e4c"},{"name":"✅ Show with included resources","id":"6880f99b-88e4-486b-ab0a-be576ea5d5a2","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id?include=dates,types","description":"<p>Avec le paramètre <code>include</code> vous avez la possibilité d'insérer dans la vue principale des ressources liées, vous évitant des requêtes supplémentaires.</p>\n","urlObject":{"path":["v2",":instance","events",":id"],"host":["https://api.publidata.io"],"query":[{"description":{"content":"<p>Liste des ressources à insérer</p>\n","type":"text/plain"},"key":"include","value":"dates,types"}],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[{"id":"b9fd042b-3605-4dfc-a684-768955b0e84b","name":"✅ Show with included resources","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.publidata.io/v2/:instance/events/:id?include=dates,types","host":["https://api.publidata.io"],"path":["v2",":instance","events",":id"],"query":[{"key":"include","value":"dates,types","description":"Liste des ressources à insérer"}],"variable":[{"key":"instance","value":"500-ans-renaissances"},{"key":"id","value":"y7KpS6Dgxv"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Tue, 06 Nov 2018 14:54:52 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"2c566edafdfca2fe7ed4fc7f8ef3e15b\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"b8d67f08-016a-4d6c-b10e-7d6467c5bcdf"},{"key":"X-Runtime","value":"0.483946"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"y7KpS6Dgxv\",\n        \"type\": \"event\",\n        \"attributes\": {\n            \"id\": \"y7KpS6Dgxv\",\n            \"created_at\": \"2018-10-31T11:26:32Z\",\n            \"updated_at\": \"2018-11-06T10:56:29Z\",\n            \"cancelled\": false,\n            \"cancellation_reason\": null,\n            \"free_admission\": null,\n            \"free_admission_condition\": null,\n            \"punchline\": {\n                \"fr\": \"62eme Colloque International d'études humanistes du centre d'études supérieures de la Renaissance\"\n            },\n            \"name\": {\n                \"fr\": \"Léonard de Vinci création et innovations \"\n            },\n            \"blurb\": {\n                \"fr\": \"<p class=\\\"is-active\\\">Le 62ème colloque international d’études humanistes du Centre d’études supérieures de la Renaissance de Tours sera consacré à Léonard de Vinci en 2019.&nbsp;</p><p class=\\\"is-active\\\">Cet événement rassemblera les plus grands spécialistes internationaux du sujet et proposera d’aborder toutes les facettes de l’oeuvre de Léonard sous le prisme de l’invention et de l’innovation : mécanique, médecine, architecture, biomimétisme, etc. Une partie de ce colloque se tiendra dans des lieux marqués par la figure de Léonard de Vinci : le Château du Clos Lucé à Amboise et le Château de Chambord.</p>\"\n            },\n            \"start_at\": \"2019-06-01T00:00:00Z\",\n            \"end_at\": \"2019-06-30T00:00:00Z\"\n        },\n        \"relationships\": {\n            \"types\": {\n                \"data\": []\n            },\n            \"dates\": {\n                \"data\": [\n                    {\n                        \"id\": \"axGeikm1VN\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"8VZZiNZ8Vd\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"eVgRimO4Lo\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"E79OiqZQLM\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"YVYgiW4lxD\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"87oei8vYLQ\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"gLb4iOga7J\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"o7EMiQDr75\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"B72ZiYOv7O\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"y7KAiEO4Lv\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"d7DzidZMLB\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"DLkqijMy7a\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"G7jaiXOoVg\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"jVJvi2nyVR\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"J7d3igMRVB\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"2VX9iOjl7N\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"DVA6ivYn7X\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"8VvJieDWVv\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"D744i3N078\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"NLwjibKKxD\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"Q7BaiA1AVb\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"Kx09iEraLX\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"y7KAiEOMLv\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"d7DzidZmLB\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"DLkqijM67a\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"G7jaiXOAVg\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"jVJvi2nXVR\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"J7d3igMbVB\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"2VX9iOjd7N\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"DVA6ivYR7X\",\n                        \"type\": \"date\"\n                    }\n                ]\n            }\n        },\n        \"links\": {\n            \"self\": {\n                \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv\"\n            },\n            \"relations\": {\n                \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/cities\",\n                \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/companies\",\n                \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/departments\",\n                \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/elects\",\n                \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/etablissement_publics\",\n                \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/event_groups\",\n                \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/events\",\n                \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/facilities\",\n                \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/news\",\n                \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/non_profits\",\n                \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/performers\",\n                \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/projects\",\n                \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/regions\",\n                \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/skills\"\n            },\n            \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/images\",\n            \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/documents\",\n            \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates\",\n            \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/type\",\n            \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/types\"\n        },\n        \"meta\": {\n            \"included\": [\n                \"dates\",\n                \"types\"\n            ],\n            \"licenses\": [\n                {\n                    \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                    \"SPDX\": \"ODbL-1.0\",\n                    \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                    \"targets\": [\n                        \"cancelled\",\n                        \"cancellation_reason\",\n                        \"free_admission\",\n                        \"free_admission_condition\",\n                        \"punchline\",\n                        \"name\",\n                        \"blurb\",\n                        \"start_at\",\n                        \"end_at\"\n                    ]\n                }\n            ],\n            \"instances\": {\n                \"500-ans-renaissances\": [\n                    \"fr\"\n                ]\n            }\n        }\n    },\n    \"included\": [\n        {\n            \"id\": \"axGeikm1VN\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"axGeikm1VN\",\n                \"created_at\": \"2018-10-31T11:33:15Z\",\n                \"updated_at\": \"2018-10-31T11:33:15Z\",\n                \"start_at\": \"2019-06-30T00:00:00Z\",\n                \"end_at\": \"2019-06-30T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 30 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"8VZZiNZ8Vd\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"8VZZiNZ8Vd\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-29T00:00:00Z\",\n                \"end_at\": \"2019-06-29T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 29 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"eVgRimO4Lo\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"eVgRimO4Lo\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-28T00:00:00Z\",\n                \"end_at\": \"2019-06-28T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 28 Fr 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"E79OiqZQLM\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"E79OiqZQLM\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-27T00:00:00Z\",\n                \"end_at\": \"2019-06-27T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 27 Th 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"YVYgiW4lxD\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"YVYgiW4lxD\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-26T00:00:00Z\",\n                \"end_at\": \"2019-06-26T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 26 We 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"87oei8vYLQ\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"87oei8vYLQ\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-25T00:00:00Z\",\n                \"end_at\": \"2019-06-25T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 25 Tu 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"gLb4iOga7J\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"gLb4iOga7J\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-24T00:00:00Z\",\n                \"end_at\": \"2019-06-24T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 24 Mo 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"o7EMiQDr75\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"o7EMiQDr75\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-23T00:00:00Z\",\n                \"end_at\": \"2019-06-23T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 23 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"B72ZiYOv7O\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"B72ZiYOv7O\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-22T00:00:00Z\",\n                \"end_at\": \"2019-06-22T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 22 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"y7KAiEO4Lv\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"y7KAiEO4Lv\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-21T00:00:00Z\",\n                \"end_at\": \"2019-06-21T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 21 Fr 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"d7DzidZMLB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"d7DzidZMLB\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-20T00:00:00Z\",\n                \"end_at\": \"2019-06-20T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 20 Th 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DLkqijMy7a\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DLkqijMy7a\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-19T00:00:00Z\",\n                \"end_at\": \"2019-06-19T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 19 We 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"G7jaiXOoVg\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"G7jaiXOoVg\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-18T00:00:00Z\",\n                \"end_at\": \"2019-06-18T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 18 Tu 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"jVJvi2nyVR\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"jVJvi2nyVR\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-17T00:00:00Z\",\n                \"end_at\": \"2019-06-17T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 17 Mo 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"J7d3igMRVB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"J7d3igMRVB\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-16T00:00:00Z\",\n                \"end_at\": \"2019-06-16T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 16 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"2VX9iOjl7N\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"2VX9iOjl7N\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-15T00:00:00Z\",\n                \"end_at\": \"2019-06-15T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 15 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DVA6ivYn7X\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DVA6ivYn7X\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-14T00:00:00Z\",\n                \"end_at\": \"2019-06-14T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 14 Fr 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"8VvJieDWVv\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"8VvJieDWVv\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-13T00:00:00Z\",\n                \"end_at\": \"2019-06-13T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 13 Th 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"D744i3N078\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"D744i3N078\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-12T00:00:00Z\",\n                \"end_at\": \"2019-06-12T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 12 We 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"NLwjibKKxD\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"NLwjibKKxD\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-11T00:00:00Z\",\n                \"end_at\": \"2019-06-11T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 11 Tu 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"Q7BaiA1AVb\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"Q7BaiA1AVb\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-10T00:00:00Z\",\n                \"end_at\": \"2019-06-10T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 10 Mo 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"Kx09iEraLX\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"Kx09iEraLX\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-09T00:00:00Z\",\n                \"end_at\": \"2019-06-09T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 09 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"y7KAiEOMLv\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"y7KAiEOMLv\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-08T00:00:00Z\",\n                \"end_at\": \"2019-06-08T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 08 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"d7DzidZmLB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"d7DzidZmLB\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-07T00:00:00Z\",\n                \"end_at\": \"2019-06-07T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 07 Fr 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DLkqijM67a\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DLkqijM67a\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-06T00:00:00Z\",\n                \"end_at\": \"2019-06-06T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 06 Th 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"G7jaiXOAVg\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"G7jaiXOAVg\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-05T00:00:00Z\",\n                \"end_at\": \"2019-06-05T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 05 We 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"jVJvi2nXVR\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"jVJvi2nXVR\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-04T00:00:00Z\",\n                \"end_at\": \"2019-06-04T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 04 Tu 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"J7d3igMbVB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"J7d3igMbVB\",\n                \"created_at\": \"2018-10-31T11:33:11Z\",\n                \"updated_at\": \"2018-10-31T11:33:11Z\",\n                \"start_at\": \"2019-06-03T00:00:00Z\",\n                \"end_at\": \"2019-06-03T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 03 Mo 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"2VX9iOjd7N\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"2VX9iOjd7N\",\n                \"created_at\": \"2018-10-31T11:33:11Z\",\n                \"updated_at\": \"2018-10-31T11:33:11Z\",\n                \"start_at\": \"2019-06-02T00:00:00Z\",\n                \"end_at\": \"2019-06-02T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 02 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DVA6ivYR7X\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DVA6ivYR7X\",\n                \"created_at\": \"2018-10-31T11:33:11Z\",\n                \"updated_at\": \"2018-10-31T11:33:11Z\",\n                \"start_at\": \"2019-06-01T00:00:00Z\",\n                \"end_at\": \"2019-06-01T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 01 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"wo7NbcKj7n\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"wo7NbcKj7n\",\n                \"created_at\": \"2018-10-23T01:23:57Z\",\n                \"updated_at\": \"2018-10-23T01:24:19Z\",\n                \"name\": {\n                    \"fr\": \"Rassemblement\"\n                }\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": \"https://publidata-staging.herokuapp.com/api/v2/event_types/wo7NbcKj7n\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"Wn7lQcrKxm\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"Wn7lQcrKxm\",\n                \"created_at\": \"2018-10-23T01:23:57Z\",\n                \"updated_at\": \"2018-10-23T01:24:19Z\",\n                \"name\": {\n                    \"fr\": \"Colloque\"\n                }\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": \"https://publidata-staging.herokuapp.com/api/v2/event_types/Wn7lQcrKxm\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        }\n    ]\n}"}],"_postman_id":"6880f99b-88e4-486b-ab0a-be576ea5d5a2"},{"name":"🚧 Show translated","id":"047b7e06-dbfe-4191-8f76-400407725b97","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id?lang=en","description":"<p>Le paramètre <code>lang</code> vous permet de récupérer les contenus éditoriaux d'une ressource dans une langue donnée.</p>\n","urlObject":{"path":["v2",":instance","events",":id"],"host":["https://api.publidata.io"],"query":[{"description":{"content":"<p>Langue désirée</p>\n","type":"text/plain"},"key":"lang","value":"en"}],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"047b7e06-dbfe-4191-8f76-400407725b97"},{"name":"🚧 Search","id":"d2f3a09f-4c2c-435a-b3fb-8fb76bd02575","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.publidata.io/v2/:instance/events/?q=Sénart&size=10&page=1&marker=false&instances[]=2&types[]=Event&performers[]=Nakht&facilities[]=8&events[]=1&event_groups[]=1&news[]=1&projects[]=1&cities[]=7&etablissement_publics[]=1&departments[]=1&regions[]=1&skills[]=1&elects[]=1&bbox[]&event_types[]=Oeuvre d'art&event_styles[]=Gymnastique&date[start]=1526054400&date[end]=1526083199&price[min]=10&price[max]=50&free_admission=true&accessibilities[]=has_deaf_accessibility","description":"<p>Recherche d'événements : 🚧 à venir... </p>\n","urlObject":{"path":["v2",":instance","events",""],"host":["https://api.publidata.io"],"query":[{"description":{"content":"<p>Filtre textuel</p>\n","type":"text/plain"},"key":"q","value":"Sénart"},{"description":{"content":"<p>Nombre de résultats retournés (defaut: 10)</p>\n","type":"text/plain"},"key":"size","value":"10"},{"description":{"content":"<p>Pagination (defaut: 1)</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>Filtre booléen pour ne retourner que les locations (default: false)</p>\n","type":"text/plain"},"key":"marker","value":"false"},{"description":{"content":"<p>Filtre par instance (array d'id)</p>\n","type":"text/plain"},"key":"instances[]","value":"2"},{"description":{"content":"<p>Filtre par type de ressource (array de type parmi la liste suivante : News Event Facility Project City Epci Department Region EventGroup Skill Elect Performer Company NonProfit EtablissementPublic)</p>\n","type":"text/plain"},"key":"types[]","value":"Event"},{"description":{"content":"<p>Filtre par artiste lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"performers[]","value":"Nakht"},{"description":{"content":"<p>Filtre par équipement lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"facilities[]","value":"8"},{"description":{"content":"<p>Filtre par événement lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"events[]","value":"1"},{"description":{"content":"<p>Filtre par groupe d'événements lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"event_groups[]","value":"1"},{"description":{"content":"<p>Filtre par actualité liée (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"news[]","value":"1"},{"description":{"content":"<p>Filtre par projet lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"projects[]","value":"1"},{"description":{"content":"<p>Filtre par ville et location liées (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"cities[]","value":"7"},{"description":{"content":"<p>Filtre par établissement public lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"etablissement_publics[]","value":"1"},{"description":{"content":"<p>Filtre par departement lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"departments[]","value":"1"},{"description":{"content":"<p>Filtre par region liée (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"regions[]","value":"1"},{"description":{"content":"<p>Filtre par compétence liée (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"skills[]","value":"1"},{"description":{"content":"<p>Filtre par élu lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"elects[]","value":"1"},{"description":{"content":"<p>Filtre géographique (array de latitudes, longitudes dans l'ordre suivant minX, minY, maxX, maxY)</p>\n","type":"text/plain"},"key":"bbox[]","value":null},{"description":{"content":"<p>Filtre par type d'événement (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"event_types[]","value":"Oeuvre d'art"},{"description":{"content":"<p>Filtre par style d'événement (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"event_styles[]","value":"Gymnastique"},{"description":{"content":"<p>Filtre par date/heure de début (timestamp en seconde)</p>\n","type":"text/plain"},"key":"date[start]","value":"1526054400"},{"description":{"content":"<p>Filtre par date/heure de fin (timestamp en seconde)</p>\n","type":"text/plain"},"key":"date[end]","value":"1526083199"},{"description":{"content":"<p>Filtre de prix minimum</p>\n","type":"text/plain"},"key":"price[min]","value":"10"},{"description":{"content":"<p>Filtre de prix maximum</p>\n","type":"text/plain"},"key":"price[max]","value":"50"},{"description":{"content":"<p>Filtre de gratuité (boolean)</p>\n","type":"text/plain"},"key":"free_admission","value":"true"},{"description":{"content":"<p>Filtre d'accessibilité (array de string)</p>\n","type":"text/plain"},"key":"accessibilities[]","value":"has_deaf_accessibility"}],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"}]}},"response":[{"id":"665f8af2-af73-4163-9767-4b85762f762b","name":"Search events","originalRequest":{"method":"GET","header":[],"url":{"raw":"www.publidata.io/api/v1/events?q=&options[geo][top_left][lat]=49.05965195372349&options[geo][top_left][lon]=2.1371613664061897&options[geo][bottom_right][lat]=48.21570798955211&options[geo][bottom_right][lon]=2.7688752335936897&options[city]=Combs-la-Ville&options[paging][from]=0&options[event_types][]=Concert&options[dates][start_date]=1521812100000&options[dates][end_date]=1522499700000&options[instances][]=2","host":["www","publidata","io"],"path":["api","v1","events"],"query":[{"key":"q","value":"","description":"Recherche (full-text)"},{"key":"options[geo][top_left][lat]","value":"49.05965195372349","description":"Latitude coin supérieur gauche geo-box (lat)"},{"key":"options[geo][top_left][lon]","value":"2.1371613664061897","description":"Longitude coin supérieur gauche geo-box (lon)"},{"key":"options[geo][bottom_right][lat]","value":"48.21570798955211","description":"Latitude coin inférieur droit geo-box (lat)"},{"key":"options[geo][bottom_right][lon]","value":"2.7688752335936897","description":"Longitude coin inférieur droit geo-box (lon)"},{"key":"options[city]","value":"Combs-la-Ville","description":"Ville (full-text ou code postal)"},{"key":"options[paging][from]","value":"0","description":"Début de la pagination (integer)"},{"key":"options[event_types][]","value":"Concert","description":"Types d'événement (array de string)"},{"key":"options[dates][start_date]","value":"1521812100000","description":"Date de début (format timestamp unix 1508267068688)"},{"key":"options[dates][end_date]","value":"1522499700000","description":"Date de fin (format timestamp unix 1539803068688)"},{"key":"options[instances][]","value":"2"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"took\": 11,\n    \"timed_out\": false,\n    \"_shards\": {\n        \"total\": 1,\n        \"successful\": 1,\n        \"failed\": 0\n    },\n    \"hits\": {\n        \"total\": 2,\n        \"max_score\": 0.9812665,\n        \"hits\": [\n            {\n                \"_index\": \"events\",\n                \"_type\": \"event\",\n                \"_id\": \"3241\",\n                \"_score\": 0.9812665,\n                \"_source\": {\n                    \"id\": 3241,\n                    \"name\": \"Concert des orchestres\",\n                    \"slug\": \"concert-des-orchestres\",\n                    \"status\": \"published\",\n                    \"free_admission\": true,\n                    \"start_date\": \"2018-03-23T00:00:00.000+01:00\",\n                    \"end_date\": \"2018-03-23T00:00:00.000+01:00\",\n                    \"punchline\": \"Le vendredi 23 mars 2018 à 20h au Théâtre de la Coupole, les musiciens du Conservatoire Maurice Ohana de Combs-la-ville vous attendent pour leur rendez-vous annuel...\",\n                    \"blurb\": \"Cette soirée donne la possibilité à plusieurs formations orchestrales du conservatoire Maurice Ohana de se produire sur scène. \\r\\n\\r\\nProgramme musical éclectique et varié, ce concert  permet de vivre la musique ensemble et de la partager sans modération avec le public.\",\n                    \"linked_objects\": [\n                        {\n                            \"id\": 180,\n                            \"type\": \"Facility\",\n                            \"name\": \"La Coupole\"\n                        },\n                        {\n                            \"id\": 12,\n                            \"type\": \"City\",\n                            \"name\": \"Combs-la-Ville\"\n                        }\n                    ],\n                    \"cover_picture\": {\n                        \"id\": 22632,\n                        \"name\": \"image de couverture de Concert des orchestres\",\n                        \"alt\": \"image de couverture de Concert des orchestres\",\n                        \"description\": \"image de couverture de Concert des orchestres\",\n                        \"slug\": null,\n                        \"image_urls_as_json\": {\n                            \"image_original_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/632/original/open-uri20171002-4-1etqlbo?1506962457\",\n                            \"image_small_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/632/image_small/open-uri20171002-4-1etqlbo?1506962457\",\n                            \"image_medium_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/632/image_medium/open-uri20171002-4-1etqlbo?1506962457\",\n                            \"image_large_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/632/image_large/open-uri20171002-4-1etqlbo?1506962457\"\n                        }\n                    },\n                    \"instances\": [\n                        {\n                            \"id\": 2,\n                            \"slug\": \"portail-sortir-gps\"\n                        }\n                    ],\n                    \"event_type\": {\n                        \"id\": 13,\n                        \"name\": \"Concert\"\n                    },\n                    \"event_styles\": [\n                        {\n                            \"id\": 82,\n                            \"name\": \"World Music\"\n                        }\n                    ],\n                    \"event_dates\": [\n                        {\n                            \"id\": 37799,\n                            \"start_hour\": \"2000-01-01T20:00:00.000Z\",\n                            \"end_hour\": \"2000-01-01T22:00:00.000Z\",\n                            \"date\": \"2018-03-23T00:00:00.000+01:00\",\n                            \"sold_out\": false,\n                            \"start_date\": \"2018-03-23T20:00:00.000+00:00\",\n                            \"end_date\": \"2018-03-23T22:00:00.000+00:00\"\n                        }\n                    ],\n                    \"facilities\": [\n                        {\n                            \"id\": 180,\n                            \"name\": \"La Coupole\",\n                            \"slug\": \"la-coupole\",\n                            \"address\": \"Rue Jean François Millet, 77380 Combs-la-Ville, France\",\n                            \"location\": {\n                                \"lat\": 48.659695,\n                                \"lon\": 2.5662415\n                            }\n                        }\n                    ],\n                    \"locations\": [],\n                    \"fees\": [],\n                    \"tags\": [],\n                    \"pages\": [\n                        {\n                            \"id\": 7659,\n                            \"instance\": {\n                                \"id\": 2,\n                                \"slug\": \"portail-sortir-gps\"\n                            }\n                        }\n                    ]\n                }\n            },\n            {\n                \"_index\": \"events\",\n                \"_type\": \"event\",\n                \"_id\": \"3983\",\n                \"_score\": 0.9794048,\n                \"_source\": {\n                    \"id\": 3983,\n                    \"name\": \"Après-midi musicale: Claude Debussy\",\n                    \"slug\": \"apres-midi-musicale-claude-debussy\",\n                    \"status\": \"published\",\n                    \"free_admission\": true,\n                    \"start_date\": \"2018-03-24T00:00:00.000+01:00\",\n                    \"end_date\": \"2018-03-24T00:00:00.000+01:00\",\n                    \"punchline\": \"A l'occasion du centenaire de la mort de Claude Debussy, la media-ludothèque et le conservatoire Maurice Ohana vous invitent à une après-midi musical, le samedi 24 mars à partir de 15h30.\",\n                    \"blurb\": \"Claude Debussy (1862-1918) était un compositeur français. Pour célébrer son centenaire, nous vous invitons à un après-midi musical. Au programme, une conférence par Bruno Giner sur le compositeur à 15h30. \\r\\nPuis, à 18h, les élèves du conservatoire interpréteront une sélection d’œuvres de Claude Debussy.\",\n                    \"linked_objects\": [\n                        {\n                            \"id\": 42,\n                            \"type\": \"Facility\",\n                            \"name\": \"Médiathèque de Combs-la-Ville\"\n                        },\n                        {\n                            \"id\": 12,\n                            \"type\": \"City\",\n                            \"name\": \"Combs-la-Ville\"\n                        }\n                    ],\n                    \"cover_picture\": {\n                        \"id\": 24665,\n                        \"name\": \"image de couverture de Après-midi musicale: Claude Debussy\",\n                        \"alt\": \"image de couverture de Après-midi musicale: Claude Debussy\",\n                        \"description\": \"image de couverture de Après-midi musicale: Claude Debussy\",\n                        \"slug\": null,\n                        \"image_urls_as_json\": {\n                            \"image_original_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/665/original/Photo_23a_Claude_Debussy.jpg?1516441408\",\n                            \"image_small_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/665/image_small/Photo_23a_Claude_Debussy.jpg?1516441408\",\n                            \"image_medium_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/665/image_medium/Photo_23a_Claude_Debussy.jpg?1516441408\",\n                            \"image_large_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/665/image_large/Photo_23a_Claude_Debussy.jpg?1516441408\"\n                        }\n                    },\n                    \"instances\": [\n                        {\n                            \"id\": 2,\n                            \"slug\": \"portail-sortir-gps\"\n                        }\n                    ],\n                    \"event_type\": {\n                        \"id\": 13,\n                        \"name\": \"Concert\"\n                    },\n                    \"event_styles\": [\n                        {\n                            \"id\": 111,\n                            \"name\": \"Musique Classique\"\n                        }\n                    ],\n                    \"event_dates\": [\n                        {\n                            \"id\": 41100,\n                            \"start_hour\": \"2000-01-01T15:30:00.000Z\",\n                            \"end_hour\": \"2000-01-01T19:30:00.000Z\",\n                            \"date\": \"2018-03-24T00:00:00.000+01:00\",\n                            \"sold_out\": false,\n                            \"start_date\": \"2018-03-24T15:30:00.000+00:00\",\n                            \"end_date\": \"2018-03-24T19:30:00.000+00:00\"\n                        }\n                    ],\n                    \"facilities\": [\n                        {\n                            \"id\": 42,\n                            \"name\": \"Médiathèque de Combs-la-Ville\",\n                            \"slug\": \"mediatheque-de-combs-la-ville\",\n                            \"address\": \"Rue Jean François Millet, 77380 Combs-la-Ville, France\",\n                            \"location\": {\n                                \"lat\": 48.659695,\n                                \"lon\": 2.5662415\n                            }\n                        }\n                    ],\n                    \"locations\": [],\n                    \"fees\": [],\n                    \"accessibility\": {\n                        \"id\": 1766,\n                        \"deaf_lsf\": false,\n                        \"deaf_vision_based\": false,\n                        \"deaf_subtitle\": false,\n                        \"deaf_hearing_loop\": false,\n                        \"blind_audio_description\": false,\n                        \"blind_darkness_based\": false,\n                        \"blind_text_based\": false,\n                        \"blind_braille\": false,\n                        \"blind_large_print\": false,\n                        \"motor_disabled_access\": true,\n                        \"has_accessibility\": true,\n                        \"has_deaf_accessibility\": false,\n                        \"has_blind_accessibility\": false\n                    },\n                    \"tags\": [\n                        \"Culture\"\n                    ],\n                    \"pages\": [\n                        {\n                            \"id\": 8636,\n                            \"instance\": {\n                                \"id\": 2,\n                                \"slug\": \"portail-sortir-gps\"\n                            }\n                        }\n                    ]\n                }\n            }\n        ]\n    },\n    \"aggregations\": {\n        \"event_styles_terms_agg\": {\n            \"doc_count\": 2,\n            \"name\": {\n                \"doc_count_error_upper_bound\": 0,\n                \"sum_other_doc_count\": 0,\n                \"buckets\": [\n                    {\n                        \"key\": \"111\",\n                        \"doc_count\": 1,\n                        \"name\": {\n                            \"doc_count_error_upper_bound\": 0,\n                            \"sum_other_doc_count\": 0,\n                            \"buckets\": [\n                                {\n                                    \"key\": \"classique\",\n                                    \"doc_count\": 1\n                                },\n                                {\n                                    \"key\": \"musique\",\n                                    \"doc_count\": 1\n                                }\n                            ]\n                        }\n                    },\n                    {\n                        \"key\": \"82\",\n                        \"doc_count\": 1,\n                        \"name\": {\n                            \"doc_count_error_upper_bound\": 0,\n                            \"sum_other_doc_count\": 0,\n                            \"buckets\": [\n                                {\n                                    \"key\": \"music\",\n                                    \"doc_count\": 1\n                                },\n                                {\n                                    \"key\": \"world\",\n                                    \"doc_count\": 1\n                                }\n                            ]\n                        }\n                    }\n                ]\n            }\n        },\n        \"events\": {\n            \"doc_count\": 3838,\n            \"dates\": {\n                \"doc_count\": 11064,\n                \"this_month\": {\n                    \"doc_count\": 737,\n                    \"events\": {\n                        \"doc_count\": 278\n                    }\n                },\n                \"this_week_end\": {\n                    \"doc_count\": 81,\n                    \"events\": {\n                        \"doc_count\": 54\n                    }\n                },\n                \"past\": {\n                    \"doc_count\": 10070,\n                    \"events\": {\n                        \"doc_count\": 3132\n                    }\n                },\n                \"today\": {\n                    \"doc_count\": 34,\n                    \"events\": {\n                        \"doc_count\": 28\n                    }\n                },\n                \"tomorrow\": {\n                    \"doc_count\": 22,\n                    \"events\": {\n                        \"doc_count\": 19\n                    }\n                },\n                \"last_days\": {\n                    \"doc_count\": 133,\n                    \"events\": {\n                        \"doc_count\": 75\n                    }\n                },\n                \"upcoming\": {\n                    \"doc_count\": 1028,\n                    \"events\": {\n                        \"doc_count\": 390\n                    }\n                },\n                \"this_week\": {\n                    \"doc_count\": 197,\n                    \"events\": {\n                        \"doc_count\": 96\n                    }\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"d2f3a09f-4c2c-435a-b3fb-8fb76bd02575"}],"id":"c05ba342-a509-4f83-a0d3-84fcfeb13a5f","_postman_id":"c05ba342-a509-4f83-a0d3-84fcfeb13a5f","description":""},{"name":"Ressources liées","item":[{"name":"✅ Types","id":"efd9d6cc-6365-4933-a56f-9cfd00a4d566","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/types","description":"<p>Type(s) de la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","types"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[{"id":"be5f3cc4-5085-469e-a4b4-85425cea8f23","name":"✅ Types","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.publidata.io/v2/:instance/events/:id/types","host":["https://api.publidata.io"],"path":["v2",":instance","events",":id","types"],"variable":[{"key":"instance","value":"500-ans-renaissances"},{"key":"id","value":"y7KpS6Dgxv"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Tue, 06 Nov 2018 14:56:10 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"aca7a58992ce54decfd0aa1309558bf9\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"d9a108a9-5d7c-486f-9b8f-620b97ceecb4"},{"key":"X-Runtime","value":"0.137086"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"wo7NbcKj7n\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"wo7NbcKj7n\",\n                \"created_at\": \"2018-10-23T01:23:57Z\",\n                \"updated_at\": \"2018-10-23T01:24:19Z\",\n                \"name\": {\n                    \"fr\": \"Rassemblement\"\n                }\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": \"https://publidata-staging.herokuapp.com/api/v2/event_types/wo7NbcKj7n\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"Wn7lQcrKxm\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"Wn7lQcrKxm\",\n                \"created_at\": \"2018-10-23T01:23:57Z\",\n                \"updated_at\": \"2018-10-23T01:24:19Z\",\n                \"name\": {\n                    \"fr\": \"Colloque\"\n                }\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": \"https://publidata-staging.herokuapp.com/api/v2/event_types/Wn7lQcrKxm\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        }\n    ],\n    \"meta\": {\n        \"items\": 2,\n        \"count\": 2,\n        \"page\": 1\n    },\n    \"links\": {\n        \"self\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/types?page=1\",\n        \"pagination\": {\n            \"first\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/types?page=1\",\n            \"last\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/types?page=1\"\n        }\n    }\n}"}],"_postman_id":"efd9d6cc-6365-4933-a56f-9cfd00a4d566"},{"name":"🚧 Themes","id":"17d25aa1-e352-412d-90a0-46e5d7f85ef4","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/themes","description":"<p>Thème(s) associé(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","themes"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"17d25aa1-e352-412d-90a0-46e5d7f85ef4"},{"name":"✅ Dates","id":"d324cc75-9f76-4853-b2ea-ad6a936d337b","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/dates","description":"<p>Date(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","dates"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[{"id":"27a1494d-3351-4314-be9a-6b5296f703ca","name":"✅ Dates","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.publidata.io/v2/:instance/events/:id/dates","host":["https://api.publidata.io"],"path":["v2",":instance","events",":id","dates"],"variable":[{"key":"instance","value":"500-ans-renaissances"},{"key":"id","value":"y7KpS6Dgxv"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Tue, 06 Nov 2018 14:57:37 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"5019bf7102c4e9c481afd4dc20c410e1\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"5b74b321-cdd9-461b-a32e-4263c646d08b"},{"key":"X-Runtime","value":"0.316049"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"DVA6ivYR7X\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DVA6ivYR7X\",\n                \"created_at\": \"2018-10-31T11:33:11Z\",\n                \"updated_at\": \"2018-10-31T11:33:11Z\",\n                \"start_at\": \"2019-06-01T00:00:00Z\",\n                \"end_at\": \"2019-06-01T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 01 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"2VX9iOjd7N\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"2VX9iOjd7N\",\n                \"created_at\": \"2018-10-31T11:33:11Z\",\n                \"updated_at\": \"2018-10-31T11:33:11Z\",\n                \"start_at\": \"2019-06-02T00:00:00Z\",\n                \"end_at\": \"2019-06-02T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 02 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"J7d3igMbVB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"J7d3igMbVB\",\n                \"created_at\": \"2018-10-31T11:33:11Z\",\n                \"updated_at\": \"2018-10-31T11:33:11Z\",\n                \"start_at\": \"2019-06-03T00:00:00Z\",\n                \"end_at\": \"2019-06-03T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 03 Mo 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"jVJvi2nXVR\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"jVJvi2nXVR\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-04T00:00:00Z\",\n                \"end_at\": \"2019-06-04T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 04 Tu 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"G7jaiXOAVg\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"G7jaiXOAVg\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-05T00:00:00Z\",\n                \"end_at\": \"2019-06-05T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 05 We 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DLkqijM67a\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DLkqijM67a\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-06T00:00:00Z\",\n                \"end_at\": \"2019-06-06T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 06 Th 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"d7DzidZmLB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"d7DzidZmLB\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-07T00:00:00Z\",\n                \"end_at\": \"2019-06-07T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 07 Fr 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"y7KAiEOMLv\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"y7KAiEOMLv\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-08T00:00:00Z\",\n                \"end_at\": \"2019-06-08T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 08 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"Kx09iEraLX\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"Kx09iEraLX\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-09T00:00:00Z\",\n                \"end_at\": \"2019-06-09T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 09 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"Q7BaiA1AVb\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"Q7BaiA1AVb\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-10T00:00:00Z\",\n                \"end_at\": \"2019-06-10T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 10 Mo 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"NLwjibKKxD\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"NLwjibKKxD\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-11T00:00:00Z\",\n                \"end_at\": \"2019-06-11T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 11 Tu 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"D744i3N078\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"D744i3N078\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-12T00:00:00Z\",\n                \"end_at\": \"2019-06-12T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 12 We 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"8VvJieDWVv\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"8VvJieDWVv\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-13T00:00:00Z\",\n                \"end_at\": \"2019-06-13T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 13 Th 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DVA6ivYn7X\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DVA6ivYn7X\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-14T00:00:00Z\",\n                \"end_at\": \"2019-06-14T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 14 Fr 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"2VX9iOjl7N\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"2VX9iOjl7N\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-15T00:00:00Z\",\n                \"end_at\": \"2019-06-15T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 15 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"J7d3igMRVB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"J7d3igMRVB\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-16T00:00:00Z\",\n                \"end_at\": \"2019-06-16T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 16 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"jVJvi2nyVR\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"jVJvi2nyVR\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-17T00:00:00Z\",\n                \"end_at\": \"2019-06-17T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 17 Mo 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"G7jaiXOoVg\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"G7jaiXOoVg\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-18T00:00:00Z\",\n                \"end_at\": \"2019-06-18T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 18 Tu 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DLkqijMy7a\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DLkqijMy7a\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-19T00:00:00Z\",\n                \"end_at\": \"2019-06-19T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 19 We 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"d7DzidZMLB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"d7DzidZMLB\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-20T00:00:00Z\",\n                \"end_at\": \"2019-06-20T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 20 Th 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        }\n    ],\n    \"meta\": {\n        \"items\": 20,\n        \"count\": 30,\n        \"page\": 1\n    },\n    \"links\": {\n        \"self\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates?page=1\",\n        \"pagination\": {\n            \"first\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates?page=1\",\n            \"next\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates?page=2\",\n            \"last\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates?page=2\"\n        }\n    }\n}"}],"_postman_id":"d324cc75-9f76-4853-b2ea-ad6a936d337b"},{"name":"🚧 Tickets","id":"4bc33429-5177-4c49-893f-14d90406c02e","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/tickets","description":"<p>Billetterie(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","tickets"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"4bc33429-5177-4c49-893f-14d90406c02e"},{"name":"🚧 Fees","id":"a23e51d2-24f1-4a40-b925-40fa0401ec70","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/fees","description":"<p>Prix lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","fees"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"a23e51d2-24f1-4a40-b925-40fa0401ec70"},{"name":"🚧 Contacts","id":"1337c6d0-9730-440c-9686-cb09af84b1fe","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/contacts","description":"<p>Information(s) de contact liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","contacts"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"1337c6d0-9730-440c-9686-cb09af84b1fe"},{"name":"🚧 Socials","id":"aa7d8bed-e09c-46f6-9784-b4415bd080fb","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/socials","description":"<p>Information(s) sociale(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","socials"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"aa7d8bed-e09c-46f6-9784-b4415bd080fb"},{"name":"🚧 Public","id":"470cb9e4-9f01-4558-9c43-626f29408ad5","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/public","description":"<p>Public associé à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","public"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"470cb9e4-9f01-4558-9c43-626f29408ad5"},{"name":"🚧 Accessibility","id":"baf314ec-4693-48d5-bce8-51edbca03548","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/accessibility","description":"<p>Information(s) d'accessibilité liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","accessibility"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"baf314ec-4693-48d5-bce8-51edbca03548"},{"name":"🚧 Partners","id":"3acdf1b0-9824-4f4c-a17a-9bd960eaf6d2","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/partners","description":"<p>Partenaire(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","partners"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"3acdf1b0-9824-4f4c-a17a-9bd960eaf6d2"},{"name":"🚧 Instances","id":"dcaa1ea2-102e-4c40-9686-e3281ca7b9a8","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/instances","description":"<p>Instance(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","instances"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"dcaa1ea2-102e-4c40-9686-e3281ca7b9a8"},{"name":"🚧 Pages","id":"0b9465f8-ec2f-44dc-b682-9650f53c9876","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/skills","description":"<p>Page(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","skills"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"0b9465f8-ec2f-44dc-b682-9650f53c9876"},{"name":"🚧 Contributors","id":"28afad79-c1e2-4734-a447-ba322fefa696","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/contributors","description":"<p>Contributeur(s) / mainteneur(s) de la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","contributors"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"28afad79-c1e2-4734-a447-ba322fefa696"}],"id":"547acda6-7bc2-4855-aef6-f2889a707133","_postman_id":"547acda6-7bc2-4855-aef6-f2889a707133","description":""},{"name":"Relations","item":[{"name":"🚧 Relations","id":"20dbe1ae-51f8-4f9f-8184-15d36757839f","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/themes","description":"<p>Ressource(s) associée(s) à ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","themes"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"20dbe1ae-51f8-4f9f-8184-15d36757839f"},{"name":"🚧 Facilities","id":"254541be-8570-49d0-8b61-fa632035a157","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/facilities","description":"<p>Équipement(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","facilities"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"254541be-8570-49d0-8b61-fa632035a157"},{"name":"🚧 Cities","id":"07c0ffd9-072e-4244-945e-7b6f82d68780","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/cities","description":"<p>Commune(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","cities"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"07c0ffd9-072e-4244-945e-7b6f82d68780"},{"name":"🚧 Departments","id":"c6204a67-3fce-4838-bdda-e4b628fbe139","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/departments","description":"<p>Départements(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","departments"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"c6204a67-3fce-4838-bdda-e4b628fbe139"},{"name":"🚧 Regions","id":"038871d6-2447-4f41-9551-6e7fa3b9e791","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/regions","description":"<p>Région(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","regions"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"038871d6-2447-4f41-9551-6e7fa3b9e791"},{"name":"🚧 News","id":"ec4f6e6e-8a4b-4433-a027-f2da0a0a2455","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/news","description":"<p>Actualité(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","news"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"ec4f6e6e-8a4b-4433-a027-f2da0a0a2455"},{"name":"✅ Events","id":"0cd0e7ea-9d74-4275-b676-7c146b99e466","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/events","description":"<p>Événement(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","events"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"0cd0e7ea-9d74-4275-b676-7c146b99e466"},{"name":"🚧 EventGroups","id":"73fd680f-a785-4257-8a6a-bb18d829265f","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/event_groups","description":"<p>Groupe(s) d'événement(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","event_groups"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"73fd680f-a785-4257-8a6a-bb18d829265f"},{"name":"🚧 Projects","id":"f9f35fa8-3acd-4e74-80db-0ca447efda91","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/projects","description":"<p>Projet(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","projects"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"f9f35fa8-3acd-4e74-80db-0ca447efda91"},{"name":"🚧 Performers","id":"8edd0a74-be37-4cf2-b5be-03893dd61ea4","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/performers","description":"<p>Artiste(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","performers"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"8edd0a74-be37-4cf2-b5be-03893dd61ea4"},{"name":"🚧 Companies","id":"0b1e1b1a-ab75-47e9-9555-d12de14ab779","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/companies","description":"<p>Entreprise(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","companies"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"0b1e1b1a-ab75-47e9-9555-d12de14ab779"},{"name":"🚧 NonProfits","id":"5cf54f39-beed-4c59-8e9b-1c0812fdc657","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/non_profits","description":"<p>Associations(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","non_profits"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"5cf54f39-beed-4c59-8e9b-1c0812fdc657"},{"name":"🚧 EtablissementPublics","id":"002d7903-eadc-494f-9b4a-273abdc14afb","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/etablissement_publics","description":"<p>Établissement(s) public(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","etablissement_publics"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"002d7903-eadc-494f-9b4a-273abdc14afb"},{"name":"🚧 Skills","id":"ccd1d039-e570-47f8-92dd-146d510eceaa","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/skills","description":"<p>Compétence(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","skills"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"ccd1d039-e570-47f8-92dd-146d510eceaa"},{"name":"🚧 Elects","id":"57788859-6e47-4f23-a392-df59ca68c287","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/elects","description":"<p>Élus(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","elects"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"57788859-6e47-4f23-a392-df59ca68c287"}],"id":"ab45dca0-8b08-4718-b551-38bb86f6a4f4","description":"<p>A venir... 🚧</p>\n","event":[{"listen":"prerequest","script":{"id":"487c0f48-a1cd-4aae-af2f-4b62ccf8bb0b","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"4dfafa06-8884-4b36-9c42-31cba1746986","type":"text/javascript","exec":[""]}}],"_postman_id":"ab45dca0-8b08-4718-b551-38bb86f6a4f4"},{"name":"Médias","item":[{"name":"🚧 Medias","id":"42850094-293f-453a-8d52-07386bb33204","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/medias","description":"<p>Média(s) associé(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","medias"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"42850094-293f-453a-8d52-07386bb33204"},{"name":"✅ Images","id":"3b6a8101-8a29-430a-a4eb-2a09fbbbaadd","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/images","description":"<p>Image(s) associée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","images"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"3b6a8101-8a29-430a-a4eb-2a09fbbbaadd"},{"name":"✅ Documents","id":"448f3376-f84d-4c6e-9949-bcfd558e9b72","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/documents","description":"<p>Document(s) associé(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","documents"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"448f3376-f84d-4c6e-9949-bcfd558e9b72"}],"id":"62424ffa-90a3-4188-933f-fa38f29f43f5","_postman_id":"62424ffa-90a3-4188-933f-fa38f29f43f5","description":""}],"id":"04de3f9b-bbaf-4d16-b383-fa62067b012d","description":"<p>Les événements</p>\n","event":[{"listen":"prerequest","script":{"id":"768578b7-1e5d-45b7-ab56-2a8b856f2061","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"a419bb76-510b-4b2b-bc5d-608de7e9b0d3","type":"text/javascript","exec":[""]}}],"_postman_id":"04de3f9b-bbaf-4d16-b383-fa62067b012d"},{"name":"🚧 Artistes","item":[{"name":"Endpoints principaux","item":[{"name":"✅ Index","id":"fae3eac8-16bf-4423-a4f3-91b379334d7b","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events","description":"<p>Liste des événements</p>\n","urlObject":{"path":["v2",":instance","events"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"}]}},"response":[{"id":"c8401a1b-bf68-4baf-9481-058f3805dff7","name":"✅ Index","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.publidata.io/v2/:instance/events","host":["https://api.publidata.io"],"path":["v2",":instance","events"],"variable":[{"key":"instance","value":"500-ans-renaissances"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Tue, 06 Nov 2018 14:35:32 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"e272b80759b3239cb223ac313ead9d8a\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"ef157796-c377-4ab4-b340-25fe123f51d3"},{"key":"X-Runtime","value":"0.211831"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"J7dASjXPxB\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"J7dASjXPxB\",\n                \"created_at\": \"2018-11-02T13:36:24Z\",\n                \"updated_at\": \"2018-11-06T14:11:43Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {\n                    \"fr\": \"La 28e édition du Festival International des Jardins abordera un thème cher à la Renaissance.\"\n                },\n                \"name\": {\n                    \"fr\": \"Festival International des Jardins de Chaumont-sur-Loire\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"medium-insert-active\\\"><br></p>\"\n                },\n                \"start_at\": \"2019-04-25T10:00:00Z\",\n                \"end_at\": \"2019-11-03T19:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"y7KpS6Dgxv\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"y7KpS6Dgxv\",\n                \"created_at\": \"2018-10-31T11:26:32Z\",\n                \"updated_at\": \"2018-11-06T10:56:29Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {\n                    \"fr\": \"62eme Colloque International d'études humanistes du centre d'études supérieures de la Renaissance\"\n                },\n                \"name\": {\n                    \"fr\": \"Léonard de Vinci création et innovations \"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"is-active\\\">Le 62ème colloque international d’études humanistes du Centre d’études supérieures de la Renaissance de Tours sera consacré à Léonard de Vinci en 2019.&nbsp;</p><p class=\\\"is-active\\\">Cet événement rassemblera les plus grands spécialistes internationaux du sujet et proposera d’aborder toutes les facettes de l’oeuvre de Léonard sous le prisme de l’invention et de l’innovation : mécanique, médecine, architecture, biomimétisme, etc. Une partie de ce colloque se tiendra dans des lieux marqués par la figure de Léonard de Vinci : le Château du Clos Lucé à Amboise et le Château de Chambord.</p>\"\n                },\n                \"start_at\": \"2019-06-01T00:00:00Z\",\n                \"end_at\": \"2019-06-30T00:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"G7j3SNKzxg\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"G7j3SNKzxg\",\n                \"created_at\": \"2018-10-31T09:20:00Z\",\n                \"updated_at\": \"2018-11-06T10:56:29Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {},\n                \"name\": {\n                    \"fr\": \"Les Borgia à Chinon\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"\\\">La Forteresse royale de Chinon, proposera une reconstitution historique de la venue de César Borgia, fils du pape Alexandre VI pour rencontrer le roi de France à Chinon en 1498 . Reconstitution (cortège équestre). Démonstrations de Calcio Storico (sport florentin de la Renaissance, ancêtre du football actuel…). Dégustations de mets et recettes de la Renaissance florentine. Danses et musiques Renaissance.<br></p>\"\n                },\n                \"start_at\": \"2019-07-21T00:00:00Z\",\n                \"end_at\": \"2019-07-21T00:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"jVJbSWMWVR\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"jVJbSWMWVR\",\n                \"created_at\": \"2018-10-31T08:54:32Z\",\n                \"updated_at\": \"2018-11-06T10:56:28Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {},\n                \"name\": {\n                    \"fr\": \"La renaissance en Val de Loire, en France et en Europe - Festival du film français renaissance\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p>Pour la 21ème édition des Rendez- vous de l’Histoire, le Centre d’Études Supérieures de la Renaissance sera fortement impliqué dans une programmation spécifique « La Renaissance en Val de Loire, en France et en Europe ». Dans le cadre du festival du film français « Renaissance », seront projetés des films historiques accompagnés de moments de réflexion (débats, conférences et ateliers) mettant en perspective la création cinématographique au regard de l’histoire de la peinture historiciste.<br></p>\"\n                },\n                \"start_at\": \"2019-10-01T00:00:00Z\",\n                \"end_at\": \"2019-10-31T00:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"J7dASjXwxB\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"J7dASjXwxB\",\n                \"created_at\": \"2018-10-31T08:42:55Z\",\n                \"updated_at\": \"2018-11-06T10:56:28Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {\n                    \"fr\": \"Parcours numérique, sonore et interactif\"\n                },\n                \"name\": {\n                    \"fr\": \"Renaissance comme Rabelais\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<h3>Parcours numérique, sonore et interactif combinant des moyens techniques innovants capables d’allier  géographie littéraire et géographie réelle. Création d’un parcours sonore géolocalisé à partir d’une application mobile entre La Devinière, maison natale de Rabelais, et l’Abbaye de Seuilly.<br></h3>\"\n                },\n                \"start_at\": \"2019-07-01T00:00:00Z\",\n                \"end_at\": \"2019-10-31T00:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"DVAWS3NQxX\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"DVAWS3NQxX\",\n                \"created_at\": \"2018-10-31T08:34:25Z\",\n                \"updated_at\": \"2018-11-06T10:56:28Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {},\n                \"name\": {\n                    \"fr\": \"Spectacle numérique itinérant Renaissance(S)\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p>Ce spectacle numérique invite le public à s’immerger par le biais des dernières technologies dans un environnement visuel et sonore en plusieurs dimensions. Diverses technologies, de réalité augmentée ou de réalité virtuelle peuvent être détournées par le biais d’une immersion sensori-motrice grâce à une ou plusieurs interfaces visuelles. Ce spectacle proposera une narration dans l’esprit humaniste et novateur de la Renaissance.</p><p>Il évoquera les dimensions créatives, anticipatrices, pluridisciplinaires de Léonard de Vinci, les acteurs, oeuvres, sites patrimoniaux et culturels majeurs du territoire à la Renaissance, le Centre-Val de Loire aujourd’hui et sa projection dans le futur.</p>\"\n                },\n                \"start_at\": \"2019-08-15T19:00:00Z\",\n                \"end_at\": \"2019-09-15T23:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"8VvZS1y0Vv\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"8VvZS1y0Vv\",\n                \"created_at\": \"2018-10-31T08:29:42Z\",\n                \"updated_at\": \"2018-11-06T10:56:28Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {},\n                \"name\": {\n                    \"fr\": \"Magnificences à la cour de France\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"is-active\\\">Ce spectacle de l’ensemble Doulce Mémoire, recrée l’univers d’une fête à la cour de François I<sup>er</sup>, autour de 1515, celles qui virent l’arrivée en France de Léonard de Vinci à l’invitation du roi français. Peintre, inventeur de génie, Léonard était aussi organisateur de fêtes fameuses, dont l’inventivité et la puissance créatrice étaient appréciées les puissants.<br></p>\"\n                },\n                \"start_at\": \"2019-07-23T19:00:00Z\",\n                \"end_at\": \"2019-07-23T23:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"NLwlSvmaVD\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"NLwlSvmaVD\",\n                \"created_at\": \"2018-10-30T16:51:07Z\",\n                \"updated_at\": \"2018-11-06T10:56:27Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {\n                    \"fr\": \"Exposition regroupant des artistes contemporains influencés par Léonard de Vinci et la Renaissance.\"\n                },\n                \"name\": {\n                    \"fr\": \"Hommage contemporain à la Renaissance\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"is-active\\\">Exposition d’artistes contemporains ayant été influencés par Léonard de Vinci et la Renaissance, sur l’exemple de Fabien Merelle, établi à Tours et travaillant sur la scène internationale.&nbsp;</p><p class=\\\"is-active\\\">L’exposition « Hommage à Léonard » transpose dans l’art contemporain l’héritage du maître du Cinquecento mort en Val de Loire il y a 500 ans. Vaste cabinet de curiosités, l’exposition présentée dans les salles historiques du château fait écho au système de pensée&nbsp;<span style=\\\"font-size: 1em; font-family: ProximaNova, Helvetica, Arial, &quot;Sans Serif&quot;;\\\">du Maitre, génie polyvalent où la réalisation ne constitue pas la fin mais le moyen de la réflexion. Conçue comme une sorte de « mise en curiosité » envers les différents apports de Léonard, homme d’esprit universel à l’histoire des arts en Europe, interprétés ou prolongés par différents artistes de notre temps travaillant sur la scène internationale ; l’exposition montre aussi que les échanges entre Italie et France vers 1500, l’italianisme dans les&nbsp;</span><span style=\\\"font-size: 1em; font-family: ProximaNova, Helvetica, Arial, &quot;Sans Serif&quot;;\\\">arts amorcé sous Charles VIII et Louis XII se perpétuent de nos jours, avec les travaux des artistes florentines Antonella Bussanich, Alessandra Capodacqua et Alessandra Ragionier. Comme dans les chapitres d’un livre, chaque salle illustre l’un des thèmes étudiés par Léonard. L’autoportrait / Le portrait / La peinture d’histoire /&nbsp;</span><span style=\\\"font-size: 1em; font-family: ProximaNova, Helvetica, Arial, &quot;Sans Serif&quot;;\\\">Le Paysage / Le codex / La nature morte / Le Portrait féminin / Le Drapé.</span></p>\"\n                },\n                \"start_at\": \"2019-04-01T10:00:00Z\",\n                \"end_at\": \"2019-11-30T18:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"8VOeS416xY\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"8VOeS416xY\",\n                \"created_at\": \"2018-10-29T16:47:42Z\",\n                \"updated_at\": \"2018-11-06T10:56:30Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {\n                    \"fr\": \"Dans le cadre de l'anniversaire des 500ans de la Renaissance, l'artiste Ravo revisite l'oeuvre de François-Guillaume Ménageot \\\"La mort de Léonard de Vinci\\\"\"\n                },\n                \"name\": {\n                    \"fr\": \"Ravo Mattoni invité du Château Royal d' Amboise\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"\\\">Andrea Mattoni alias <b>RAVO</b>, artiste-graffeur italien de son état, a débuté en 2016 un ambitieux projet visant à reproduire, in situ et en très grand format, des chefs-d’œuvre de la peinture classique signés du Caravage, de Delacroix, de Delatour… Profondeur des couleurs, puissance des lignes et de l’échelle, l’hommage de RAVO aux grands maîtres est d’une modernité réjouissante… Le résultat est bluffant.</p><p class=\\\"\\\">De manière à prolonger l’exposition « La Mort de Léonard de Vinci : la construction d’un mythe » préparée avec la BNF, le château royal d’Amboise a demandé à RAVO de réaliser 5 toiles de grandes dimensions (4.5m X 3m). Celles-ci prendront pour sujet des détails du monumental tableau de François-Guillaume Ménageot « La Mort de Léonard de Vinci », et trouveront place sur les murs de la tour cavalière des Minimes, du 2 mai au 2 septembre 2019. Pour honorer cette commande, l’artiste sera en résidence au château royal d’Amboise durant une dizaine de jours, en avril 2019. Il réalisera ses peintures en public.</p><p class=\\\"\\\">Cette exposition est organisée avec le concours de l’association des Ateliers de l’Etoile.</p><p class=\\\"\\\"><span style=\\\"font-size: 1em; font-family: ProximaNova, Helvetica, Arial, &quot;Sans Serif&quot;;\\\"><b>\\\"Exposition « La Mort de Léonard de Vinci : la construction d’un mythe » - Partenariat BNF (Bibliothèque Nationale de France)</b></span><br></p><p class=\\\"\\\">Tous les jours, du 2 mai au 2 septembre 2019.</p><p class=\\\"\\\">La grande exposition intitulée « La Mort de Léonard de Vinci : la construction d’un mythe », articulée autour du monumental tableau (280 cm X 357 cm) de François-Guillaume Ménageot La mort de Léonard de Vinci, et d’une collection de gravures issues des collections nationales, nous éclairera sur la manière dont les contours de l’amitié entre le roi François Ier et Léonard ont été progressivement réécrits par l’Histoire, et assimilés par elle jusqu’à la construction d’un mythe mis au service de l’image de la monarchie française au XVIII<sup>ème</sup> siècle.</p><p>Au cœur de la riche programmation des célébrations du 5ème centenaire, cette exposition majeure viendra aussi rappeler à un public venu des quatre coins du monde la place éternelle qu’occupe Léonard de Vinci en Val de Loire, et à Amboise en particulier où il repose pour l’éternité dans la quiétude de la chapelle du château.\\\"</p>\"\n                },\n                \"start_at\": \"2019-05-02T09:00:00Z\",\n                \"end_at\": \"2019-09-02T18:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"items\": 9,\n        \"count\": 9,\n        \"page\": 1\n    },\n    \"links\": {\n        \"self\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events?page=1\",\n        \"pagination\": {\n            \"first\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events?page=1\",\n            \"last\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events?page=1\"\n        }\n    }\n}"}],"_postman_id":"fae3eac8-16bf-4423-a4f3-91b379334d7b"},{"name":"✅ Show","id":"427f172e-d4b2-473a-8fb2-9c18668e7084","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/{{instance_id}}/events/:id","description":"<p>Détail d'un événement</p>\n","urlObject":{"path":["v2","{{instance_id}}","events",":id"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[{"id":"0e871549-e4d7-420c-a702-becb7e5ced10","name":"✅ Show","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.publidata.io/v2/{{instance_id}}/events/:id","host":["https://api.publidata.io"],"path":["v2","{{instance_id}}","events",":id"],"variable":[{"key":"id","value":"y7KpS6Dgxv"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Tue, 06 Nov 2018 14:50:05 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"811c246d37cc926cc75bf582cd364fb3\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"d619c237-6f78-4100-9d77-b11aa3b6dc53"},{"key":"X-Runtime","value":"0.051868"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"y7KpS6Dgxv\",\n        \"type\": \"event\",\n        \"attributes\": {\n            \"id\": \"y7KpS6Dgxv\",\n            \"created_at\": \"2018-10-31T11:26:32Z\",\n            \"updated_at\": \"2018-11-06T10:56:29Z\",\n            \"cancelled\": false,\n            \"cancellation_reason\": null,\n            \"free_admission\": null,\n            \"free_admission_condition\": null,\n            \"punchline\": {\n                \"fr\": \"62eme Colloque International d'études humanistes du centre d'études supérieures de la Renaissance\"\n            },\n            \"name\": {\n                \"fr\": \"Léonard de Vinci création et innovations \"\n            },\n            \"blurb\": {\n                \"fr\": \"<p class=\\\"is-active\\\">Le 62ème colloque international d’études humanistes du Centre d’études supérieures de la Renaissance de Tours sera consacré à Léonard de Vinci en 2019.&nbsp;</p><p class=\\\"is-active\\\">Cet événement rassemblera les plus grands spécialistes internationaux du sujet et proposera d’aborder toutes les facettes de l’oeuvre de Léonard sous le prisme de l’invention et de l’innovation : mécanique, médecine, architecture, biomimétisme, etc. Une partie de ce colloque se tiendra dans des lieux marqués par la figure de Léonard de Vinci : le Château du Clos Lucé à Amboise et le Château de Chambord.</p>\"\n            },\n            \"start_at\": \"2019-06-01T00:00:00Z\",\n            \"end_at\": \"2019-06-30T00:00:00Z\"\n        },\n        \"relationships\": {},\n        \"links\": {\n            \"self\": {\n                \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv\"\n            },\n            \"relations\": {\n                \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/cities\",\n                \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/companies\",\n                \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/departments\",\n                \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/elects\",\n                \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/etablissement_publics\",\n                \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/event_groups\",\n                \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/events\",\n                \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/facilities\",\n                \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/news\",\n                \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/non_profits\",\n                \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/performers\",\n                \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/projects\",\n                \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/regions\",\n                \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/skills\"\n            },\n            \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/images\",\n            \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/documents\",\n            \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates\",\n            \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/type\",\n            \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/types\"\n        },\n        \"meta\": {\n            \"licenses\": [\n                {\n                    \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                    \"SPDX\": \"ODbL-1.0\",\n                    \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                    \"targets\": [\n                        \"cancelled\",\n                        \"cancellation_reason\",\n                        \"free_admission\",\n                        \"free_admission_condition\",\n                        \"punchline\",\n                        \"name\",\n                        \"blurb\",\n                        \"start_at\",\n                        \"end_at\"\n                    ]\n                }\n            ],\n            \"instances\": {\n                \"500-ans-renaissances\": [\n                    \"fr\"\n                ]\n            }\n        }\n    }\n}"}],"_postman_id":"427f172e-d4b2-473a-8fb2-9c18668e7084"},{"name":"✅ Show with included resources","id":"46b8a888-56c8-4598-87d1-579cb5f7f5e9","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id?include=dates,types","description":"<p>Avec le paramètre <code>include</code> vous avez la possibilité d'insérer dans la vue principale des ressources liées, vous évitant des requêtes supplémentaires.</p>\n","urlObject":{"path":["v2",":instance","events",":id"],"host":["https://api.publidata.io"],"query":[{"description":{"content":"<p>Liste des ressources à insérer</p>\n","type":"text/plain"},"key":"include","value":"dates,types"}],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[{"id":"9004b81b-02f3-43fc-bc3d-a0794ffc2255","name":"✅ Show with included resources","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.publidata.io/v2/:instance/events/:id?include=dates,types","host":["https://api.publidata.io"],"path":["v2",":instance","events",":id"],"query":[{"key":"include","value":"dates,types","description":"Liste des ressources à insérer"}],"variable":[{"key":"instance","value":"500-ans-renaissances"},{"key":"id","value":"y7KpS6Dgxv"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Tue, 06 Nov 2018 14:54:52 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"2c566edafdfca2fe7ed4fc7f8ef3e15b\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"b8d67f08-016a-4d6c-b10e-7d6467c5bcdf"},{"key":"X-Runtime","value":"0.483946"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"y7KpS6Dgxv\",\n        \"type\": \"event\",\n        \"attributes\": {\n            \"id\": \"y7KpS6Dgxv\",\n            \"created_at\": \"2018-10-31T11:26:32Z\",\n            \"updated_at\": \"2018-11-06T10:56:29Z\",\n            \"cancelled\": false,\n            \"cancellation_reason\": null,\n            \"free_admission\": null,\n            \"free_admission_condition\": null,\n            \"punchline\": {\n                \"fr\": \"62eme Colloque International d'études humanistes du centre d'études supérieures de la Renaissance\"\n            },\n            \"name\": {\n                \"fr\": \"Léonard de Vinci création et innovations \"\n            },\n            \"blurb\": {\n                \"fr\": \"<p class=\\\"is-active\\\">Le 62ème colloque international d’études humanistes du Centre d’études supérieures de la Renaissance de Tours sera consacré à Léonard de Vinci en 2019.&nbsp;</p><p class=\\\"is-active\\\">Cet événement rassemblera les plus grands spécialistes internationaux du sujet et proposera d’aborder toutes les facettes de l’oeuvre de Léonard sous le prisme de l’invention et de l’innovation : mécanique, médecine, architecture, biomimétisme, etc. Une partie de ce colloque se tiendra dans des lieux marqués par la figure de Léonard de Vinci : le Château du Clos Lucé à Amboise et le Château de Chambord.</p>\"\n            },\n            \"start_at\": \"2019-06-01T00:00:00Z\",\n            \"end_at\": \"2019-06-30T00:00:00Z\"\n        },\n        \"relationships\": {\n            \"types\": {\n                \"data\": []\n            },\n            \"dates\": {\n                \"data\": [\n                    {\n                        \"id\": \"axGeikm1VN\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"8VZZiNZ8Vd\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"eVgRimO4Lo\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"E79OiqZQLM\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"YVYgiW4lxD\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"87oei8vYLQ\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"gLb4iOga7J\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"o7EMiQDr75\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"B72ZiYOv7O\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"y7KAiEO4Lv\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"d7DzidZMLB\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"DLkqijMy7a\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"G7jaiXOoVg\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"jVJvi2nyVR\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"J7d3igMRVB\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"2VX9iOjl7N\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"DVA6ivYn7X\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"8VvJieDWVv\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"D744i3N078\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"NLwjibKKxD\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"Q7BaiA1AVb\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"Kx09iEraLX\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"y7KAiEOMLv\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"d7DzidZmLB\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"DLkqijM67a\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"G7jaiXOAVg\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"jVJvi2nXVR\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"J7d3igMbVB\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"2VX9iOjd7N\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"DVA6ivYR7X\",\n                        \"type\": \"date\"\n                    }\n                ]\n            }\n        },\n        \"links\": {\n            \"self\": {\n                \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv\"\n            },\n            \"relations\": {\n                \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/cities\",\n                \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/companies\",\n                \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/departments\",\n                \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/elects\",\n                \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/etablissement_publics\",\n                \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/event_groups\",\n                \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/events\",\n                \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/facilities\",\n                \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/news\",\n                \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/non_profits\",\n                \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/performers\",\n                \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/projects\",\n                \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/regions\",\n                \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/skills\"\n            },\n            \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/images\",\n            \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/documents\",\n            \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates\",\n            \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/type\",\n            \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/types\"\n        },\n        \"meta\": {\n            \"included\": [\n                \"dates\",\n                \"types\"\n            ],\n            \"licenses\": [\n                {\n                    \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                    \"SPDX\": \"ODbL-1.0\",\n                    \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                    \"targets\": [\n                        \"cancelled\",\n                        \"cancellation_reason\",\n                        \"free_admission\",\n                        \"free_admission_condition\",\n                        \"punchline\",\n                        \"name\",\n                        \"blurb\",\n                        \"start_at\",\n                        \"end_at\"\n                    ]\n                }\n            ],\n            \"instances\": {\n                \"500-ans-renaissances\": [\n                    \"fr\"\n                ]\n            }\n        }\n    },\n    \"included\": [\n        {\n            \"id\": \"axGeikm1VN\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"axGeikm1VN\",\n                \"created_at\": \"2018-10-31T11:33:15Z\",\n                \"updated_at\": \"2018-10-31T11:33:15Z\",\n                \"start_at\": \"2019-06-30T00:00:00Z\",\n                \"end_at\": \"2019-06-30T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 30 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"8VZZiNZ8Vd\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"8VZZiNZ8Vd\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-29T00:00:00Z\",\n                \"end_at\": \"2019-06-29T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 29 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"eVgRimO4Lo\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"eVgRimO4Lo\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-28T00:00:00Z\",\n                \"end_at\": \"2019-06-28T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 28 Fr 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"E79OiqZQLM\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"E79OiqZQLM\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-27T00:00:00Z\",\n                \"end_at\": \"2019-06-27T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 27 Th 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"YVYgiW4lxD\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"YVYgiW4lxD\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-26T00:00:00Z\",\n                \"end_at\": \"2019-06-26T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 26 We 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"87oei8vYLQ\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"87oei8vYLQ\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-25T00:00:00Z\",\n                \"end_at\": \"2019-06-25T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 25 Tu 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"gLb4iOga7J\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"gLb4iOga7J\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-24T00:00:00Z\",\n                \"end_at\": \"2019-06-24T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 24 Mo 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"o7EMiQDr75\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"o7EMiQDr75\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-23T00:00:00Z\",\n                \"end_at\": \"2019-06-23T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 23 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"B72ZiYOv7O\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"B72ZiYOv7O\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-22T00:00:00Z\",\n                \"end_at\": \"2019-06-22T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 22 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"y7KAiEO4Lv\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"y7KAiEO4Lv\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-21T00:00:00Z\",\n                \"end_at\": \"2019-06-21T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 21 Fr 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"d7DzidZMLB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"d7DzidZMLB\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-20T00:00:00Z\",\n                \"end_at\": \"2019-06-20T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 20 Th 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DLkqijMy7a\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DLkqijMy7a\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-19T00:00:00Z\",\n                \"end_at\": \"2019-06-19T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 19 We 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"G7jaiXOoVg\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"G7jaiXOoVg\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-18T00:00:00Z\",\n                \"end_at\": \"2019-06-18T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 18 Tu 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"jVJvi2nyVR\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"jVJvi2nyVR\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-17T00:00:00Z\",\n                \"end_at\": \"2019-06-17T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 17 Mo 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"J7d3igMRVB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"J7d3igMRVB\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-16T00:00:00Z\",\n                \"end_at\": \"2019-06-16T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 16 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"2VX9iOjl7N\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"2VX9iOjl7N\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-15T00:00:00Z\",\n                \"end_at\": \"2019-06-15T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 15 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DVA6ivYn7X\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DVA6ivYn7X\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-14T00:00:00Z\",\n                \"end_at\": \"2019-06-14T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 14 Fr 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"8VvJieDWVv\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"8VvJieDWVv\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-13T00:00:00Z\",\n                \"end_at\": \"2019-06-13T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 13 Th 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"D744i3N078\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"D744i3N078\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-12T00:00:00Z\",\n                \"end_at\": \"2019-06-12T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 12 We 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"NLwjibKKxD\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"NLwjibKKxD\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-11T00:00:00Z\",\n                \"end_at\": \"2019-06-11T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 11 Tu 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"Q7BaiA1AVb\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"Q7BaiA1AVb\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-10T00:00:00Z\",\n                \"end_at\": \"2019-06-10T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 10 Mo 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"Kx09iEraLX\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"Kx09iEraLX\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-09T00:00:00Z\",\n                \"end_at\": \"2019-06-09T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 09 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"y7KAiEOMLv\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"y7KAiEOMLv\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-08T00:00:00Z\",\n                \"end_at\": \"2019-06-08T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 08 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"d7DzidZmLB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"d7DzidZmLB\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-07T00:00:00Z\",\n                \"end_at\": \"2019-06-07T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 07 Fr 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DLkqijM67a\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DLkqijM67a\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-06T00:00:00Z\",\n                \"end_at\": \"2019-06-06T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 06 Th 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"G7jaiXOAVg\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"G7jaiXOAVg\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-05T00:00:00Z\",\n                \"end_at\": \"2019-06-05T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 05 We 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"jVJvi2nXVR\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"jVJvi2nXVR\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-04T00:00:00Z\",\n                \"end_at\": \"2019-06-04T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 04 Tu 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"J7d3igMbVB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"J7d3igMbVB\",\n                \"created_at\": \"2018-10-31T11:33:11Z\",\n                \"updated_at\": \"2018-10-31T11:33:11Z\",\n                \"start_at\": \"2019-06-03T00:00:00Z\",\n                \"end_at\": \"2019-06-03T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 03 Mo 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"2VX9iOjd7N\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"2VX9iOjd7N\",\n                \"created_at\": \"2018-10-31T11:33:11Z\",\n                \"updated_at\": \"2018-10-31T11:33:11Z\",\n                \"start_at\": \"2019-06-02T00:00:00Z\",\n                \"end_at\": \"2019-06-02T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 02 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DVA6ivYR7X\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DVA6ivYR7X\",\n                \"created_at\": \"2018-10-31T11:33:11Z\",\n                \"updated_at\": \"2018-10-31T11:33:11Z\",\n                \"start_at\": \"2019-06-01T00:00:00Z\",\n                \"end_at\": \"2019-06-01T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 01 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"wo7NbcKj7n\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"wo7NbcKj7n\",\n                \"created_at\": \"2018-10-23T01:23:57Z\",\n                \"updated_at\": \"2018-10-23T01:24:19Z\",\n                \"name\": {\n                    \"fr\": \"Rassemblement\"\n                }\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": \"https://publidata-staging.herokuapp.com/api/v2/event_types/wo7NbcKj7n\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"Wn7lQcrKxm\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"Wn7lQcrKxm\",\n                \"created_at\": \"2018-10-23T01:23:57Z\",\n                \"updated_at\": \"2018-10-23T01:24:19Z\",\n                \"name\": {\n                    \"fr\": \"Colloque\"\n                }\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": \"https://publidata-staging.herokuapp.com/api/v2/event_types/Wn7lQcrKxm\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        }\n    ]\n}"}],"_postman_id":"46b8a888-56c8-4598-87d1-579cb5f7f5e9"},{"name":"🚧 Show translated","id":"75d9e817-9f3b-4d6f-9395-c643788f5ca0","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id?lang=en","description":"<p>Le paramètre <code>lang</code> vous permet de récupérer les contenus éditoriaux d'une ressource dans une langue donnée.</p>\n","urlObject":{"path":["v2",":instance","events",":id"],"host":["https://api.publidata.io"],"query":[{"description":{"content":"<p>Langue désirée</p>\n","type":"text/plain"},"key":"lang","value":"en"}],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"75d9e817-9f3b-4d6f-9395-c643788f5ca0"},{"name":"🚧 Search","id":"5113baa7-489d-4c45-85e7-061643ece310","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.publidata.io/v2/:instance/events/?q=Sénart&size=10&page=1&marker=false&instances[]=2&types[]=Event&performers[]=Nakht&facilities[]=8&events[]=1&event_groups[]=1&news[]=1&projects[]=1&cities[]=7&etablissement_publics[]=1&departments[]=1&regions[]=1&skills[]=1&elects[]=1&bbox[]&event_types[]=Oeuvre d'art&event_styles[]=Gymnastique&date[start]=1526054400&date[end]=1526083199&price[min]=10&price[max]=50&free_admission=true&accessibilities[]=has_deaf_accessibility","description":"<p>Recherche d'événements : 🚧 à venir... </p>\n","urlObject":{"path":["v2",":instance","events",""],"host":["https://api.publidata.io"],"query":[{"description":{"content":"<p>Filtre textuel</p>\n","type":"text/plain"},"key":"q","value":"Sénart"},{"description":{"content":"<p>Nombre de résultats retournés (defaut: 10)</p>\n","type":"text/plain"},"key":"size","value":"10"},{"description":{"content":"<p>Pagination (defaut: 1)</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>Filtre booléen pour ne retourner que les locations (default: false)</p>\n","type":"text/plain"},"key":"marker","value":"false"},{"description":{"content":"<p>Filtre par instance (array d'id)</p>\n","type":"text/plain"},"key":"instances[]","value":"2"},{"description":{"content":"<p>Filtre par type de ressource (array de type parmi la liste suivante : News Event Facility Project City Epci Department Region EventGroup Skill Elect Performer Company NonProfit EtablissementPublic)</p>\n","type":"text/plain"},"key":"types[]","value":"Event"},{"description":{"content":"<p>Filtre par artiste lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"performers[]","value":"Nakht"},{"description":{"content":"<p>Filtre par équipement lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"facilities[]","value":"8"},{"description":{"content":"<p>Filtre par événement lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"events[]","value":"1"},{"description":{"content":"<p>Filtre par groupe d'événements lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"event_groups[]","value":"1"},{"description":{"content":"<p>Filtre par actualité liée (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"news[]","value":"1"},{"description":{"content":"<p>Filtre par projet lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"projects[]","value":"1"},{"description":{"content":"<p>Filtre par ville et location liées (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"cities[]","value":"7"},{"description":{"content":"<p>Filtre par établissement public lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"etablissement_publics[]","value":"1"},{"description":{"content":"<p>Filtre par departement lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"departments[]","value":"1"},{"description":{"content":"<p>Filtre par region liée (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"regions[]","value":"1"},{"description":{"content":"<p>Filtre par compétence liée (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"skills[]","value":"1"},{"description":{"content":"<p>Filtre par élu lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"elects[]","value":"1"},{"description":{"content":"<p>Filtre géographique (array de latitudes, longitudes dans l'ordre suivant minX, minY, maxX, maxY)</p>\n","type":"text/plain"},"key":"bbox[]","value":null},{"description":{"content":"<p>Filtre par type d'événement (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"event_types[]","value":"Oeuvre d'art"},{"description":{"content":"<p>Filtre par style d'événement (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"event_styles[]","value":"Gymnastique"},{"description":{"content":"<p>Filtre par date/heure de début (timestamp en seconde)</p>\n","type":"text/plain"},"key":"date[start]","value":"1526054400"},{"description":{"content":"<p>Filtre par date/heure de fin (timestamp en seconde)</p>\n","type":"text/plain"},"key":"date[end]","value":"1526083199"},{"description":{"content":"<p>Filtre de prix minimum</p>\n","type":"text/plain"},"key":"price[min]","value":"10"},{"description":{"content":"<p>Filtre de prix maximum</p>\n","type":"text/plain"},"key":"price[max]","value":"50"},{"description":{"content":"<p>Filtre de gratuité (boolean)</p>\n","type":"text/plain"},"key":"free_admission","value":"true"},{"description":{"content":"<p>Filtre d'accessibilité (array de string)</p>\n","type":"text/plain"},"key":"accessibilities[]","value":"has_deaf_accessibility"}],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"}]}},"response":[{"id":"351467d5-0e07-4752-b728-7a4f0a7e7e18","name":"Search events","originalRequest":{"method":"GET","header":[],"url":{"raw":"www.publidata.io/api/v1/events?q=&options[geo][top_left][lat]=49.05965195372349&options[geo][top_left][lon]=2.1371613664061897&options[geo][bottom_right][lat]=48.21570798955211&options[geo][bottom_right][lon]=2.7688752335936897&options[city]=Combs-la-Ville&options[paging][from]=0&options[event_types][]=Concert&options[dates][start_date]=1521812100000&options[dates][end_date]=1522499700000&options[instances][]=2","host":["www","publidata","io"],"path":["api","v1","events"],"query":[{"key":"q","value":"","description":"Recherche (full-text)"},{"key":"options[geo][top_left][lat]","value":"49.05965195372349","description":"Latitude coin supérieur gauche geo-box (lat)"},{"key":"options[geo][top_left][lon]","value":"2.1371613664061897","description":"Longitude coin supérieur gauche geo-box (lon)"},{"key":"options[geo][bottom_right][lat]","value":"48.21570798955211","description":"Latitude coin inférieur droit geo-box (lat)"},{"key":"options[geo][bottom_right][lon]","value":"2.7688752335936897","description":"Longitude coin inférieur droit geo-box (lon)"},{"key":"options[city]","value":"Combs-la-Ville","description":"Ville (full-text ou code postal)"},{"key":"options[paging][from]","value":"0","description":"Début de la pagination (integer)"},{"key":"options[event_types][]","value":"Concert","description":"Types d'événement (array de string)"},{"key":"options[dates][start_date]","value":"1521812100000","description":"Date de début (format timestamp unix 1508267068688)"},{"key":"options[dates][end_date]","value":"1522499700000","description":"Date de fin (format timestamp unix 1539803068688)"},{"key":"options[instances][]","value":"2"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"took\": 11,\n    \"timed_out\": false,\n    \"_shards\": {\n        \"total\": 1,\n        \"successful\": 1,\n        \"failed\": 0\n    },\n    \"hits\": {\n        \"total\": 2,\n        \"max_score\": 0.9812665,\n        \"hits\": [\n            {\n                \"_index\": \"events\",\n                \"_type\": \"event\",\n                \"_id\": \"3241\",\n                \"_score\": 0.9812665,\n                \"_source\": {\n                    \"id\": 3241,\n                    \"name\": \"Concert des orchestres\",\n                    \"slug\": \"concert-des-orchestres\",\n                    \"status\": \"published\",\n                    \"free_admission\": true,\n                    \"start_date\": \"2018-03-23T00:00:00.000+01:00\",\n                    \"end_date\": \"2018-03-23T00:00:00.000+01:00\",\n                    \"punchline\": \"Le vendredi 23 mars 2018 à 20h au Théâtre de la Coupole, les musiciens du Conservatoire Maurice Ohana de Combs-la-ville vous attendent pour leur rendez-vous annuel...\",\n                    \"blurb\": \"Cette soirée donne la possibilité à plusieurs formations orchestrales du conservatoire Maurice Ohana de se produire sur scène. \\r\\n\\r\\nProgramme musical éclectique et varié, ce concert  permet de vivre la musique ensemble et de la partager sans modération avec le public.\",\n                    \"linked_objects\": [\n                        {\n                            \"id\": 180,\n                            \"type\": \"Facility\",\n                            \"name\": \"La Coupole\"\n                        },\n                        {\n                            \"id\": 12,\n                            \"type\": \"City\",\n                            \"name\": \"Combs-la-Ville\"\n                        }\n                    ],\n                    \"cover_picture\": {\n                        \"id\": 22632,\n                        \"name\": \"image de couverture de Concert des orchestres\",\n                        \"alt\": \"image de couverture de Concert des orchestres\",\n                        \"description\": \"image de couverture de Concert des orchestres\",\n                        \"slug\": null,\n                        \"image_urls_as_json\": {\n                            \"image_original_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/632/original/open-uri20171002-4-1etqlbo?1506962457\",\n                            \"image_small_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/632/image_small/open-uri20171002-4-1etqlbo?1506962457\",\n                            \"image_medium_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/632/image_medium/open-uri20171002-4-1etqlbo?1506962457\",\n                            \"image_large_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/632/image_large/open-uri20171002-4-1etqlbo?1506962457\"\n                        }\n                    },\n                    \"instances\": [\n                        {\n                            \"id\": 2,\n                            \"slug\": \"portail-sortir-gps\"\n                        }\n                    ],\n                    \"event_type\": {\n                        \"id\": 13,\n                        \"name\": \"Concert\"\n                    },\n                    \"event_styles\": [\n                        {\n                            \"id\": 82,\n                            \"name\": \"World Music\"\n                        }\n                    ],\n                    \"event_dates\": [\n                        {\n                            \"id\": 37799,\n                            \"start_hour\": \"2000-01-01T20:00:00.000Z\",\n                            \"end_hour\": \"2000-01-01T22:00:00.000Z\",\n                            \"date\": \"2018-03-23T00:00:00.000+01:00\",\n                            \"sold_out\": false,\n                            \"start_date\": \"2018-03-23T20:00:00.000+00:00\",\n                            \"end_date\": \"2018-03-23T22:00:00.000+00:00\"\n                        }\n                    ],\n                    \"facilities\": [\n                        {\n                            \"id\": 180,\n                            \"name\": \"La Coupole\",\n                            \"slug\": \"la-coupole\",\n                            \"address\": \"Rue Jean François Millet, 77380 Combs-la-Ville, France\",\n                            \"location\": {\n                                \"lat\": 48.659695,\n                                \"lon\": 2.5662415\n                            }\n                        }\n                    ],\n                    \"locations\": [],\n                    \"fees\": [],\n                    \"tags\": [],\n                    \"pages\": [\n                        {\n                            \"id\": 7659,\n                            \"instance\": {\n                                \"id\": 2,\n                                \"slug\": \"portail-sortir-gps\"\n                            }\n                        }\n                    ]\n                }\n            },\n            {\n                \"_index\": \"events\",\n                \"_type\": \"event\",\n                \"_id\": \"3983\",\n                \"_score\": 0.9794048,\n                \"_source\": {\n                    \"id\": 3983,\n                    \"name\": \"Après-midi musicale: Claude Debussy\",\n                    \"slug\": \"apres-midi-musicale-claude-debussy\",\n                    \"status\": \"published\",\n                    \"free_admission\": true,\n                    \"start_date\": \"2018-03-24T00:00:00.000+01:00\",\n                    \"end_date\": \"2018-03-24T00:00:00.000+01:00\",\n                    \"punchline\": \"A l'occasion du centenaire de la mort de Claude Debussy, la media-ludothèque et le conservatoire Maurice Ohana vous invitent à une après-midi musical, le samedi 24 mars à partir de 15h30.\",\n                    \"blurb\": \"Claude Debussy (1862-1918) était un compositeur français. Pour célébrer son centenaire, nous vous invitons à un après-midi musical. Au programme, une conférence par Bruno Giner sur le compositeur à 15h30. \\r\\nPuis, à 18h, les élèves du conservatoire interpréteront une sélection d’œuvres de Claude Debussy.\",\n                    \"linked_objects\": [\n                        {\n                            \"id\": 42,\n                            \"type\": \"Facility\",\n                            \"name\": \"Médiathèque de Combs-la-Ville\"\n                        },\n                        {\n                            \"id\": 12,\n                            \"type\": \"City\",\n                            \"name\": \"Combs-la-Ville\"\n                        }\n                    ],\n                    \"cover_picture\": {\n                        \"id\": 24665,\n                        \"name\": \"image de couverture de Après-midi musicale: Claude Debussy\",\n                        \"alt\": \"image de couverture de Après-midi musicale: Claude Debussy\",\n                        \"description\": \"image de couverture de Après-midi musicale: Claude Debussy\",\n                        \"slug\": null,\n                        \"image_urls_as_json\": {\n                            \"image_original_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/665/original/Photo_23a_Claude_Debussy.jpg?1516441408\",\n                            \"image_small_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/665/image_small/Photo_23a_Claude_Debussy.jpg?1516441408\",\n                            \"image_medium_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/665/image_medium/Photo_23a_Claude_Debussy.jpg?1516441408\",\n                            \"image_large_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/665/image_large/Photo_23a_Claude_Debussy.jpg?1516441408\"\n                        }\n                    },\n                    \"instances\": [\n                        {\n                            \"id\": 2,\n                            \"slug\": \"portail-sortir-gps\"\n                        }\n                    ],\n                    \"event_type\": {\n                        \"id\": 13,\n                        \"name\": \"Concert\"\n                    },\n                    \"event_styles\": [\n                        {\n                            \"id\": 111,\n                            \"name\": \"Musique Classique\"\n                        }\n                    ],\n                    \"event_dates\": [\n                        {\n                            \"id\": 41100,\n                            \"start_hour\": \"2000-01-01T15:30:00.000Z\",\n                            \"end_hour\": \"2000-01-01T19:30:00.000Z\",\n                            \"date\": \"2018-03-24T00:00:00.000+01:00\",\n                            \"sold_out\": false,\n                            \"start_date\": \"2018-03-24T15:30:00.000+00:00\",\n                            \"end_date\": \"2018-03-24T19:30:00.000+00:00\"\n                        }\n                    ],\n                    \"facilities\": [\n                        {\n                            \"id\": 42,\n                            \"name\": \"Médiathèque de Combs-la-Ville\",\n                            \"slug\": \"mediatheque-de-combs-la-ville\",\n                            \"address\": \"Rue Jean François Millet, 77380 Combs-la-Ville, France\",\n                            \"location\": {\n                                \"lat\": 48.659695,\n                                \"lon\": 2.5662415\n                            }\n                        }\n                    ],\n                    \"locations\": [],\n                    \"fees\": [],\n                    \"accessibility\": {\n                        \"id\": 1766,\n                        \"deaf_lsf\": false,\n                        \"deaf_vision_based\": false,\n                        \"deaf_subtitle\": false,\n                        \"deaf_hearing_loop\": false,\n                        \"blind_audio_description\": false,\n                        \"blind_darkness_based\": false,\n                        \"blind_text_based\": false,\n                        \"blind_braille\": false,\n                        \"blind_large_print\": false,\n                        \"motor_disabled_access\": true,\n                        \"has_accessibility\": true,\n                        \"has_deaf_accessibility\": false,\n                        \"has_blind_accessibility\": false\n                    },\n                    \"tags\": [\n                        \"Culture\"\n                    ],\n                    \"pages\": [\n                        {\n                            \"id\": 8636,\n                            \"instance\": {\n                                \"id\": 2,\n                                \"slug\": \"portail-sortir-gps\"\n                            }\n                        }\n                    ]\n                }\n            }\n        ]\n    },\n    \"aggregations\": {\n        \"event_styles_terms_agg\": {\n            \"doc_count\": 2,\n            \"name\": {\n                \"doc_count_error_upper_bound\": 0,\n                \"sum_other_doc_count\": 0,\n                \"buckets\": [\n                    {\n                        \"key\": \"111\",\n                        \"doc_count\": 1,\n                        \"name\": {\n                            \"doc_count_error_upper_bound\": 0,\n                            \"sum_other_doc_count\": 0,\n                            \"buckets\": [\n                                {\n                                    \"key\": \"classique\",\n                                    \"doc_count\": 1\n                                },\n                                {\n                                    \"key\": \"musique\",\n                                    \"doc_count\": 1\n                                }\n                            ]\n                        }\n                    },\n                    {\n                        \"key\": \"82\",\n                        \"doc_count\": 1,\n                        \"name\": {\n                            \"doc_count_error_upper_bound\": 0,\n                            \"sum_other_doc_count\": 0,\n                            \"buckets\": [\n                                {\n                                    \"key\": \"music\",\n                                    \"doc_count\": 1\n                                },\n                                {\n                                    \"key\": \"world\",\n                                    \"doc_count\": 1\n                                }\n                            ]\n                        }\n                    }\n                ]\n            }\n        },\n        \"events\": {\n            \"doc_count\": 3838,\n            \"dates\": {\n                \"doc_count\": 11064,\n                \"this_month\": {\n                    \"doc_count\": 737,\n                    \"events\": {\n                        \"doc_count\": 278\n                    }\n                },\n                \"this_week_end\": {\n                    \"doc_count\": 81,\n                    \"events\": {\n                        \"doc_count\": 54\n                    }\n                },\n                \"past\": {\n                    \"doc_count\": 10070,\n                    \"events\": {\n                        \"doc_count\": 3132\n                    }\n                },\n                \"today\": {\n                    \"doc_count\": 34,\n                    \"events\": {\n                        \"doc_count\": 28\n                    }\n                },\n                \"tomorrow\": {\n                    \"doc_count\": 22,\n                    \"events\": {\n                        \"doc_count\": 19\n                    }\n                },\n                \"last_days\": {\n                    \"doc_count\": 133,\n                    \"events\": {\n                        \"doc_count\": 75\n                    }\n                },\n                \"upcoming\": {\n                    \"doc_count\": 1028,\n                    \"events\": {\n                        \"doc_count\": 390\n                    }\n                },\n                \"this_week\": {\n                    \"doc_count\": 197,\n                    \"events\": {\n                        \"doc_count\": 96\n                    }\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"5113baa7-489d-4c45-85e7-061643ece310"}],"id":"99306ad0-0c2d-4327-b63d-01e8b1942a3b","_postman_id":"99306ad0-0c2d-4327-b63d-01e8b1942a3b","description":""},{"name":"Ressources liées","item":[{"name":"✅ Types","id":"5e6a5cbb-8763-4e90-9e8d-bd6585820e3f","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/types","description":"<p>Type(s) de la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","types"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[{"id":"453fe286-02be-492f-8ee9-925fc72075a1","name":"✅ Types","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.publidata.io/v2/:instance/events/:id/types","host":["https://api.publidata.io"],"path":["v2",":instance","events",":id","types"],"variable":[{"key":"instance","value":"500-ans-renaissances"},{"key":"id","value":"y7KpS6Dgxv"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Tue, 06 Nov 2018 14:56:10 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"aca7a58992ce54decfd0aa1309558bf9\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"d9a108a9-5d7c-486f-9b8f-620b97ceecb4"},{"key":"X-Runtime","value":"0.137086"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"wo7NbcKj7n\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"wo7NbcKj7n\",\n                \"created_at\": \"2018-10-23T01:23:57Z\",\n                \"updated_at\": \"2018-10-23T01:24:19Z\",\n                \"name\": {\n                    \"fr\": \"Rassemblement\"\n                }\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": \"https://publidata-staging.herokuapp.com/api/v2/event_types/wo7NbcKj7n\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"Wn7lQcrKxm\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"Wn7lQcrKxm\",\n                \"created_at\": \"2018-10-23T01:23:57Z\",\n                \"updated_at\": \"2018-10-23T01:24:19Z\",\n                \"name\": {\n                    \"fr\": \"Colloque\"\n                }\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": \"https://publidata-staging.herokuapp.com/api/v2/event_types/Wn7lQcrKxm\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        }\n    ],\n    \"meta\": {\n        \"items\": 2,\n        \"count\": 2,\n        \"page\": 1\n    },\n    \"links\": {\n        \"self\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/types?page=1\",\n        \"pagination\": {\n            \"first\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/types?page=1\",\n            \"last\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/types?page=1\"\n        }\n    }\n}"}],"_postman_id":"5e6a5cbb-8763-4e90-9e8d-bd6585820e3f"},{"name":"🚧 Themes","id":"ff9e0721-8c10-4ed6-9ebb-23e89f392c03","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/themes","description":"<p>Thème(s) associé(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","themes"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"ff9e0721-8c10-4ed6-9ebb-23e89f392c03"},{"name":"✅ Dates","id":"3e6d8fcc-1634-46e1-a415-bdac2a5b4343","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/dates","description":"<p>Date(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","dates"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[{"id":"e6e5ab1e-dcd4-44d5-b485-708c16ad1957","name":"✅ Dates","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.publidata.io/v2/:instance/events/:id/dates","host":["https://api.publidata.io"],"path":["v2",":instance","events",":id","dates"],"variable":[{"key":"instance","value":"500-ans-renaissances"},{"key":"id","value":"y7KpS6Dgxv"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Tue, 06 Nov 2018 14:57:37 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"5019bf7102c4e9c481afd4dc20c410e1\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"5b74b321-cdd9-461b-a32e-4263c646d08b"},{"key":"X-Runtime","value":"0.316049"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"DVA6ivYR7X\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DVA6ivYR7X\",\n                \"created_at\": \"2018-10-31T11:33:11Z\",\n                \"updated_at\": \"2018-10-31T11:33:11Z\",\n                \"start_at\": \"2019-06-01T00:00:00Z\",\n                \"end_at\": \"2019-06-01T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 01 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"2VX9iOjd7N\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"2VX9iOjd7N\",\n                \"created_at\": \"2018-10-31T11:33:11Z\",\n                \"updated_at\": \"2018-10-31T11:33:11Z\",\n                \"start_at\": \"2019-06-02T00:00:00Z\",\n                \"end_at\": \"2019-06-02T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 02 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"J7d3igMbVB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"J7d3igMbVB\",\n                \"created_at\": \"2018-10-31T11:33:11Z\",\n                \"updated_at\": \"2018-10-31T11:33:11Z\",\n                \"start_at\": \"2019-06-03T00:00:00Z\",\n                \"end_at\": \"2019-06-03T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 03 Mo 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"jVJvi2nXVR\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"jVJvi2nXVR\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-04T00:00:00Z\",\n                \"end_at\": \"2019-06-04T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 04 Tu 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"G7jaiXOAVg\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"G7jaiXOAVg\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-05T00:00:00Z\",\n                \"end_at\": \"2019-06-05T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 05 We 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DLkqijM67a\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DLkqijM67a\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-06T00:00:00Z\",\n                \"end_at\": \"2019-06-06T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 06 Th 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"d7DzidZmLB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"d7DzidZmLB\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-07T00:00:00Z\",\n                \"end_at\": \"2019-06-07T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 07 Fr 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"y7KAiEOMLv\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"y7KAiEOMLv\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-08T00:00:00Z\",\n                \"end_at\": \"2019-06-08T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 08 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"Kx09iEraLX\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"Kx09iEraLX\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-09T00:00:00Z\",\n                \"end_at\": \"2019-06-09T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 09 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"Q7BaiA1AVb\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"Q7BaiA1AVb\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-10T00:00:00Z\",\n                \"end_at\": \"2019-06-10T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 10 Mo 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"NLwjibKKxD\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"NLwjibKKxD\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-11T00:00:00Z\",\n                \"end_at\": \"2019-06-11T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 11 Tu 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"D744i3N078\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"D744i3N078\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-12T00:00:00Z\",\n                \"end_at\": \"2019-06-12T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 12 We 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"8VvJieDWVv\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"8VvJieDWVv\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-13T00:00:00Z\",\n                \"end_at\": \"2019-06-13T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 13 Th 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DVA6ivYn7X\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DVA6ivYn7X\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-14T00:00:00Z\",\n                \"end_at\": \"2019-06-14T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 14 Fr 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"2VX9iOjl7N\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"2VX9iOjl7N\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-15T00:00:00Z\",\n                \"end_at\": \"2019-06-15T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 15 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"J7d3igMRVB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"J7d3igMRVB\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-16T00:00:00Z\",\n                \"end_at\": \"2019-06-16T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 16 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"jVJvi2nyVR\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"jVJvi2nyVR\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-17T00:00:00Z\",\n                \"end_at\": \"2019-06-17T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 17 Mo 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"G7jaiXOoVg\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"G7jaiXOoVg\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-18T00:00:00Z\",\n                \"end_at\": \"2019-06-18T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 18 Tu 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DLkqijMy7a\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DLkqijMy7a\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-19T00:00:00Z\",\n                \"end_at\": \"2019-06-19T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 19 We 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"d7DzidZMLB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"d7DzidZMLB\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-20T00:00:00Z\",\n                \"end_at\": \"2019-06-20T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 20 Th 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        }\n    ],\n    \"meta\": {\n        \"items\": 20,\n        \"count\": 30,\n        \"page\": 1\n    },\n    \"links\": {\n        \"self\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates?page=1\",\n        \"pagination\": {\n            \"first\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates?page=1\",\n            \"next\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates?page=2\",\n            \"last\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates?page=2\"\n        }\n    }\n}"}],"_postman_id":"3e6d8fcc-1634-46e1-a415-bdac2a5b4343"},{"name":"🚧 Tickets","id":"a108831e-2742-40b3-8054-06883bfcd5e0","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/tickets","description":"<p>Billetterie(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","tickets"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"a108831e-2742-40b3-8054-06883bfcd5e0"},{"name":"🚧 Fees","id":"94941655-c1de-4fb5-b8a8-ec92f5827cb6","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/fees","description":"<p>Prix lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","fees"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"94941655-c1de-4fb5-b8a8-ec92f5827cb6"},{"name":"🚧 Contacts","id":"5e0e368f-d1c5-4d91-832f-22bd345dabb4","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/contacts","description":"<p>Information(s) de contact liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","contacts"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"5e0e368f-d1c5-4d91-832f-22bd345dabb4"},{"name":"🚧 Socials","id":"9e0e641c-d09f-4675-8cd9-24648c75a840","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/socials","description":"<p>Information(s) sociale(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","socials"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"9e0e641c-d09f-4675-8cd9-24648c75a840"},{"name":"🚧 Public","id":"6c7e0b73-dfce-4d42-9642-c7005d45682a","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/public","description":"<p>Public associé à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","public"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"6c7e0b73-dfce-4d42-9642-c7005d45682a"},{"name":"🚧 Accessibility","id":"dd4a3f32-2c4c-4c3f-ae16-b99a72af476a","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/accessibility","description":"<p>Information(s) d'accessibilité liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","accessibility"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"dd4a3f32-2c4c-4c3f-ae16-b99a72af476a"},{"name":"🚧 Partners","id":"5cd3fcb3-da18-4241-ac0b-bd04587fc113","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/partners","description":"<p>Partenaire(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","partners"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"5cd3fcb3-da18-4241-ac0b-bd04587fc113"},{"name":"🚧 Instances","id":"b1f38a9d-3ef2-4f87-9fdd-4478f344e9fb","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/instances","description":"<p>Instance(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","instances"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"b1f38a9d-3ef2-4f87-9fdd-4478f344e9fb"},{"name":"🚧 Pages","id":"cbeea4fd-e8a7-44c3-a342-22aece66c89a","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/skills","description":"<p>Page(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","skills"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"cbeea4fd-e8a7-44c3-a342-22aece66c89a"},{"name":"🚧 Contributors","id":"c3a20fd2-c629-42bb-9e7d-cb1e7f141944","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/contributors","description":"<p>Contributeur(s) / mainteneur(s) de la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","contributors"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"c3a20fd2-c629-42bb-9e7d-cb1e7f141944"}],"id":"17df20eb-2e72-49bf-a951-281c9dc2c899","_postman_id":"17df20eb-2e72-49bf-a951-281c9dc2c899","description":""},{"name":"Relations","item":[{"name":"🚧 Relations","id":"b2dede5c-41ea-4b9f-9851-e6c0353bd130","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/themes","description":"<p>Ressource(s) associée(s) à ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","themes"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"b2dede5c-41ea-4b9f-9851-e6c0353bd130"},{"name":"🚧 Facilities","id":"d2fa4d6c-2cbe-44e7-b5c0-ce6b691227ad","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/facilities","description":"<p>Équipement(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","facilities"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"d2fa4d6c-2cbe-44e7-b5c0-ce6b691227ad"},{"name":"🚧 Cities","id":"356c056c-b605-42ab-a7f4-71e99075120c","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/cities","description":"<p>Commune(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","cities"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"356c056c-b605-42ab-a7f4-71e99075120c"},{"name":"🚧 Departments","id":"77be027e-1f79-47cd-a170-a7ef9e7b87b9","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/departments","description":"<p>Départements(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","departments"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"77be027e-1f79-47cd-a170-a7ef9e7b87b9"},{"name":"🚧 Regions","id":"fccc1d96-3cd9-443c-b9d0-36f29332fd70","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/regions","description":"<p>Région(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","regions"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"fccc1d96-3cd9-443c-b9d0-36f29332fd70"},{"name":"🚧 News","id":"38a39ffa-0462-44f1-a6ef-3eb26014c4fc","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/news","description":"<p>Actualité(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","news"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"38a39ffa-0462-44f1-a6ef-3eb26014c4fc"},{"name":"✅ Events","id":"91b1016d-815c-4057-8b69-91414084af07","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/events","description":"<p>Événement(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","events"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"91b1016d-815c-4057-8b69-91414084af07"},{"name":"🚧 EventGroups","id":"2734b356-e8c4-4276-8585-d8325642f519","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/event_groups","description":"<p>Groupe(s) d'événement(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","event_groups"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"2734b356-e8c4-4276-8585-d8325642f519"},{"name":"🚧 Projects","id":"d3e1087c-23f5-4c03-a1e7-be51bd78a372","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/projects","description":"<p>Projet(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","projects"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"d3e1087c-23f5-4c03-a1e7-be51bd78a372"},{"name":"🚧 Performers","id":"0a1117e1-68a2-4f8f-bb4d-e0f74b895b70","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/performers","description":"<p>Artiste(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","performers"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"0a1117e1-68a2-4f8f-bb4d-e0f74b895b70"},{"name":"🚧 Companies","id":"b8d46808-c617-4261-bb72-fb87d5be4fd0","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/companies","description":"<p>Entreprise(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","companies"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"b8d46808-c617-4261-bb72-fb87d5be4fd0"},{"name":"🚧 NonProfits","id":"12ed909a-1aad-4ba0-a81e-7bebe28e1988","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/non_profits","description":"<p>Associations(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","non_profits"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"12ed909a-1aad-4ba0-a81e-7bebe28e1988"},{"name":"🚧 EtablissementPublics","id":"520bde13-8f68-415f-a286-d76ee9a24766","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/etablissement_publics","description":"<p>Établissement(s) public(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","etablissement_publics"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"520bde13-8f68-415f-a286-d76ee9a24766"},{"name":"🚧 Skills","id":"f1f3a5fe-7497-4bb8-b7f8-4bb37a74dab1","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/skills","description":"<p>Compétence(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","skills"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"f1f3a5fe-7497-4bb8-b7f8-4bb37a74dab1"},{"name":"🚧 Elects","id":"34601000-7cf4-428e-8281-2c1f061c9984","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/elects","description":"<p>Élus(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","elects"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"34601000-7cf4-428e-8281-2c1f061c9984"}],"id":"9160cc26-d5d2-48a7-b76b-f6b40d00bc4e","description":"<p>A venir... 🚧</p>\n","event":[{"listen":"prerequest","script":{"id":"487c0f48-a1cd-4aae-af2f-4b62ccf8bb0b","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"4dfafa06-8884-4b36-9c42-31cba1746986","type":"text/javascript","exec":[""]}}],"_postman_id":"9160cc26-d5d2-48a7-b76b-f6b40d00bc4e"},{"name":"Médias","item":[{"name":"🚧 Medias","id":"a5b159dd-ac1b-4784-aa4e-a9636d204fed","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/medias","description":"<p>Média(s) associé(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","medias"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"a5b159dd-ac1b-4784-aa4e-a9636d204fed"},{"name":"✅ Images","id":"12cfe7cc-3572-49af-b329-43aa67866b63","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/images","description":"<p>Image(s) associée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","images"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"12cfe7cc-3572-49af-b329-43aa67866b63"},{"name":"✅ Documents","id":"73ba6464-29f2-4e21-9697-b685f5c56f6b","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/documents","description":"<p>Document(s) associé(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","documents"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"73ba6464-29f2-4e21-9697-b685f5c56f6b"}],"id":"9b7b6535-3e53-4844-b686-f234f7f2edec","_postman_id":"9b7b6535-3e53-4844-b686-f234f7f2edec","description":""}],"id":"b83a53d0-27ff-4b52-91bb-2dd1da4ae342","description":"<p>Les événements</p>\n","event":[{"listen":"prerequest","script":{"id":"768578b7-1e5d-45b7-ab56-2a8b856f2061","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"a419bb76-510b-4b2b-bc5d-608de7e9b0d3","type":"text/javascript","exec":[""]}}],"_postman_id":"b83a53d0-27ff-4b52-91bb-2dd1da4ae342"},{"name":"🚧 Services","item":[{"name":"Endpoints principaux","item":[{"name":"✅ Index","id":"904aeaae-e027-4a22-803f-82f6adf9a459","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events","description":"<p>Liste des événements</p>\n","urlObject":{"path":["v2",":instance","events"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"}]}},"response":[{"id":"0d96d347-e9d3-4374-ab49-7a22719bd078","name":"✅ Index","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.publidata.io/v2/:instance/events","host":["https://api.publidata.io"],"path":["v2",":instance","events"],"variable":[{"key":"instance","value":"500-ans-renaissances"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Tue, 06 Nov 2018 14:35:32 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"e272b80759b3239cb223ac313ead9d8a\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"ef157796-c377-4ab4-b340-25fe123f51d3"},{"key":"X-Runtime","value":"0.211831"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"J7dASjXPxB\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"J7dASjXPxB\",\n                \"created_at\": \"2018-11-02T13:36:24Z\",\n                \"updated_at\": \"2018-11-06T14:11:43Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {\n                    \"fr\": \"La 28e édition du Festival International des Jardins abordera un thème cher à la Renaissance.\"\n                },\n                \"name\": {\n                    \"fr\": \"Festival International des Jardins de Chaumont-sur-Loire\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"medium-insert-active\\\"><br></p>\"\n                },\n                \"start_at\": \"2019-04-25T10:00:00Z\",\n                \"end_at\": \"2019-11-03T19:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXPxB/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"y7KpS6Dgxv\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"y7KpS6Dgxv\",\n                \"created_at\": \"2018-10-31T11:26:32Z\",\n                \"updated_at\": \"2018-11-06T10:56:29Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {\n                    \"fr\": \"62eme Colloque International d'études humanistes du centre d'études supérieures de la Renaissance\"\n                },\n                \"name\": {\n                    \"fr\": \"Léonard de Vinci création et innovations \"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"is-active\\\">Le 62ème colloque international d’études humanistes du Centre d’études supérieures de la Renaissance de Tours sera consacré à Léonard de Vinci en 2019.&nbsp;</p><p class=\\\"is-active\\\">Cet événement rassemblera les plus grands spécialistes internationaux du sujet et proposera d’aborder toutes les facettes de l’oeuvre de Léonard sous le prisme de l’invention et de l’innovation : mécanique, médecine, architecture, biomimétisme, etc. Une partie de ce colloque se tiendra dans des lieux marqués par la figure de Léonard de Vinci : le Château du Clos Lucé à Amboise et le Château de Chambord.</p>\"\n                },\n                \"start_at\": \"2019-06-01T00:00:00Z\",\n                \"end_at\": \"2019-06-30T00:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"G7j3SNKzxg\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"G7j3SNKzxg\",\n                \"created_at\": \"2018-10-31T09:20:00Z\",\n                \"updated_at\": \"2018-11-06T10:56:29Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {},\n                \"name\": {\n                    \"fr\": \"Les Borgia à Chinon\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"\\\">La Forteresse royale de Chinon, proposera une reconstitution historique de la venue de César Borgia, fils du pape Alexandre VI pour rencontrer le roi de France à Chinon en 1498 . Reconstitution (cortège équestre). Démonstrations de Calcio Storico (sport florentin de la Renaissance, ancêtre du football actuel…). Dégustations de mets et recettes de la Renaissance florentine. Danses et musiques Renaissance.<br></p>\"\n                },\n                \"start_at\": \"2019-07-21T00:00:00Z\",\n                \"end_at\": \"2019-07-21T00:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/G7j3SNKzxg/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"jVJbSWMWVR\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"jVJbSWMWVR\",\n                \"created_at\": \"2018-10-31T08:54:32Z\",\n                \"updated_at\": \"2018-11-06T10:56:28Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {},\n                \"name\": {\n                    \"fr\": \"La renaissance en Val de Loire, en France et en Europe - Festival du film français renaissance\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p>Pour la 21ème édition des Rendez- vous de l’Histoire, le Centre d’Études Supérieures de la Renaissance sera fortement impliqué dans une programmation spécifique « La Renaissance en Val de Loire, en France et en Europe ». Dans le cadre du festival du film français « Renaissance », seront projetés des films historiques accompagnés de moments de réflexion (débats, conférences et ateliers) mettant en perspective la création cinématographique au regard de l’histoire de la peinture historiciste.<br></p>\"\n                },\n                \"start_at\": \"2019-10-01T00:00:00Z\",\n                \"end_at\": \"2019-10-31T00:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/jVJbSWMWVR/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"J7dASjXwxB\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"J7dASjXwxB\",\n                \"created_at\": \"2018-10-31T08:42:55Z\",\n                \"updated_at\": \"2018-11-06T10:56:28Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {\n                    \"fr\": \"Parcours numérique, sonore et interactif\"\n                },\n                \"name\": {\n                    \"fr\": \"Renaissance comme Rabelais\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<h3>Parcours numérique, sonore et interactif combinant des moyens techniques innovants capables d’allier  géographie littéraire et géographie réelle. Création d’un parcours sonore géolocalisé à partir d’une application mobile entre La Devinière, maison natale de Rabelais, et l’Abbaye de Seuilly.<br></h3>\"\n                },\n                \"start_at\": \"2019-07-01T00:00:00Z\",\n                \"end_at\": \"2019-10-31T00:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/J7dASjXwxB/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"DVAWS3NQxX\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"DVAWS3NQxX\",\n                \"created_at\": \"2018-10-31T08:34:25Z\",\n                \"updated_at\": \"2018-11-06T10:56:28Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {},\n                \"name\": {\n                    \"fr\": \"Spectacle numérique itinérant Renaissance(S)\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p>Ce spectacle numérique invite le public à s’immerger par le biais des dernières technologies dans un environnement visuel et sonore en plusieurs dimensions. Diverses technologies, de réalité augmentée ou de réalité virtuelle peuvent être détournées par le biais d’une immersion sensori-motrice grâce à une ou plusieurs interfaces visuelles. Ce spectacle proposera une narration dans l’esprit humaniste et novateur de la Renaissance.</p><p>Il évoquera les dimensions créatives, anticipatrices, pluridisciplinaires de Léonard de Vinci, les acteurs, oeuvres, sites patrimoniaux et culturels majeurs du territoire à la Renaissance, le Centre-Val de Loire aujourd’hui et sa projection dans le futur.</p>\"\n                },\n                \"start_at\": \"2019-08-15T19:00:00Z\",\n                \"end_at\": \"2019-09-15T23:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/DVAWS3NQxX/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"8VvZS1y0Vv\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"8VvZS1y0Vv\",\n                \"created_at\": \"2018-10-31T08:29:42Z\",\n                \"updated_at\": \"2018-11-06T10:56:28Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {},\n                \"name\": {\n                    \"fr\": \"Magnificences à la cour de France\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"is-active\\\">Ce spectacle de l’ensemble Doulce Mémoire, recrée l’univers d’une fête à la cour de François I<sup>er</sup>, autour de 1515, celles qui virent l’arrivée en France de Léonard de Vinci à l’invitation du roi français. Peintre, inventeur de génie, Léonard était aussi organisateur de fêtes fameuses, dont l’inventivité et la puissance créatrice étaient appréciées les puissants.<br></p>\"\n                },\n                \"start_at\": \"2019-07-23T19:00:00Z\",\n                \"end_at\": \"2019-07-23T23:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VvZS1y0Vv/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"NLwlSvmaVD\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"NLwlSvmaVD\",\n                \"created_at\": \"2018-10-30T16:51:07Z\",\n                \"updated_at\": \"2018-11-06T10:56:27Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {\n                    \"fr\": \"Exposition regroupant des artistes contemporains influencés par Léonard de Vinci et la Renaissance.\"\n                },\n                \"name\": {\n                    \"fr\": \"Hommage contemporain à la Renaissance\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"is-active\\\">Exposition d’artistes contemporains ayant été influencés par Léonard de Vinci et la Renaissance, sur l’exemple de Fabien Merelle, établi à Tours et travaillant sur la scène internationale.&nbsp;</p><p class=\\\"is-active\\\">L’exposition « Hommage à Léonard » transpose dans l’art contemporain l’héritage du maître du Cinquecento mort en Val de Loire il y a 500 ans. Vaste cabinet de curiosités, l’exposition présentée dans les salles historiques du château fait écho au système de pensée&nbsp;<span style=\\\"font-size: 1em; font-family: ProximaNova, Helvetica, Arial, &quot;Sans Serif&quot;;\\\">du Maitre, génie polyvalent où la réalisation ne constitue pas la fin mais le moyen de la réflexion. Conçue comme une sorte de « mise en curiosité » envers les différents apports de Léonard, homme d’esprit universel à l’histoire des arts en Europe, interprétés ou prolongés par différents artistes de notre temps travaillant sur la scène internationale ; l’exposition montre aussi que les échanges entre Italie et France vers 1500, l’italianisme dans les&nbsp;</span><span style=\\\"font-size: 1em; font-family: ProximaNova, Helvetica, Arial, &quot;Sans Serif&quot;;\\\">arts amorcé sous Charles VIII et Louis XII se perpétuent de nos jours, avec les travaux des artistes florentines Antonella Bussanich, Alessandra Capodacqua et Alessandra Ragionier. Comme dans les chapitres d’un livre, chaque salle illustre l’un des thèmes étudiés par Léonard. L’autoportrait / Le portrait / La peinture d’histoire /&nbsp;</span><span style=\\\"font-size: 1em; font-family: ProximaNova, Helvetica, Arial, &quot;Sans Serif&quot;;\\\">Le Paysage / Le codex / La nature morte / Le Portrait féminin / Le Drapé.</span></p>\"\n                },\n                \"start_at\": \"2019-04-01T10:00:00Z\",\n                \"end_at\": \"2019-11-30T18:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/NLwlSvmaVD/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        },\n        {\n            \"id\": \"8VOeS416xY\",\n            \"type\": \"event\",\n            \"attributes\": {\n                \"id\": \"8VOeS416xY\",\n                \"created_at\": \"2018-10-29T16:47:42Z\",\n                \"updated_at\": \"2018-11-06T10:56:30Z\",\n                \"cancelled\": false,\n                \"cancellation_reason\": null,\n                \"free_admission\": null,\n                \"free_admission_condition\": null,\n                \"punchline\": {\n                    \"fr\": \"Dans le cadre de l'anniversaire des 500ans de la Renaissance, l'artiste Ravo revisite l'oeuvre de François-Guillaume Ménageot \\\"La mort de Léonard de Vinci\\\"\"\n                },\n                \"name\": {\n                    \"fr\": \"Ravo Mattoni invité du Château Royal d' Amboise\"\n                },\n                \"blurb\": {\n                    \"fr\": \"<p class=\\\"\\\">Andrea Mattoni alias <b>RAVO</b>, artiste-graffeur italien de son état, a débuté en 2016 un ambitieux projet visant à reproduire, in situ et en très grand format, des chefs-d’œuvre de la peinture classique signés du Caravage, de Delacroix, de Delatour… Profondeur des couleurs, puissance des lignes et de l’échelle, l’hommage de RAVO aux grands maîtres est d’une modernité réjouissante… Le résultat est bluffant.</p><p class=\\\"\\\">De manière à prolonger l’exposition « La Mort de Léonard de Vinci : la construction d’un mythe » préparée avec la BNF, le château royal d’Amboise a demandé à RAVO de réaliser 5 toiles de grandes dimensions (4.5m X 3m). Celles-ci prendront pour sujet des détails du monumental tableau de François-Guillaume Ménageot « La Mort de Léonard de Vinci », et trouveront place sur les murs de la tour cavalière des Minimes, du 2 mai au 2 septembre 2019. Pour honorer cette commande, l’artiste sera en résidence au château royal d’Amboise durant une dizaine de jours, en avril 2019. Il réalisera ses peintures en public.</p><p class=\\\"\\\">Cette exposition est organisée avec le concours de l’association des Ateliers de l’Etoile.</p><p class=\\\"\\\"><span style=\\\"font-size: 1em; font-family: ProximaNova, Helvetica, Arial, &quot;Sans Serif&quot;;\\\"><b>\\\"Exposition « La Mort de Léonard de Vinci : la construction d’un mythe » - Partenariat BNF (Bibliothèque Nationale de France)</b></span><br></p><p class=\\\"\\\">Tous les jours, du 2 mai au 2 septembre 2019.</p><p class=\\\"\\\">La grande exposition intitulée « La Mort de Léonard de Vinci : la construction d’un mythe », articulée autour du monumental tableau (280 cm X 357 cm) de François-Guillaume Ménageot La mort de Léonard de Vinci, et d’une collection de gravures issues des collections nationales, nous éclairera sur la manière dont les contours de l’amitié entre le roi François Ier et Léonard ont été progressivement réécrits par l’Histoire, et assimilés par elle jusqu’à la construction d’un mythe mis au service de l’image de la monarchie française au XVIII<sup>ème</sup> siècle.</p><p>Au cœur de la riche programmation des célébrations du 5ème centenaire, cette exposition majeure viendra aussi rappeler à un public venu des quatre coins du monde la place éternelle qu’occupe Léonard de Vinci en Val de Loire, et à Amboise en particulier où il repose pour l’éternité dans la quiétude de la chapelle du château.\\\"</p>\"\n                },\n                \"start_at\": \"2019-05-02T09:00:00Z\",\n                \"end_at\": \"2019-09-02T18:00:00Z\"\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": {\n                    \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY\"\n                },\n                \"relations\": {\n                    \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/cities\",\n                    \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/companies\",\n                    \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/departments\",\n                    \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/elects\",\n                    \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/etablissement_publics\",\n                    \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/event_groups\",\n                    \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/events\",\n                    \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/facilities\",\n                    \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/news\",\n                    \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/non_profits\",\n                    \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/performers\",\n                    \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/projects\",\n                    \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/regions\",\n                    \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/skills\"\n                },\n                \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/images\",\n                \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/documents\",\n                \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/dates\",\n                \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/type\",\n                \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/8VOeS416xY/types\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"cancelled\",\n                            \"cancellation_reason\",\n                            \"free_admission\",\n                            \"free_admission_condition\",\n                            \"punchline\",\n                            \"name\",\n                            \"blurb\",\n                            \"start_at\",\n                            \"end_at\"\n                        ]\n                    }\n                ],\n                \"instances\": {\n                    \"500-ans-renaissances\": [\n                        \"fr\"\n                    ]\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"items\": 9,\n        \"count\": 9,\n        \"page\": 1\n    },\n    \"links\": {\n        \"self\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events?page=1\",\n        \"pagination\": {\n            \"first\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events?page=1\",\n            \"last\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events?page=1\"\n        }\n    }\n}"}],"_postman_id":"904aeaae-e027-4a22-803f-82f6adf9a459"},{"name":"✅ Show","id":"02a6077a-372b-414d-83db-1b28f49fdb6b","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/{{instance_id}}/events/:id","description":"<p>Détail d'un événement</p>\n","urlObject":{"path":["v2","{{instance_id}}","events",":id"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[{"id":"1dd28a2a-68a2-4590-a77f-0b98e66c735c","name":"✅ Show","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.publidata.io/v2/{{instance_id}}/events/:id","host":["https://api.publidata.io"],"path":["v2","{{instance_id}}","events",":id"],"variable":[{"key":"id","value":"y7KpS6Dgxv"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Tue, 06 Nov 2018 14:50:05 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"811c246d37cc926cc75bf582cd364fb3\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"d619c237-6f78-4100-9d77-b11aa3b6dc53"},{"key":"X-Runtime","value":"0.051868"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"y7KpS6Dgxv\",\n        \"type\": \"event\",\n        \"attributes\": {\n            \"id\": \"y7KpS6Dgxv\",\n            \"created_at\": \"2018-10-31T11:26:32Z\",\n            \"updated_at\": \"2018-11-06T10:56:29Z\",\n            \"cancelled\": false,\n            \"cancellation_reason\": null,\n            \"free_admission\": null,\n            \"free_admission_condition\": null,\n            \"punchline\": {\n                \"fr\": \"62eme Colloque International d'études humanistes du centre d'études supérieures de la Renaissance\"\n            },\n            \"name\": {\n                \"fr\": \"Léonard de Vinci création et innovations \"\n            },\n            \"blurb\": {\n                \"fr\": \"<p class=\\\"is-active\\\">Le 62ème colloque international d’études humanistes du Centre d’études supérieures de la Renaissance de Tours sera consacré à Léonard de Vinci en 2019.&nbsp;</p><p class=\\\"is-active\\\">Cet événement rassemblera les plus grands spécialistes internationaux du sujet et proposera d’aborder toutes les facettes de l’oeuvre de Léonard sous le prisme de l’invention et de l’innovation : mécanique, médecine, architecture, biomimétisme, etc. Une partie de ce colloque se tiendra dans des lieux marqués par la figure de Léonard de Vinci : le Château du Clos Lucé à Amboise et le Château de Chambord.</p>\"\n            },\n            \"start_at\": \"2019-06-01T00:00:00Z\",\n            \"end_at\": \"2019-06-30T00:00:00Z\"\n        },\n        \"relationships\": {},\n        \"links\": {\n            \"self\": {\n                \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv\"\n            },\n            \"relations\": {\n                \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/cities\",\n                \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/companies\",\n                \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/departments\",\n                \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/elects\",\n                \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/etablissement_publics\",\n                \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/event_groups\",\n                \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/events\",\n                \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/facilities\",\n                \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/news\",\n                \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/non_profits\",\n                \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/performers\",\n                \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/projects\",\n                \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/regions\",\n                \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/skills\"\n            },\n            \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/images\",\n            \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/documents\",\n            \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates\",\n            \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/type\",\n            \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/types\"\n        },\n        \"meta\": {\n            \"licenses\": [\n                {\n                    \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                    \"SPDX\": \"ODbL-1.0\",\n                    \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                    \"targets\": [\n                        \"cancelled\",\n                        \"cancellation_reason\",\n                        \"free_admission\",\n                        \"free_admission_condition\",\n                        \"punchline\",\n                        \"name\",\n                        \"blurb\",\n                        \"start_at\",\n                        \"end_at\"\n                    ]\n                }\n            ],\n            \"instances\": {\n                \"500-ans-renaissances\": [\n                    \"fr\"\n                ]\n            }\n        }\n    }\n}"}],"_postman_id":"02a6077a-372b-414d-83db-1b28f49fdb6b"},{"name":"✅ Show with included resources","id":"f8bf872e-6d13-4a8d-8f70-79ec213f9464","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id?include=dates,types","description":"<p>Avec le paramètre <code>include</code> vous avez la possibilité d'insérer dans la vue principale des ressources liées, vous évitant des requêtes supplémentaires.</p>\n","urlObject":{"path":["v2",":instance","events",":id"],"host":["https://api.publidata.io"],"query":[{"description":{"content":"<p>Liste des ressources à insérer</p>\n","type":"text/plain"},"key":"include","value":"dates,types"}],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[{"id":"3cdf6c2d-339d-48cb-9a8d-49efab5bac91","name":"✅ Show with included resources","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.publidata.io/v2/:instance/events/:id?include=dates,types","host":["https://api.publidata.io"],"path":["v2",":instance","events",":id"],"query":[{"key":"include","value":"dates,types","description":"Liste des ressources à insérer"}],"variable":[{"key":"instance","value":"500-ans-renaissances"},{"key":"id","value":"y7KpS6Dgxv"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Tue, 06 Nov 2018 14:54:52 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"2c566edafdfca2fe7ed4fc7f8ef3e15b\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"b8d67f08-016a-4d6c-b10e-7d6467c5bcdf"},{"key":"X-Runtime","value":"0.483946"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"y7KpS6Dgxv\",\n        \"type\": \"event\",\n        \"attributes\": {\n            \"id\": \"y7KpS6Dgxv\",\n            \"created_at\": \"2018-10-31T11:26:32Z\",\n            \"updated_at\": \"2018-11-06T10:56:29Z\",\n            \"cancelled\": false,\n            \"cancellation_reason\": null,\n            \"free_admission\": null,\n            \"free_admission_condition\": null,\n            \"punchline\": {\n                \"fr\": \"62eme Colloque International d'études humanistes du centre d'études supérieures de la Renaissance\"\n            },\n            \"name\": {\n                \"fr\": \"Léonard de Vinci création et innovations \"\n            },\n            \"blurb\": {\n                \"fr\": \"<p class=\\\"is-active\\\">Le 62ème colloque international d’études humanistes du Centre d’études supérieures de la Renaissance de Tours sera consacré à Léonard de Vinci en 2019.&nbsp;</p><p class=\\\"is-active\\\">Cet événement rassemblera les plus grands spécialistes internationaux du sujet et proposera d’aborder toutes les facettes de l’oeuvre de Léonard sous le prisme de l’invention et de l’innovation : mécanique, médecine, architecture, biomimétisme, etc. Une partie de ce colloque se tiendra dans des lieux marqués par la figure de Léonard de Vinci : le Château du Clos Lucé à Amboise et le Château de Chambord.</p>\"\n            },\n            \"start_at\": \"2019-06-01T00:00:00Z\",\n            \"end_at\": \"2019-06-30T00:00:00Z\"\n        },\n        \"relationships\": {\n            \"types\": {\n                \"data\": []\n            },\n            \"dates\": {\n                \"data\": [\n                    {\n                        \"id\": \"axGeikm1VN\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"8VZZiNZ8Vd\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"eVgRimO4Lo\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"E79OiqZQLM\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"YVYgiW4lxD\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"87oei8vYLQ\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"gLb4iOga7J\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"o7EMiQDr75\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"B72ZiYOv7O\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"y7KAiEO4Lv\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"d7DzidZMLB\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"DLkqijMy7a\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"G7jaiXOoVg\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"jVJvi2nyVR\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"J7d3igMRVB\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"2VX9iOjl7N\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"DVA6ivYn7X\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"8VvJieDWVv\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"D744i3N078\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"NLwjibKKxD\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"Q7BaiA1AVb\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"Kx09iEraLX\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"y7KAiEOMLv\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"d7DzidZmLB\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"DLkqijM67a\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"G7jaiXOAVg\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"jVJvi2nXVR\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"J7d3igMbVB\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"2VX9iOjd7N\",\n                        \"type\": \"date\"\n                    },\n                    {\n                        \"id\": \"DVA6ivYR7X\",\n                        \"type\": \"date\"\n                    }\n                ]\n            }\n        },\n        \"links\": {\n            \"self\": {\n                \"500-ans-renaissances\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv\"\n            },\n            \"relations\": {\n                \"cities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/cities\",\n                \"companies\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/companies\",\n                \"departments\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/departments\",\n                \"elects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/elects\",\n                \"etablissement_publics\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/etablissement_publics\",\n                \"event_groups\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/event_groups\",\n                \"events\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/events\",\n                \"facilities\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/facilities\",\n                \"news\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/news\",\n                \"non_profits\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/non_profits\",\n                \"performers\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/performers\",\n                \"projects\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/projects\",\n                \"regions\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/regions\",\n                \"skills\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/skills\"\n            },\n            \"images\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/images\",\n            \"documents\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/documents\",\n            \"dates\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates\",\n            \"type\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/type\",\n            \"types\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/types\"\n        },\n        \"meta\": {\n            \"included\": [\n                \"dates\",\n                \"types\"\n            ],\n            \"licenses\": [\n                {\n                    \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                    \"SPDX\": \"ODbL-1.0\",\n                    \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                    \"targets\": [\n                        \"cancelled\",\n                        \"cancellation_reason\",\n                        \"free_admission\",\n                        \"free_admission_condition\",\n                        \"punchline\",\n                        \"name\",\n                        \"blurb\",\n                        \"start_at\",\n                        \"end_at\"\n                    ]\n                }\n            ],\n            \"instances\": {\n                \"500-ans-renaissances\": [\n                    \"fr\"\n                ]\n            }\n        }\n    },\n    \"included\": [\n        {\n            \"id\": \"axGeikm1VN\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"axGeikm1VN\",\n                \"created_at\": \"2018-10-31T11:33:15Z\",\n                \"updated_at\": \"2018-10-31T11:33:15Z\",\n                \"start_at\": \"2019-06-30T00:00:00Z\",\n                \"end_at\": \"2019-06-30T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 30 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"8VZZiNZ8Vd\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"8VZZiNZ8Vd\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-29T00:00:00Z\",\n                \"end_at\": \"2019-06-29T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 29 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"eVgRimO4Lo\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"eVgRimO4Lo\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-28T00:00:00Z\",\n                \"end_at\": \"2019-06-28T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 28 Fr 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"E79OiqZQLM\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"E79OiqZQLM\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-27T00:00:00Z\",\n                \"end_at\": \"2019-06-27T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 27 Th 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"YVYgiW4lxD\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"YVYgiW4lxD\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-26T00:00:00Z\",\n                \"end_at\": \"2019-06-26T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 26 We 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"87oei8vYLQ\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"87oei8vYLQ\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-25T00:00:00Z\",\n                \"end_at\": \"2019-06-25T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 25 Tu 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"gLb4iOga7J\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"gLb4iOga7J\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-24T00:00:00Z\",\n                \"end_at\": \"2019-06-24T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 24 Mo 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"o7EMiQDr75\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"o7EMiQDr75\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-23T00:00:00Z\",\n                \"end_at\": \"2019-06-23T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 23 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"B72ZiYOv7O\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"B72ZiYOv7O\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-22T00:00:00Z\",\n                \"end_at\": \"2019-06-22T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 22 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"y7KAiEO4Lv\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"y7KAiEO4Lv\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-21T00:00:00Z\",\n                \"end_at\": \"2019-06-21T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 21 Fr 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"d7DzidZMLB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"d7DzidZMLB\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-20T00:00:00Z\",\n                \"end_at\": \"2019-06-20T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 20 Th 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DLkqijMy7a\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DLkqijMy7a\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-19T00:00:00Z\",\n                \"end_at\": \"2019-06-19T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 19 We 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"G7jaiXOoVg\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"G7jaiXOoVg\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-18T00:00:00Z\",\n                \"end_at\": \"2019-06-18T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 18 Tu 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"jVJvi2nyVR\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"jVJvi2nyVR\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-17T00:00:00Z\",\n                \"end_at\": \"2019-06-17T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 17 Mo 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"J7d3igMRVB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"J7d3igMRVB\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-16T00:00:00Z\",\n                \"end_at\": \"2019-06-16T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 16 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"2VX9iOjl7N\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"2VX9iOjl7N\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-15T00:00:00Z\",\n                \"end_at\": \"2019-06-15T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 15 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DVA6ivYn7X\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DVA6ivYn7X\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-14T00:00:00Z\",\n                \"end_at\": \"2019-06-14T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 14 Fr 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"8VvJieDWVv\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"8VvJieDWVv\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-13T00:00:00Z\",\n                \"end_at\": \"2019-06-13T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 13 Th 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"D744i3N078\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"D744i3N078\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-12T00:00:00Z\",\n                \"end_at\": \"2019-06-12T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 12 We 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"NLwjibKKxD\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"NLwjibKKxD\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-11T00:00:00Z\",\n                \"end_at\": \"2019-06-11T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 11 Tu 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"Q7BaiA1AVb\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"Q7BaiA1AVb\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-10T00:00:00Z\",\n                \"end_at\": \"2019-06-10T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 10 Mo 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"Kx09iEraLX\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"Kx09iEraLX\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-09T00:00:00Z\",\n                \"end_at\": \"2019-06-09T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 09 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"y7KAiEOMLv\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"y7KAiEOMLv\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-08T00:00:00Z\",\n                \"end_at\": \"2019-06-08T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 08 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"d7DzidZmLB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"d7DzidZmLB\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-07T00:00:00Z\",\n                \"end_at\": \"2019-06-07T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 07 Fr 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DLkqijM67a\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DLkqijM67a\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-06T00:00:00Z\",\n                \"end_at\": \"2019-06-06T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 06 Th 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"G7jaiXOAVg\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"G7jaiXOAVg\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-05T00:00:00Z\",\n                \"end_at\": \"2019-06-05T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 05 We 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"jVJvi2nXVR\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"jVJvi2nXVR\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-04T00:00:00Z\",\n                \"end_at\": \"2019-06-04T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 04 Tu 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"J7d3igMbVB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"J7d3igMbVB\",\n                \"created_at\": \"2018-10-31T11:33:11Z\",\n                \"updated_at\": \"2018-10-31T11:33:11Z\",\n                \"start_at\": \"2019-06-03T00:00:00Z\",\n                \"end_at\": \"2019-06-03T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 03 Mo 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"2VX9iOjd7N\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"2VX9iOjd7N\",\n                \"created_at\": \"2018-10-31T11:33:11Z\",\n                \"updated_at\": \"2018-10-31T11:33:11Z\",\n                \"start_at\": \"2019-06-02T00:00:00Z\",\n                \"end_at\": \"2019-06-02T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 02 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DVA6ivYR7X\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DVA6ivYR7X\",\n                \"created_at\": \"2018-10-31T11:33:11Z\",\n                \"updated_at\": \"2018-10-31T11:33:11Z\",\n                \"start_at\": \"2019-06-01T00:00:00Z\",\n                \"end_at\": \"2019-06-01T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 01 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"wo7NbcKj7n\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"wo7NbcKj7n\",\n                \"created_at\": \"2018-10-23T01:23:57Z\",\n                \"updated_at\": \"2018-10-23T01:24:19Z\",\n                \"name\": {\n                    \"fr\": \"Rassemblement\"\n                }\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": \"https://publidata-staging.herokuapp.com/api/v2/event_types/wo7NbcKj7n\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"Wn7lQcrKxm\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"Wn7lQcrKxm\",\n                \"created_at\": \"2018-10-23T01:23:57Z\",\n                \"updated_at\": \"2018-10-23T01:24:19Z\",\n                \"name\": {\n                    \"fr\": \"Colloque\"\n                }\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": \"https://publidata-staging.herokuapp.com/api/v2/event_types/Wn7lQcrKxm\"\n            },\n            \"meta\": {\n                \"included\": [\n                    \"dates\",\n                    \"types\"\n                ],\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        }\n    ]\n}"}],"_postman_id":"f8bf872e-6d13-4a8d-8f70-79ec213f9464"},{"name":"🚧 Show translated","id":"42a982c4-b44e-4118-a7b9-65c51f79111d","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id?lang=en","description":"<p>Le paramètre <code>lang</code> vous permet de récupérer les contenus éditoriaux d'une ressource dans une langue donnée.</p>\n","urlObject":{"path":["v2",":instance","events",":id"],"host":["https://api.publidata.io"],"query":[{"description":{"content":"<p>Langue désirée</p>\n","type":"text/plain"},"key":"lang","value":"en"}],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"42a982c4-b44e-4118-a7b9-65c51f79111d"},{"name":"🚧 Search","id":"85b9b2ad-a73a-4ebb-b026-71bddc69f2d5","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.publidata.io/v2/:instance/events/?q=Sénart&size=10&page=1&marker=false&instances[]=2&types[]=Event&performers[]=Nakht&facilities[]=8&events[]=1&event_groups[]=1&news[]=1&projects[]=1&cities[]=7&etablissement_publics[]=1&departments[]=1&regions[]=1&skills[]=1&elects[]=1&bbox[]&event_types[]=Oeuvre d'art&event_styles[]=Gymnastique&date[start]=1526054400&date[end]=1526083199&price[min]=10&price[max]=50&free_admission=true&accessibilities[]=has_deaf_accessibility","description":"<p>Recherche d'événements : 🚧 à venir... </p>\n","urlObject":{"path":["v2",":instance","events",""],"host":["https://api.publidata.io"],"query":[{"description":{"content":"<p>Filtre textuel</p>\n","type":"text/plain"},"key":"q","value":"Sénart"},{"description":{"content":"<p>Nombre de résultats retournés (defaut: 10)</p>\n","type":"text/plain"},"key":"size","value":"10"},{"description":{"content":"<p>Pagination (defaut: 1)</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>Filtre booléen pour ne retourner que les locations (default: false)</p>\n","type":"text/plain"},"key":"marker","value":"false"},{"description":{"content":"<p>Filtre par instance (array d'id)</p>\n","type":"text/plain"},"key":"instances[]","value":"2"},{"description":{"content":"<p>Filtre par type de ressource (array de type parmi la liste suivante : News Event Facility Project City Epci Department Region EventGroup Skill Elect Performer Company NonProfit EtablissementPublic)</p>\n","type":"text/plain"},"key":"types[]","value":"Event"},{"description":{"content":"<p>Filtre par artiste lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"performers[]","value":"Nakht"},{"description":{"content":"<p>Filtre par équipement lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"facilities[]","value":"8"},{"description":{"content":"<p>Filtre par événement lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"events[]","value":"1"},{"description":{"content":"<p>Filtre par groupe d'événements lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"event_groups[]","value":"1"},{"description":{"content":"<p>Filtre par actualité liée (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"news[]","value":"1"},{"description":{"content":"<p>Filtre par projet lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"projects[]","value":"1"},{"description":{"content":"<p>Filtre par ville et location liées (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"cities[]","value":"7"},{"description":{"content":"<p>Filtre par établissement public lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"etablissement_publics[]","value":"1"},{"description":{"content":"<p>Filtre par departement lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"departments[]","value":"1"},{"description":{"content":"<p>Filtre par region liée (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"regions[]","value":"1"},{"description":{"content":"<p>Filtre par compétence liée (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"skills[]","value":"1"},{"description":{"content":"<p>Filtre par élu lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"elects[]","value":"1"},{"description":{"content":"<p>Filtre géographique (array de latitudes, longitudes dans l'ordre suivant minX, minY, maxX, maxY)</p>\n","type":"text/plain"},"key":"bbox[]","value":null},{"description":{"content":"<p>Filtre par type d'événement (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"event_types[]","value":"Oeuvre d'art"},{"description":{"content":"<p>Filtre par style d'événement (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"event_styles[]","value":"Gymnastique"},{"description":{"content":"<p>Filtre par date/heure de début (timestamp en seconde)</p>\n","type":"text/plain"},"key":"date[start]","value":"1526054400"},{"description":{"content":"<p>Filtre par date/heure de fin (timestamp en seconde)</p>\n","type":"text/plain"},"key":"date[end]","value":"1526083199"},{"description":{"content":"<p>Filtre de prix minimum</p>\n","type":"text/plain"},"key":"price[min]","value":"10"},{"description":{"content":"<p>Filtre de prix maximum</p>\n","type":"text/plain"},"key":"price[max]","value":"50"},{"description":{"content":"<p>Filtre de gratuité (boolean)</p>\n","type":"text/plain"},"key":"free_admission","value":"true"},{"description":{"content":"<p>Filtre d'accessibilité (array de string)</p>\n","type":"text/plain"},"key":"accessibilities[]","value":"has_deaf_accessibility"}],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"}]}},"response":[{"id":"404bb1f0-d015-402c-8ad7-4ab253fa4288","name":"Search events","originalRequest":{"method":"GET","header":[],"url":{"raw":"www.publidata.io/api/v1/events?q=&options[geo][top_left][lat]=49.05965195372349&options[geo][top_left][lon]=2.1371613664061897&options[geo][bottom_right][lat]=48.21570798955211&options[geo][bottom_right][lon]=2.7688752335936897&options[city]=Combs-la-Ville&options[paging][from]=0&options[event_types][]=Concert&options[dates][start_date]=1521812100000&options[dates][end_date]=1522499700000&options[instances][]=2","host":["www","publidata","io"],"path":["api","v1","events"],"query":[{"key":"q","value":"","description":"Recherche (full-text)"},{"key":"options[geo][top_left][lat]","value":"49.05965195372349","description":"Latitude coin supérieur gauche geo-box (lat)"},{"key":"options[geo][top_left][lon]","value":"2.1371613664061897","description":"Longitude coin supérieur gauche geo-box (lon)"},{"key":"options[geo][bottom_right][lat]","value":"48.21570798955211","description":"Latitude coin inférieur droit geo-box (lat)"},{"key":"options[geo][bottom_right][lon]","value":"2.7688752335936897","description":"Longitude coin inférieur droit geo-box (lon)"},{"key":"options[city]","value":"Combs-la-Ville","description":"Ville (full-text ou code postal)"},{"key":"options[paging][from]","value":"0","description":"Début de la pagination (integer)"},{"key":"options[event_types][]","value":"Concert","description":"Types d'événement (array de string)"},{"key":"options[dates][start_date]","value":"1521812100000","description":"Date de début (format timestamp unix 1508267068688)"},{"key":"options[dates][end_date]","value":"1522499700000","description":"Date de fin (format timestamp unix 1539803068688)"},{"key":"options[instances][]","value":"2"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"took\": 11,\n    \"timed_out\": false,\n    \"_shards\": {\n        \"total\": 1,\n        \"successful\": 1,\n        \"failed\": 0\n    },\n    \"hits\": {\n        \"total\": 2,\n        \"max_score\": 0.9812665,\n        \"hits\": [\n            {\n                \"_index\": \"events\",\n                \"_type\": \"event\",\n                \"_id\": \"3241\",\n                \"_score\": 0.9812665,\n                \"_source\": {\n                    \"id\": 3241,\n                    \"name\": \"Concert des orchestres\",\n                    \"slug\": \"concert-des-orchestres\",\n                    \"status\": \"published\",\n                    \"free_admission\": true,\n                    \"start_date\": \"2018-03-23T00:00:00.000+01:00\",\n                    \"end_date\": \"2018-03-23T00:00:00.000+01:00\",\n                    \"punchline\": \"Le vendredi 23 mars 2018 à 20h au Théâtre de la Coupole, les musiciens du Conservatoire Maurice Ohana de Combs-la-ville vous attendent pour leur rendez-vous annuel...\",\n                    \"blurb\": \"Cette soirée donne la possibilité à plusieurs formations orchestrales du conservatoire Maurice Ohana de se produire sur scène. \\r\\n\\r\\nProgramme musical éclectique et varié, ce concert  permet de vivre la musique ensemble et de la partager sans modération avec le public.\",\n                    \"linked_objects\": [\n                        {\n                            \"id\": 180,\n                            \"type\": \"Facility\",\n                            \"name\": \"La Coupole\"\n                        },\n                        {\n                            \"id\": 12,\n                            \"type\": \"City\",\n                            \"name\": \"Combs-la-Ville\"\n                        }\n                    ],\n                    \"cover_picture\": {\n                        \"id\": 22632,\n                        \"name\": \"image de couverture de Concert des orchestres\",\n                        \"alt\": \"image de couverture de Concert des orchestres\",\n                        \"description\": \"image de couverture de Concert des orchestres\",\n                        \"slug\": null,\n                        \"image_urls_as_json\": {\n                            \"image_original_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/632/original/open-uri20171002-4-1etqlbo?1506962457\",\n                            \"image_small_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/632/image_small/open-uri20171002-4-1etqlbo?1506962457\",\n                            \"image_medium_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/632/image_medium/open-uri20171002-4-1etqlbo?1506962457\",\n                            \"image_large_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/632/image_large/open-uri20171002-4-1etqlbo?1506962457\"\n                        }\n                    },\n                    \"instances\": [\n                        {\n                            \"id\": 2,\n                            \"slug\": \"portail-sortir-gps\"\n                        }\n                    ],\n                    \"event_type\": {\n                        \"id\": 13,\n                        \"name\": \"Concert\"\n                    },\n                    \"event_styles\": [\n                        {\n                            \"id\": 82,\n                            \"name\": \"World Music\"\n                        }\n                    ],\n                    \"event_dates\": [\n                        {\n                            \"id\": 37799,\n                            \"start_hour\": \"2000-01-01T20:00:00.000Z\",\n                            \"end_hour\": \"2000-01-01T22:00:00.000Z\",\n                            \"date\": \"2018-03-23T00:00:00.000+01:00\",\n                            \"sold_out\": false,\n                            \"start_date\": \"2018-03-23T20:00:00.000+00:00\",\n                            \"end_date\": \"2018-03-23T22:00:00.000+00:00\"\n                        }\n                    ],\n                    \"facilities\": [\n                        {\n                            \"id\": 180,\n                            \"name\": \"La Coupole\",\n                            \"slug\": \"la-coupole\",\n                            \"address\": \"Rue Jean François Millet, 77380 Combs-la-Ville, France\",\n                            \"location\": {\n                                \"lat\": 48.659695,\n                                \"lon\": 2.5662415\n                            }\n                        }\n                    ],\n                    \"locations\": [],\n                    \"fees\": [],\n                    \"tags\": [],\n                    \"pages\": [\n                        {\n                            \"id\": 7659,\n                            \"instance\": {\n                                \"id\": 2,\n                                \"slug\": \"portail-sortir-gps\"\n                            }\n                        }\n                    ]\n                }\n            },\n            {\n                \"_index\": \"events\",\n                \"_type\": \"event\",\n                \"_id\": \"3983\",\n                \"_score\": 0.9794048,\n                \"_source\": {\n                    \"id\": 3983,\n                    \"name\": \"Après-midi musicale: Claude Debussy\",\n                    \"slug\": \"apres-midi-musicale-claude-debussy\",\n                    \"status\": \"published\",\n                    \"free_admission\": true,\n                    \"start_date\": \"2018-03-24T00:00:00.000+01:00\",\n                    \"end_date\": \"2018-03-24T00:00:00.000+01:00\",\n                    \"punchline\": \"A l'occasion du centenaire de la mort de Claude Debussy, la media-ludothèque et le conservatoire Maurice Ohana vous invitent à une après-midi musical, le samedi 24 mars à partir de 15h30.\",\n                    \"blurb\": \"Claude Debussy (1862-1918) était un compositeur français. Pour célébrer son centenaire, nous vous invitons à un après-midi musical. Au programme, une conférence par Bruno Giner sur le compositeur à 15h30. \\r\\nPuis, à 18h, les élèves du conservatoire interpréteront une sélection d’œuvres de Claude Debussy.\",\n                    \"linked_objects\": [\n                        {\n                            \"id\": 42,\n                            \"type\": \"Facility\",\n                            \"name\": \"Médiathèque de Combs-la-Ville\"\n                        },\n                        {\n                            \"id\": 12,\n                            \"type\": \"City\",\n                            \"name\": \"Combs-la-Ville\"\n                        }\n                    ],\n                    \"cover_picture\": {\n                        \"id\": 24665,\n                        \"name\": \"image de couverture de Après-midi musicale: Claude Debussy\",\n                        \"alt\": \"image de couverture de Après-midi musicale: Claude Debussy\",\n                        \"description\": \"image de couverture de Après-midi musicale: Claude Debussy\",\n                        \"slug\": null,\n                        \"image_urls_as_json\": {\n                            \"image_original_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/665/original/Photo_23a_Claude_Debussy.jpg?1516441408\",\n                            \"image_small_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/665/image_small/Photo_23a_Claude_Debussy.jpg?1516441408\",\n                            \"image_medium_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/665/image_medium/Photo_23a_Claude_Debussy.jpg?1516441408\",\n                            \"image_large_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/665/image_large/Photo_23a_Claude_Debussy.jpg?1516441408\"\n                        }\n                    },\n                    \"instances\": [\n                        {\n                            \"id\": 2,\n                            \"slug\": \"portail-sortir-gps\"\n                        }\n                    ],\n                    \"event_type\": {\n                        \"id\": 13,\n                        \"name\": \"Concert\"\n                    },\n                    \"event_styles\": [\n                        {\n                            \"id\": 111,\n                            \"name\": \"Musique Classique\"\n                        }\n                    ],\n                    \"event_dates\": [\n                        {\n                            \"id\": 41100,\n                            \"start_hour\": \"2000-01-01T15:30:00.000Z\",\n                            \"end_hour\": \"2000-01-01T19:30:00.000Z\",\n                            \"date\": \"2018-03-24T00:00:00.000+01:00\",\n                            \"sold_out\": false,\n                            \"start_date\": \"2018-03-24T15:30:00.000+00:00\",\n                            \"end_date\": \"2018-03-24T19:30:00.000+00:00\"\n                        }\n                    ],\n                    \"facilities\": [\n                        {\n                            \"id\": 42,\n                            \"name\": \"Médiathèque de Combs-la-Ville\",\n                            \"slug\": \"mediatheque-de-combs-la-ville\",\n                            \"address\": \"Rue Jean François Millet, 77380 Combs-la-Ville, France\",\n                            \"location\": {\n                                \"lat\": 48.659695,\n                                \"lon\": 2.5662415\n                            }\n                        }\n                    ],\n                    \"locations\": [],\n                    \"fees\": [],\n                    \"accessibility\": {\n                        \"id\": 1766,\n                        \"deaf_lsf\": false,\n                        \"deaf_vision_based\": false,\n                        \"deaf_subtitle\": false,\n                        \"deaf_hearing_loop\": false,\n                        \"blind_audio_description\": false,\n                        \"blind_darkness_based\": false,\n                        \"blind_text_based\": false,\n                        \"blind_braille\": false,\n                        \"blind_large_print\": false,\n                        \"motor_disabled_access\": true,\n                        \"has_accessibility\": true,\n                        \"has_deaf_accessibility\": false,\n                        \"has_blind_accessibility\": false\n                    },\n                    \"tags\": [\n                        \"Culture\"\n                    ],\n                    \"pages\": [\n                        {\n                            \"id\": 8636,\n                            \"instance\": {\n                                \"id\": 2,\n                                \"slug\": \"portail-sortir-gps\"\n                            }\n                        }\n                    ]\n                }\n            }\n        ]\n    },\n    \"aggregations\": {\n        \"event_styles_terms_agg\": {\n            \"doc_count\": 2,\n            \"name\": {\n                \"doc_count_error_upper_bound\": 0,\n                \"sum_other_doc_count\": 0,\n                \"buckets\": [\n                    {\n                        \"key\": \"111\",\n                        \"doc_count\": 1,\n                        \"name\": {\n                            \"doc_count_error_upper_bound\": 0,\n                            \"sum_other_doc_count\": 0,\n                            \"buckets\": [\n                                {\n                                    \"key\": \"classique\",\n                                    \"doc_count\": 1\n                                },\n                                {\n                                    \"key\": \"musique\",\n                                    \"doc_count\": 1\n                                }\n                            ]\n                        }\n                    },\n                    {\n                        \"key\": \"82\",\n                        \"doc_count\": 1,\n                        \"name\": {\n                            \"doc_count_error_upper_bound\": 0,\n                            \"sum_other_doc_count\": 0,\n                            \"buckets\": [\n                                {\n                                    \"key\": \"music\",\n                                    \"doc_count\": 1\n                                },\n                                {\n                                    \"key\": \"world\",\n                                    \"doc_count\": 1\n                                }\n                            ]\n                        }\n                    }\n                ]\n            }\n        },\n        \"events\": {\n            \"doc_count\": 3838,\n            \"dates\": {\n                \"doc_count\": 11064,\n                \"this_month\": {\n                    \"doc_count\": 737,\n                    \"events\": {\n                        \"doc_count\": 278\n                    }\n                },\n                \"this_week_end\": {\n                    \"doc_count\": 81,\n                    \"events\": {\n                        \"doc_count\": 54\n                    }\n                },\n                \"past\": {\n                    \"doc_count\": 10070,\n                    \"events\": {\n                        \"doc_count\": 3132\n                    }\n                },\n                \"today\": {\n                    \"doc_count\": 34,\n                    \"events\": {\n                        \"doc_count\": 28\n                    }\n                },\n                \"tomorrow\": {\n                    \"doc_count\": 22,\n                    \"events\": {\n                        \"doc_count\": 19\n                    }\n                },\n                \"last_days\": {\n                    \"doc_count\": 133,\n                    \"events\": {\n                        \"doc_count\": 75\n                    }\n                },\n                \"upcoming\": {\n                    \"doc_count\": 1028,\n                    \"events\": {\n                        \"doc_count\": 390\n                    }\n                },\n                \"this_week\": {\n                    \"doc_count\": 197,\n                    \"events\": {\n                        \"doc_count\": 96\n                    }\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"85b9b2ad-a73a-4ebb-b026-71bddc69f2d5"}],"id":"18f818fc-7611-4dd1-b09e-b171bcd15149","_postman_id":"18f818fc-7611-4dd1-b09e-b171bcd15149","description":""},{"name":"Ressources liées","item":[{"name":"✅ Types","id":"bfd34757-7cf3-4b94-a7b4-63c7d8e0ef01","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/types","description":"<p>Type(s) de la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","types"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[{"id":"ce070c80-ebb4-4e55-8743-710c5838e696","name":"✅ Types","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.publidata.io/v2/:instance/events/:id/types","host":["https://api.publidata.io"],"path":["v2",":instance","events",":id","types"],"variable":[{"key":"instance","value":"500-ans-renaissances"},{"key":"id","value":"y7KpS6Dgxv"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Tue, 06 Nov 2018 14:56:10 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"aca7a58992ce54decfd0aa1309558bf9\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"d9a108a9-5d7c-486f-9b8f-620b97ceecb4"},{"key":"X-Runtime","value":"0.137086"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"wo7NbcKj7n\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"wo7NbcKj7n\",\n                \"created_at\": \"2018-10-23T01:23:57Z\",\n                \"updated_at\": \"2018-10-23T01:24:19Z\",\n                \"name\": {\n                    \"fr\": \"Rassemblement\"\n                }\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": \"https://publidata-staging.herokuapp.com/api/v2/event_types/wo7NbcKj7n\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"Wn7lQcrKxm\",\n            \"type\": \"type\",\n            \"attributes\": {\n                \"id\": \"Wn7lQcrKxm\",\n                \"created_at\": \"2018-10-23T01:23:57Z\",\n                \"updated_at\": \"2018-10-23T01:24:19Z\",\n                \"name\": {\n                    \"fr\": \"Colloque\"\n                }\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": \"https://publidata-staging.herokuapp.com/api/v2/event_types/Wn7lQcrKxm\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"name\"\n                        ]\n                    }\n                ]\n            }\n        }\n    ],\n    \"meta\": {\n        \"items\": 2,\n        \"count\": 2,\n        \"page\": 1\n    },\n    \"links\": {\n        \"self\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/types?page=1\",\n        \"pagination\": {\n            \"first\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/types?page=1\",\n            \"last\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/types?page=1\"\n        }\n    }\n}"}],"_postman_id":"bfd34757-7cf3-4b94-a7b4-63c7d8e0ef01"},{"name":"🚧 Themes","id":"a03186c2-c88d-4fa3-bba5-dc2bafaa2939","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/themes","description":"<p>Thème(s) associé(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","themes"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"a03186c2-c88d-4fa3-bba5-dc2bafaa2939"},{"name":"✅ Dates","id":"7fc58368-bb15-4296-80a6-4740208f0eb0","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/dates","description":"<p>Date(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","dates"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[{"id":"7c14e47b-0a8b-4226-baf4-dc0db74a96eb","name":"✅ Dates","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.publidata.io/v2/:instance/events/:id/dates","host":["https://api.publidata.io"],"path":["v2",":instance","events",":id","dates"],"variable":[{"key":"instance","value":"500-ans-renaissances"},{"key":"id","value":"y7KpS6Dgxv"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Date","value":"Tue, 06 Nov 2018 14:57:37 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Vary","value":"Accept-Encoding, Origin"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"5019bf7102c4e9c481afd4dc20c410e1\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"5b74b321-cdd9-461b-a32e-4263c646d08b"},{"key":"X-Runtime","value":"0.316049"},{"key":"Strict-Transport-Security","value":"max-age=31536000"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"DVA6ivYR7X\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DVA6ivYR7X\",\n                \"created_at\": \"2018-10-31T11:33:11Z\",\n                \"updated_at\": \"2018-10-31T11:33:11Z\",\n                \"start_at\": \"2019-06-01T00:00:00Z\",\n                \"end_at\": \"2019-06-01T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 01 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"2VX9iOjd7N\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"2VX9iOjd7N\",\n                \"created_at\": \"2018-10-31T11:33:11Z\",\n                \"updated_at\": \"2018-10-31T11:33:11Z\",\n                \"start_at\": \"2019-06-02T00:00:00Z\",\n                \"end_at\": \"2019-06-02T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 02 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"J7d3igMbVB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"J7d3igMbVB\",\n                \"created_at\": \"2018-10-31T11:33:11Z\",\n                \"updated_at\": \"2018-10-31T11:33:11Z\",\n                \"start_at\": \"2019-06-03T00:00:00Z\",\n                \"end_at\": \"2019-06-03T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 03 Mo 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"jVJvi2nXVR\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"jVJvi2nXVR\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-04T00:00:00Z\",\n                \"end_at\": \"2019-06-04T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 04 Tu 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"G7jaiXOAVg\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"G7jaiXOAVg\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-05T00:00:00Z\",\n                \"end_at\": \"2019-06-05T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 05 We 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DLkqijM67a\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DLkqijM67a\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-06T00:00:00Z\",\n                \"end_at\": \"2019-06-06T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 06 Th 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"d7DzidZmLB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"d7DzidZmLB\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-07T00:00:00Z\",\n                \"end_at\": \"2019-06-07T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 07 Fr 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"y7KAiEOMLv\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"y7KAiEOMLv\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-08T00:00:00Z\",\n                \"end_at\": \"2019-06-08T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 08 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"Kx09iEraLX\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"Kx09iEraLX\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-09T00:00:00Z\",\n                \"end_at\": \"2019-06-09T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 09 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"Q7BaiA1AVb\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"Q7BaiA1AVb\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-10T00:00:00Z\",\n                \"end_at\": \"2019-06-10T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 10 Mo 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"NLwjibKKxD\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"NLwjibKKxD\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-11T00:00:00Z\",\n                \"end_at\": \"2019-06-11T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 11 Tu 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"D744i3N078\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"D744i3N078\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-12T00:00:00Z\",\n                \"end_at\": \"2019-06-12T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 12 We 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"8VvJieDWVv\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"8VvJieDWVv\",\n                \"created_at\": \"2018-10-31T11:33:12Z\",\n                \"updated_at\": \"2018-10-31T11:33:12Z\",\n                \"start_at\": \"2019-06-13T00:00:00Z\",\n                \"end_at\": \"2019-06-13T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 13 Th 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DVA6ivYn7X\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DVA6ivYn7X\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-14T00:00:00Z\",\n                \"end_at\": \"2019-06-14T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 14 Fr 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"2VX9iOjl7N\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"2VX9iOjl7N\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-15T00:00:00Z\",\n                \"end_at\": \"2019-06-15T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 15 Sa 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"J7d3igMRVB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"J7d3igMRVB\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-16T00:00:00Z\",\n                \"end_at\": \"2019-06-16T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 16 Su 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"jVJvi2nyVR\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"jVJvi2nyVR\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-17T00:00:00Z\",\n                \"end_at\": \"2019-06-17T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 17 Mo 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"G7jaiXOoVg\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"G7jaiXOoVg\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-18T00:00:00Z\",\n                \"end_at\": \"2019-06-18T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 18 Tu 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"DLkqijMy7a\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"DLkqijMy7a\",\n                \"created_at\": \"2018-10-31T11:33:13Z\",\n                \"updated_at\": \"2018-10-31T11:33:13Z\",\n                \"start_at\": \"2019-06-19T00:00:00Z\",\n                \"end_at\": \"2019-06-19T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 19 We 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        },\n        {\n            \"id\": \"d7DzidZMLB\",\n            \"type\": \"date\",\n            \"attributes\": {\n                \"id\": \"d7DzidZMLB\",\n                \"created_at\": \"2018-10-31T11:33:14Z\",\n                \"updated_at\": \"2018-10-31T11:33:14Z\",\n                \"start_at\": \"2019-06-20T00:00:00Z\",\n                \"end_at\": \"2019-06-20T00:00:00Z\",\n                \"label\": {\n                    \"fr\": \"\"\n                },\n                \"opening_hours\": \"2019 Jun 20 Th 00:00-24:00\",\n                \"sold_out\": false\n            },\n            \"relationships\": {},\n            \"links\": {\n                \"self\": null,\n                \"event\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/\"\n            },\n            \"meta\": {\n                \"licenses\": [\n                    {\n                        \"type\": \"ODC Open Database License (ODbL) version 1.0\",\n                        \"SPDX\": \"ODbL-1.0\",\n                        \"link\": \"https://spdx.org/licenses/ODbL-1.0.html#licenseText\",\n                        \"targets\": [\n                            \"start_at\",\n                            \"end_at\",\n                            \"label\",\n                            \"opening_hours\",\n                            \"sold_out\"\n                        ]\n                    }\n                ]\n            }\n        }\n    ],\n    \"meta\": {\n        \"items\": 20,\n        \"count\": 30,\n        \"page\": 1\n    },\n    \"links\": {\n        \"self\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates?page=1\",\n        \"pagination\": {\n            \"first\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates?page=1\",\n            \"next\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates?page=2\",\n            \"last\": \"https://publidata-staging.herokuapp.com/api/v2/500-ans-renaissances/events/y7KpS6Dgxv/dates?page=2\"\n        }\n    }\n}"}],"_postman_id":"7fc58368-bb15-4296-80a6-4740208f0eb0"},{"name":"🚧 Tickets","id":"b2add776-faf0-45c3-9994-84d376284d33","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/tickets","description":"<p>Billetterie(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","tickets"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"b2add776-faf0-45c3-9994-84d376284d33"},{"name":"🚧 Fees","id":"8cf27f57-2ec9-4888-93f9-26751abbe2d3","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/fees","description":"<p>Prix lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","fees"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"8cf27f57-2ec9-4888-93f9-26751abbe2d3"},{"name":"🚧 Contacts","id":"ec47143e-7b3b-4c03-a250-4375a849eb69","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/contacts","description":"<p>Information(s) de contact liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","contacts"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"ec47143e-7b3b-4c03-a250-4375a849eb69"},{"name":"🚧 Socials","id":"dfc53192-1d0d-4454-8f07-bbf57569dc71","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/socials","description":"<p>Information(s) sociale(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","socials"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"dfc53192-1d0d-4454-8f07-bbf57569dc71"},{"name":"🚧 Public","id":"2d5341ad-5e98-4e57-aadb-fcd64afce08d","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/public","description":"<p>Public associé à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","public"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"2d5341ad-5e98-4e57-aadb-fcd64afce08d"},{"name":"🚧 Accessibility","id":"daf7ee00-8249-4faa-bba2-5d8baf1e8fad","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/accessibility","description":"<p>Information(s) d'accessibilité liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","accessibility"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"daf7ee00-8249-4faa-bba2-5d8baf1e8fad"},{"name":"🚧 Partners","id":"2c9dbfa7-f0a9-41ee-88be-6849312e8ac3","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/partners","description":"<p>Partenaire(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","partners"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"2c9dbfa7-f0a9-41ee-88be-6849312e8ac3"},{"name":"🚧 Instances","id":"2aac0e61-e625-4918-a7c4-163274961d52","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/instances","description":"<p>Instance(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","instances"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"2aac0e61-e625-4918-a7c4-163274961d52"},{"name":"🚧 Pages","id":"f653de67-36dd-4362-af51-35f39779af95","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/skills","description":"<p>Page(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","skills"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"f653de67-36dd-4362-af51-35f39779af95"},{"name":"🚧 Contributors","id":"81a1e34e-850d-4d00-a926-40f140f1f3d6","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/contributors","description":"<p>Contributeur(s) / mainteneur(s) de la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","contributors"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"81a1e34e-850d-4d00-a926-40f140f1f3d6"}],"id":"dffee903-5ac0-4e11-9527-4d40c147c36c","_postman_id":"dffee903-5ac0-4e11-9527-4d40c147c36c","description":""},{"name":"Relations","item":[{"name":"🚧 Relations","id":"d5949061-0bbe-4209-b142-e27dd5c9dd1e","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/themes","description":"<p>Ressource(s) associée(s) à ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","themes"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"d5949061-0bbe-4209-b142-e27dd5c9dd1e"},{"name":"🚧 Facilities","id":"478726e9-7101-441a-922d-7e220c521945","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/facilities","description":"<p>Équipement(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","facilities"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"478726e9-7101-441a-922d-7e220c521945"},{"name":"🚧 Cities","id":"e3f7ffc3-5a8e-4aa3-9f9a-9ff1390759f8","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/cities","description":"<p>Commune(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","cities"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"e3f7ffc3-5a8e-4aa3-9f9a-9ff1390759f8"},{"name":"🚧 Departments","id":"ea6cd85e-5716-4cf7-a690-401d781277cf","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/departments","description":"<p>Départements(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","departments"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"ea6cd85e-5716-4cf7-a690-401d781277cf"},{"name":"🚧 Regions","id":"60ffff21-fe9c-400e-a4c2-3b345d4aeeb9","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/regions","description":"<p>Région(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","regions"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"60ffff21-fe9c-400e-a4c2-3b345d4aeeb9"},{"name":"🚧 News","id":"a52bef8d-3947-4ca5-8a1f-bbbdd34b712d","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/news","description":"<p>Actualité(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","news"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"a52bef8d-3947-4ca5-8a1f-bbbdd34b712d"},{"name":"✅ Events","id":"3ad877c2-a743-48c9-a789-8819880133b7","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/events","description":"<p>Événement(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","events"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"3ad877c2-a743-48c9-a789-8819880133b7"},{"name":"🚧 EventGroups","id":"e21c8ea0-9f21-4dfe-aa39-0f0127030072","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/event_groups","description":"<p>Groupe(s) d'événement(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","event_groups"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"e21c8ea0-9f21-4dfe-aa39-0f0127030072"},{"name":"🚧 Projects","id":"f0e0cc40-6d39-4ba1-9e98-c68c0de7249e","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/projects","description":"<p>Projet(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","projects"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"f0e0cc40-6d39-4ba1-9e98-c68c0de7249e"},{"name":"🚧 Performers","id":"d9bed6f4-170a-45b6-bbe5-44f5bac15e69","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/performers","description":"<p>Artiste(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","performers"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"d9bed6f4-170a-45b6-bbe5-44f5bac15e69"},{"name":"🚧 Companies","id":"6662b851-22aa-4fa1-b5ec-8e389921a102","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/companies","description":"<p>Entreprise(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","companies"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"6662b851-22aa-4fa1-b5ec-8e389921a102"},{"name":"🚧 NonProfits","id":"9866f81e-029e-4dce-81b6-d07d191f608f","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/non_profits","description":"<p>Associations(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","non_profits"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"9866f81e-029e-4dce-81b6-d07d191f608f"},{"name":"🚧 EtablissementPublics","id":"45413bb0-3c12-4409-8340-a36233c33e4e","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/etablissement_publics","description":"<p>Établissement(s) public(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","etablissement_publics"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"45413bb0-3c12-4409-8340-a36233c33e4e"},{"name":"🚧 Skills","id":"88ea5b18-8e67-4f03-a800-66b6d62f9f18","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/skills","description":"<p>Compétence(s) liée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","skills"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"88ea5b18-8e67-4f03-a800-66b6d62f9f18"},{"name":"🚧 Elects","id":"ade4f623-0ba2-4979-b300-156ff7a11e43","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/elects","description":"<p>Élus(s) lié(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","elects"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"ade4f623-0ba2-4979-b300-156ff7a11e43"}],"id":"d8900dab-4cc2-449e-82b6-11c16c52a249","description":"<p>A venir... 🚧</p>\n","event":[{"listen":"prerequest","script":{"id":"487c0f48-a1cd-4aae-af2f-4b62ccf8bb0b","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"4dfafa06-8884-4b36-9c42-31cba1746986","type":"text/javascript","exec":[""]}}],"_postman_id":"d8900dab-4cc2-449e-82b6-11c16c52a249"},{"name":"Médias","item":[{"name":"🚧 Medias","id":"17d5fce2-48de-411b-bc66-f6a833db954d","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/medias","description":"<p>Média(s) associé(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","medias"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"17d5fce2-48de-411b-bc66-f6a833db954d"},{"name":"✅ Images","id":"470fe8b7-e177-416e-bb00-849029b68141","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/images","description":"<p>Image(s) associée(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","images"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"470fe8b7-e177-416e-bb00-849029b68141"},{"name":"✅ Documents","id":"f9f8008a-a6d3-46a1-9f8f-e20f3630c021","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/:instance/events/:id/documents","description":"<p>Document(s) associé(s) à la ressource courante</p>\n","urlObject":{"path":["v2",":instance","events",":id","documents"],"host":["https://api.publidata.io"],"query":[],"variable":[{"type":"any","value":"500-ans-renaissances","key":"instance"},{"type":"any","value":"y7KpS6Dgxv","key":"id"}]}},"response":[],"_postman_id":"f9f8008a-a6d3-46a1-9f8f-e20f3630c021"}],"id":"f8f742e1-8984-43ef-934d-088f67cdb922","_postman_id":"f8f742e1-8984-43ef-934d-088f67cdb922","description":""}],"id":"0fd0a869-9a4b-4788-b5a2-f64cd79d2e1d","description":"<p>Les événements</p>\n","event":[{"listen":"prerequest","script":{"id":"768578b7-1e5d-45b7-ab56-2a8b856f2061","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"a419bb76-510b-4b2b-bc5d-608de7e9b0d3","type":"text/javascript","exec":[""]}}],"_postman_id":"0fd0a869-9a4b-4788-b5a2-f64cd79d2e1d"},{"name":"Ordre de travail","item":[{"name":"Index","id":"47e25d37-adeb-4815-8871-97271fa8da4b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"a4a13801ae531a5ca471ada57ce54c6319fa43f3b73d0150e3cb9e87","type":"text"}],"url":"https://api.publidata.io/v2/mel-encombrants/work_orders","description":"<h1 id=\"get-v2api_instancework_orders\">GET /v2/:api_instance/work_orders</h1>\n<p>Récupère la liste des ordres de travail, les événements et pièces-jointes associés, avec possibilité de filtrage, pagination et choix du format de sortie.</p>\n<h2 id=\"query-parameters\">Query Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Paramètre</th>\n<th>Type</th>\n<th>Requis</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>created_after</code></td>\n<td>timestamp</td>\n<td>Non</td>\n<td>Filtre les ordres de travail créés après cette date</td>\n</tr>\n<tr>\n<td><code>created_before</code></td>\n<td>timestamp</td>\n<td>Non</td>\n<td>Filtre les ordres de travail créés avant cette date</td>\n</tr>\n<tr>\n<td><code>updated_after</code></td>\n<td>timestamp</td>\n<td>Non</td>\n<td>Filtre les ordres de travail mis à jour après cette date</td>\n</tr>\n<tr>\n<td><code>updated_before</code></td>\n<td>timestamp</td>\n<td>Non</td>\n<td>Filtre les ordres de travail mis à jour avant cette date</td>\n</tr>\n<tr>\n<td><code>started_after</code></td>\n<td>timestamp</td>\n<td>Non</td>\n<td>Filtre les ordres de travail débutés après cette date</td>\n</tr>\n<tr>\n<td><code>started_before</code></td>\n<td>timestamp</td>\n<td>Non</td>\n<td>Filtre les ordres de travail débutés avant cette date</td>\n</tr>\n<tr>\n<td><code>ended_after</code></td>\n<td>timestamp</td>\n<td>Non</td>\n<td>Filtre les ordres de travail terminés après cette date</td>\n</tr>\n<tr>\n<td><code>ended_before</code></td>\n<td>timestamp</td>\n<td>Non</td>\n<td>Filtre les ordres de travail terminés avant cette date</td>\n</tr>\n<tr>\n<td><code>output_format</code></td>\n<td>string</td>\n<td>Non</td>\n<td>Format de sortie : <code>json</code> (défaut) ou <code>geojson</code></td>\n</tr>\n<tr>\n<td><code>include</code></td>\n<td>string</td>\n<td>Non</td>\n<td>Inclure des ressources liées : <code>attachments</code>  <br /><code>events</code>  <br /><code>events.attachments</code>(séparés par des virgules pour plusieurs)</td>\n</tr>\n<tr>\n<td><code>page</code></td>\n<td>integer</td>\n<td>Non</td>\n<td>Numéro de la page (défaut: 1)</td>\n</tr>\n<tr>\n<td><code>items</code></td>\n<td>integer</td>\n<td>Non</td>\n<td>Nombre d'éléments par page (défaut: 20)</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"inclusion-de-ressources-liées\">Inclusion de ressources liées</h2>\n<p>Le paramètre <code>include</code> permet d'inclure des ressources associées dans la réponse.</p>\n<h3 id=\"valeurs-possibles\">Valeurs possibles</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Valeur</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>attachments</code></td>\n<td>Inclut les pièces jointes associées aux ordres de travail</td>\n</tr>\n<tr>\n<td><code>events</code></td>\n<td>Inclut les événements / anomalies (work_order_events) associés aux ordres de travail</td>\n</tr>\n<tr>\n<td><code>events.attachments</code></td>\n<td>Inclut les pièces jointes associées aux événements</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Note :</strong> Les ressources disponibles pour inclusion sont listées dans <code>meta.includable</code> de chaque work order.</p>\n<h3 id=\"exemples\">Exemples</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>GET /v2/mel-encombrants/work_orders?include=events\nGET /v2/mel-encombrants/work_orders?include=attachments\nGET /v2/mel-encombrants/work_orders?include=attachments,events\nGET /v2/mel-encombrants/work_orders?include=attachments,events,events.attachments\n\n</code></pre><h2 id=\"pagination\">Pagination</h2>\n<p>La réponse inclut automatiquement des métadonnées de pagination et des liens de navigation.</p>\n<h3 id=\"métadonnées-de-pagination\">Métadonnées de pagination</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"meta\": {\n    \"items\": 20,\n    \"count\": 2570,\n    \"page\": 1\n  }\n}\n\n</code></pre>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Champ</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>items</code></td>\n<td>Nombre d'éléments par page</td>\n</tr>\n<tr>\n<td><code>count</code></td>\n<td>Nombre total d'éléments disponibles</td>\n</tr>\n<tr>\n<td><code>page</code></td>\n<td>Numéro de la page actuelle</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"liens-de-navigation\">Liens de navigation</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"links\": {\n    \"self\": \"https://api.publidata.io/v2/work_orders?page=1\",\n    \"pagination\": {\n      \"first\": \"https://api.publidata.io/v2/work_orders?page=1\",\n      \"next\": \"https://api.publidata.io/v2/work_orders?page=2\",\n      \"last\": \"https://api.publidata.io/v2/work_orders?page=129\"\n    }\n  }\n}\n\n</code></pre>\n<h2 id=\"formats-de-sortie\">Formats de sortie</h2>\n<h3 id=\"json-par-défaut\">JSON (par défaut)</h3>\n<p>Format standard avec serializer incluant les métadonnées de pagination.</p>\n<p><strong>Exemple de requête :</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>GET /v2/mel-encombrants/work_orders\nGET /v2/mel-encombrants/work_orders?page=2&amp;items=30\n\n</code></pre><h3 id=\"structure-des-attributs\">Structure des attributs</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribut</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>id</code></td>\n<td>string</td>\n<td>Identifiant unique de l'ordre de travail</td>\n</tr>\n<tr>\n<td><code>created_at</code></td>\n<td>datetime</td>\n<td>Date de création</td>\n</tr>\n<tr>\n<td><code>updated_at</code></td>\n<td>datetime</td>\n<td>Date de dernière modification</td>\n</tr>\n<tr>\n<td><code>name</code></td>\n<td>string</td>\n<td>Nom/titre de l'ordre de travail</td>\n</tr>\n<tr>\n<td><code>message</code></td>\n<td>string</td>\n<td>Message descriptif</td>\n</tr>\n<tr>\n<td><code>sent_to</code></td>\n<td>string</td>\n<td>Destinataire de l'ordre de travail</td>\n</tr>\n<tr>\n<td><code>comment</code></td>\n<td>string/null</td>\n<td>Commentaire ou réponse</td>\n</tr>\n<tr>\n<td><code>start_at</code></td>\n<td>datetime</td>\n<td>Date de début</td>\n</tr>\n<tr>\n<td><code>end_at</code></td>\n<td>datetime/null</td>\n<td>Date de fin</td>\n</tr>\n<tr>\n<td><code>metas</code></td>\n<td>object</td>\n<td>Métadonnées de l'ordre de travail</td>\n</tr>\n<tr>\n<td><code>status</code></td>\n<td>object</td>\n<td>Statut de l'ordre de travail</td>\n</tr>\n<tr>\n<td><code>tags</code></td>\n<td>array</td>\n<td>Liste des tags</td>\n</tr>\n<tr>\n<td><code>address_id</code></td>\n<td>string/null</td>\n<td>Identifiant de l'adresse</td>\n</tr>\n<tr>\n<td><code>latitude</code></td>\n<td>float/null</td>\n<td>Coordonnée latitude</td>\n</tr>\n<tr>\n<td><code>longitude</code></td>\n<td>float/null</td>\n<td>Coordonnée longitude</td>\n</tr>\n<tr>\n<td><code>data</code></td>\n<td>object/null</td>\n<td>Attributs de la demande</td>\n</tr>\n<tr>\n<td><code>metadata</code></td>\n<td>object/null</td>\n<td>Métadonnées de la demande</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"métadonnées-de-lobjet\">Métadonnées de l'objet</h3>\n<p>Chaque ordre de travail inclut des métadonnées dans le champ <code>meta</code> :</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"meta\": {\n    \"included\": [],\n    \"includable\": [\"events\", \"attachments\"],\n  }\n}\n\n</code></pre>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Champ</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>included</code></td>\n<td>Liste des ressources actuellement incluses</td>\n</tr>\n<tr>\n<td><code>includable</code></td>\n<td>Liste des ressources disponibles pour inclusion</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"geojson\">GeoJSON</h3>\n<p>Format GeoJSON FeatureCollection avec géométrie Point.</p>\n<p><strong>Exemple de requête :</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>GET /v2/mel-encombrants/work_orders?output_format=geojson\nGET /v2/mel-encombrants/work_orders.geojson\nGET /v2/mel-encombrants/work_orders.geojson?page=2&amp;items=50\n\n</code></pre><p><strong>Note :</strong> Seuls les work orders avec coordonnées (latitude/longitude non nulles) sont retournés dans ce format.</p>\n<h2 id=\"exemples-de-requêtes\">Exemples de requêtes</h2>\n<h3 id=\"filtrage-par-dates\">Filtrage par dates</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>GET /v2/mel-encombrants/work_orders?created_after=1640995200&amp;created_before=1672531199\n\n</code></pre><h3 id=\"pagination-personnalisée\">Pagination personnalisée</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>GET /v2/mel-encombrants/work_orders?page=3&amp;items=50\n\n</code></pre><h3 id=\"avec-ressources-incluses\">Avec ressources incluses</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>GET /v2/mel-encombrants/work_orders?include=events\nGET /v2/mel-encombrants/work_orders?include=attachments\nGET /v2/mel-encombrants/work_orders?include=attachments,events\nGET /v2/mel-encombrants/work_orders?include=attachments,events,events.attachments\n\n</code></pre><h3 id=\"combinaison-de-filtres\">Combinaison de filtres</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>GET /v2/mel-encombrants/work_orders?include=events&amp;page=2&amp;items=50\nGET /v2/mel-encombrants/work_orders?created_after=1640995200&amp;started_before=1672531199&amp;include=attachments,events,events.attachments\n\n</code></pre>","urlObject":{"path":["v2","mel-encombrants","work_orders"],"host":["https://api.publidata.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"47e25d37-adeb-4815-8871-97271fa8da4b"},{"name":"Show","id":"daa7c283-bbab-4b7b-ad1a-76bd2720c58d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/mel-encombrants/work_orders/8VOlRh0OW7?include=attachments,events,events.attachments","description":"<h1 id=\"get-v2work_ordersid\">GET /v2/work_orders/:id</h1>\n<p>Récupère les détails d'un ordre de travail spécifique par son identifiant.</p>\n<h2 id=\"paramètres-durl\">Paramètres d'URL</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Paramètre</th>\n<th>Type</th>\n<th>Requis</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>id</code></td>\n<td>string</td>\n<td>Oui</td>\n<td>Identifiant unique du work order</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"query-parameters\">Query Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Paramètre</th>\n<th>Type</th>\n<th>Requis</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>output_format</code></td>\n<td>string</td>\n<td>Non</td>\n<td>Format de sortie : <code>json</code> (défaut) ou <code>geojson</code></td>\n</tr>\n<tr>\n<td><code>include</code></td>\n<td>string</td>\n<td>Non</td>\n<td>Inclure des ressources liées : <code>attachments events</code>  <br /><code>events.attachments</code> (séparés par des virgules pour plusieurs)</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"inclusion-de-ressources-liées\">Inclusion de ressources liées</h2>\n<p>Le paramètre <code>include</code> permet d'inclure des ressources associées dans la réponse.</p>\n<h3 id=\"valeurs-possibles\">Valeurs possibles</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Valeur</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>attachments</code></td>\n<td>Inclut les pièces jointes associées aux ordres de travail</td>\n</tr>\n<tr>\n<td><code>events</code></td>\n<td>Inclut les événements / anomalies (work_order_events) associés aux ordres de travail</td>\n</tr>\n<tr>\n<td><code>events.attachments</code></td>\n<td>Inclut les pièces jointes associées aux événements</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Note :</strong> Les ressources disponibles pour inclusion sont listées dans <code>meta.includable</code> de chaque work order.</p>\n<h3 id=\"exemples\">Exemples</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>GET /v2/mel-encombrants/work_orders/8VOlRh0OW7?include=events\nGET /v2/mel-encombrants/work_orders/8VOlRh0OW7?include=attachments\nGET /v2/mel-encombrants/work_orders/8VOlRh0OW7?include=attachments,events\nGET /v2/mel-encombrants/work_orders/8VOlRh0OW7?include=attachments,events,events.attachments\n\n</code></pre><h2 id=\"formats-de-sortie\">Formats de sortie</h2>\n<h3 id=\"json-par-défaut\">JSON (par défaut)</h3>\n<p>Format standard avec serializer incluant les métadonnées de pagination.</p>\n<p><strong>Exemple de requête :</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>GET /v2/mel-encombrants/work_orders/8VOlRh0OW7\n\n</code></pre><h3 id=\"structure-des-attributs\">Structure des attributs</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribut</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>id</code></td>\n<td>string</td>\n<td>Identifiant unique de l'ordre de travail</td>\n</tr>\n<tr>\n<td><code>created_at</code></td>\n<td>datetime</td>\n<td>Date de création</td>\n</tr>\n<tr>\n<td><code>updated_at</code></td>\n<td>datetime</td>\n<td>Date de dernière modification</td>\n</tr>\n<tr>\n<td><code>name</code></td>\n<td>string</td>\n<td>Nom/titre de l'ordre de travail</td>\n</tr>\n<tr>\n<td><code>message</code></td>\n<td>string</td>\n<td>Message descriptif</td>\n</tr>\n<tr>\n<td><code>sent_to</code></td>\n<td>string</td>\n<td>Destinataire de l'ordre de travail</td>\n</tr>\n<tr>\n<td><code>comment</code></td>\n<td>string/null</td>\n<td>Commentaire ou réponse</td>\n</tr>\n<tr>\n<td><code>start_at</code></td>\n<td>datetime</td>\n<td>Date de début</td>\n</tr>\n<tr>\n<td><code>end_at</code></td>\n<td>datetime/null</td>\n<td>Date de fin</td>\n</tr>\n<tr>\n<td><code>metas</code></td>\n<td>object</td>\n<td>Métadonnées de l'ordre de travail</td>\n</tr>\n<tr>\n<td><code>status</code></td>\n<td>object</td>\n<td>Statut de l'ordre de travail</td>\n</tr>\n<tr>\n<td><code>tags</code></td>\n<td>array</td>\n<td>Liste des tags</td>\n</tr>\n<tr>\n<td><code>address_id</code></td>\n<td>string/null</td>\n<td>Identifiant de l'adresse</td>\n</tr>\n<tr>\n<td><code>latitude</code></td>\n<td>float/null</td>\n<td>Coordonnée latitude</td>\n</tr>\n<tr>\n<td><code>longitude</code></td>\n<td>float/null</td>\n<td>Coordonnée longitude</td>\n</tr>\n<tr>\n<td><code>data</code></td>\n<td>object/null</td>\n<td>Attributs de la demande</td>\n</tr>\n<tr>\n<td><code>metadata</code></td>\n<td>object/null</td>\n<td>Métadonnées de la demande</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"métadonnées-de-lobjet\">Métadonnées de l'objet</h3>\n<p>Chaque ordre de travail inclut des métadonnées dans le champ <code>meta</code> :</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"meta\": {\n    \"included\": [],\n    \"includable\": [\"events\", \"attachments\"],\n  }\n}\n\n</code></pre>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Champ</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>included</code></td>\n<td>Liste des ressources actuellement incluses</td>\n</tr>\n<tr>\n<td><code>includable</code></td>\n<td>Liste des ressources disponibles pour inclusion</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"geojson\">GeoJSON</h3>\n<p>Format GeoJSON FeatureCollection avec géométrie Point.</p>\n<p><strong>Exemple de requête :</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>GET /v2/mel-encombrants/work_orders/8VOlRh0OW7?output_format=geojson\nGET /v2/mel-encombrants/work_orders/8VOlRh0OW7.geojson\n\n</code></pre><p><strong>Note :</strong> Seuls les work orders avec coordonnées (latitude/longitude non nulles) sont retournés dans ce format.</p>\n<h2 id=\"exemples-de-requêtes\">Exemples de requêtes</h2>\n<h3 id=\"avec-ressources-incluses\">Avec ressources incluses</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>GET /v2/mel-encombrants/work_orders/8VOlRh0OW7?include=events\nGET /v2/mel-encombrants/work_orders/8VOlRh0OW7?include=attachments\nGET /v2/mel-encombrants/work_orders/8VOlRh0OW7?include=attachments,events\nGET /v2/mel-encombrants/work_orders/8VOlRh0OW7?include=attachments,events,events.attachments\n\n</code></pre>","urlObject":{"path":["v2","mel-encombrants","work_orders","8VOlRh0OW7"],"host":["https://api.publidata.io"],"query":[{"key":"include","value":"attachments,events,events.attachments"}],"variable":[]}},"response":[],"_postman_id":"daa7c283-bbab-4b7b-ad1a-76bd2720c58d"}],"id":"8c09e01c-791e-4d36-b92c-66789bdcc52a","_postman_id":"8c09e01c-791e-4d36-b92c-66789bdcc52a","description":""}],"id":"11ce85fd-0afd-4a30-acde-a0aae42d8653","event":[{"listen":"prerequest","script":{"id":"415990bf-89bf-4244-be79-2f41489ee191","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"4c50bde8-c10e-490b-ad3d-7b80185f8d22","type":"text/javascript","exec":[""]}}],"_postman_id":"11ce85fd-0afd-4a30-acde-a0aae42d8653","description":""},{"name":"Adresse","item":[{"name":"Create address","id":"78632d5a-f24a-4555-b718-373d4b9dbc79","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"submission\": {\n        \"data\": {\n            \"code_insee\": \"31555\", // mandatory\n            \"nom_voie\": \"Rue de Publidata\", // mandatory\n            \"street_id\": \"31555_0423\", // need to be transmitted if the street already exist (will create a new street otherwise)\n            \"numero\": \"1\", // mandatory\n            \"rep\": \"bis\", // optional => default nil\n            \"code_postal\": \"31300\", // mandatory\n            \"lat\": \"43.600966\", // mandatory\n            \"lon\": \"1.434525\", // mandatory\n            \"x\": \"631409.974792683\", //optional => default nil\n            \"y\": \"6875687.56142145\" // optional => default nil\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.publidata.io/v2/addresses","description":"<p>The endpoint accepts both <strong>formio submission json</strong> or <strong>json with direct values</strong><br />ex:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"code_insee\": \"31555\",\n  \"nom_voie\": \"Rue de Publidata\", \n  \"street_id\": \"31555_0423\",\n  \"numero\": \"1\",\n  \"rep\": \"bis\",\n  \"code_postal\": \"31300\",\n  \"lat\": \"43.600966\",\n  \"lon\": \"1.434525\",\n  \"x\": \"631409.974792683\",\n  \"y\": \"6875687.56142145\" \n}\n\n</code></pre><p>The endpoint responds with the newly created address.<br />If a new street was created (no street_id transmitted) the street_id start by pbdt followed bu 3 numbers (these numbers are increamenting</p>\n<p>ex</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"success\": true,\n    \"message\": \"Adresse créée avec succès\",\n    \"data\": {\n        \"id\": 81070841,\n        \"uid\": \"31555_pbdt001_00012\",\n        \"ban_id\": null,\n        \"status\": \"published\",\n        \"id_fantoir\": \"31555_pbdt001\",\n        \"numero\": 12,\n        \"rep\": null,\n        \"nom_voie\": \"Rue de Publidata\",\n        \"code_postal\": \"31300\",\n        \"code_insee\": \"31555\",\n        \"nom_commune\": \"Toulouse\",\n        \"code_insee_ancienne_commune\": null,\n        \"nom_ancienne_commune\": null,\n        \"x\": null,\n        \"y\": null,\n        \"lon\": 1.434525,\n        \"lat\": 43.600966,\n        \"type_position\": \"entrée\",\n        \"alias\": null,\n        \"nom_ld\": null,\n        \"libelle_acheminement\": null,\n        \"nom_afnor\": null,\n        \"source_position\": \"user\",\n        \"source_nom_voie\": \"user\",\n        \"certification_commune\": null,\n        \"date_der_maj\": \"2025-11-12\",\n        \"cad_parcelles\": null,\n        \"sector\": null,\n        \"street_id\": \"31555_pbdt001\",\n        \"certification\": false\n    }\n}\n\n</code></pre>","urlObject":{"path":["v2","addresses"],"host":["https://api.publidata.io"],"query":[],"variable":[]}},"response":[],"_postman_id":"78632d5a-f24a-4555-b718-373d4b9dbc79"}],"id":"cfff620f-d262-4bd0-ac81-5a0c3079947c","_postman_id":"cfff620f-d262-4bd0-ac81-5a0c3079947c","description":""},{"name":"✅ Search","id":"9cc02e83-edb1-4aec-a3ce-1ceaca9e20f3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.publidata.io/v2/search?q=Sénart&size=10&page=1&instances[]=2&types[]=Event&marker=false&performers[]=Nakht&facilities[]=8&events[]=1&event_groups[]=1&news[]=1&projects[]=1&cities[]=7&epcis[]=1&departments[]=1&regions[]=1&skills[]=1&elects[]=1&bbox[]&themes[]=1&date[start]=1526054400&date[end]=1526083199&price[min]=10&price[max]=50&free_admission=true&accessibilities[]=has_deaf_accessibility&tags[]","description":"<p>Recherche globale sur tous les objets présents dans Publidata</p>\n","urlObject":{"path":["v2","search"],"host":["https://api.publidata.io"],"query":[{"description":{"content":"<p>Filtre textuel</p>\n","type":"text/plain"},"key":"q","value":"Sénart"},{"description":{"content":"<p>Nombre de résultats retournés (defaut: 10)</p>\n","type":"text/plain"},"key":"size","value":"10"},{"description":{"content":"<p>Pagination (defaut: 1)</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>Filtre par instance (array d'id)</p>\n","type":"text/plain"},"key":"instances[]","value":"2"},{"description":{"content":"<p>Filtre par type d'objet (array de type parmi la liste suivante : News Event Facility Project City Epci Department Region EventGroup Skill Elect Performer Company NonProfit EtablissementPublic)</p>\n","type":"text/plain"},"key":"types[]","value":"Event"},{"description":{"content":"<p>Filtre booléen pour ne retourner que les locations (default: false)</p>\n","type":"text/plain"},"key":"marker","value":"false"},{"description":{"content":"<p>Filtre par artiste lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"performers[]","value":"Nakht"},{"description":{"content":"<p>Filtre par équipement lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"facilities[]","value":"8"},{"description":{"content":"<p>Filtre par événement lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"events[]","value":"1"},{"description":{"content":"<p>Filtre par groupe d'événements lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"event_groups[]","value":"1"},{"description":{"content":"<p>Filtre par actualité liée (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"news[]","value":"1"},{"description":{"content":"<p>Filtre par projet lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"projects[]","value":"1"},{"description":{"content":"<p>Filtre par ville et location liées (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"cities[]","value":"7"},{"description":{"content":"<p>Filtre par epci liée (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"epcis[]","value":"1"},{"description":{"content":"<p>Filtre par departement lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"departments[]","value":"1"},{"description":{"content":"<p>Filtre par region liée (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"regions[]","value":"1"},{"description":{"content":"<p>Filtre par compétence liée (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"skills[]","value":"1"},{"description":{"content":"<p>Filtre par élu lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"elects[]","value":"1"},{"description":{"content":"<p>Filtre géographique (array de latitudes, longitudes dans l'ordre suivant minX, minY, maxX, maxY)</p>\n","type":"text/plain"},"key":"bbox[]","value":""},{"description":{"content":"<p>Filtre par thème (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"themes[]","value":"1"},{"key":"date[start]","value":"1526054400"},{"key":"date[end]","value":"1526083199"},{"key":"price[min]","value":"10"},{"key":"price[max]","value":"50"},{"key":"free_admission","value":"true"},{"key":"accessibilities[]","value":"has_deaf_accessibility"},{"key":"tags[]","value":""}],"variable":[]}},"response":[],"_postman_id":"9cc02e83-edb1-4aec-a3ce-1ceaca9e20f3"}],"id":"627fd224-23a2-44a6-8bc0-6aab55c1b90b","description":"<p>L'API v2 est une API REST basée sur la spécification et sur les mécanismes définis par JSON:API.org : <a href=\"https://jsonapi.org/\">https://jsonapi.org/</a> <em>(MEL : novembre 2018, EOL : 15/01/2026)</em></p>\n<h1 id=\"📏-structure\">📏 Structure</h1>\n<p>L'API v2 de Publidata est basée sur la spécification jsonapi.org (<a href=\"https://jsonapi.org/\">https://jsonapi.org/</a>) qui nous permet de structurer les réponses renvoyées.</p>\n<p>L'un des gros concepts de JSON:API.org est l'inclusion de vue. C'est à dire que sur chaque enregistrement renvoyé dans l'API, vous avez la possibilité de demander des informations supplémentaires liées à cet enregistrement grâce au paramètre <code>include</code> comme les dates, les tarifs, les informations de contact etc. (la liste complète est présente à cette adresse : <a href=\"https://docs.publidata.io/?version=latest#cdc0f938-ac5c-4c5d-a611-b5be495dc5fb\">https://docs.publidata.io/?version=latest#cdc0f938-ac5c-4c5d-a611-b5be495dc5fb</a>).</p>\n<p><strong>Exemple :</strong> si vous souhaitez récupérer un événement ainsi que ses dates et tarifs : <a href=\"https://api.publidata.io/v2/dreux-application-mobile/events/gLbzSpXGLJ?include=fees,dates\">https://api.publidata.io/v2/dreux-application-mobile/events/gLbzSpXGLJ?include=fees,dates</a></p>\n<p><strong>Exemple 2 :</strong> voici quelques exemples de ressources que vous pouvez inclure sur les événements :</p>\n<ul>\n<li>type : Type principal de l'événement (ex : Concert)</li>\n<li>types : Type principal et ses types hérités (ex : Représentation &gt; Concert)</li>\n<li>themes : Thèmes associés à l'événement (Culture, Musique, Jazz)</li>\n<li>dates : Dates / heures et lieux associés à l'événement (le lieu est une ressource secondaire des dates et celui‑ci peut également être chargé lors de la même requête)</li>\n<li>bookings : Billetteries associées à l'événement</li>\n<li>fees : Tarifs associés à l'événement</li>\n<li>contacts : Informations de contact liées à l'événement (n° de téléphone, email, url de contact etc.)</li>\n<li>socials : Réseaux sociaux liés à l'événement</li>\n<li>images : Images liées à l'événement (différents roles associés : cover, poster etc.)</li>\n<li>documents : Documents liés à l'événement</li>\n</ul>\n<h4 id=\"ressources\">Ressources</h4>\n<ul>\n<li>Les arguments <code>id</code> et <code>type</code> sont présents dans chacune des ressources renvoyées</li>\n<li>Les <code>id</code> renvoyés sont des UUID uniques</li>\n</ul>\n<h1 id=\"👉-consommer-nos-api\">👉 Consommer nos API</h1>\n<h4 id=\"format-des-réponses\">Format des réponses</h4>\n<ul>\n<li><code>data</code> correspond à la liste des ressources renvoyées</li>\n<li><code>relationships</code> présent dans les ressources, nous permet de référencer les ressources liées à la ressource courante (ex: un event a des dates ou encore des relations avec d'autres objets news, facility, city etc.)</li>\n<li><code>meta</code> correspond aux meta-informations renvoyées par l'API (nombre de résultats, licences, auteurs etc.)</li>\n<li><code>links</code> sert à référencer l'ensemble des liens permettant de naviguer dans l'API par la pagination et dans les relations d'une ressource</li>\n<li><code>included</code> est un tableau contenant toutes les ressources inclues dans la vue courante (cf : section Inclure des resources liées)</li>\n</ul>\n<h3 id=\"codes-erreur\">Codes erreur</h3>\n<p>L'API Publidata retourne les codes erreur suivants :</p>\n<ul>\n<li>401 - Authorization error : you need to provide authentication</li>\n<li>403 - Forbidden error : you are not authorized to perform this action</li>\n<li>404 - Record not found</li>\n<li>500 - Error / bad request</li>\n</ul>\n<h4 id=\"pagination\">Pagination</h4>\n<p>Les résultats renvoyés par l'API sont paginés et des <code>links</code> sont disponibles dans le namespace <code>pagination</code> pour naviguer dans les différentes pages : <code>first</code>, <code>last</code>, <code>prev</code> et <code>next</code>.</p>\n<h4 id=\"ordonner-et-filter-les-résultats\">Ordonner et filter les résultats</h4>\n<p>Vous avez la possibilité d'ordonner et filtrer les résultats grâce aux paramètres définis dans les sections \"Search\" de chaque type de fiche. Exemple : <a href=\"https://docs.publidata.io/?version=latest#fe926267-771a-4278-abdb-63bdd05e2aec\">https://docs.publidata.io/?version=latest#fe926267-771a-4278-abdb-63bdd05e2aec</a></p>\n<h1 id=\"📚-exemples\">📚 Exemples</h1>\n<p>Voici une liste non-exhaustive des principaux endpoints que nous vous mettons à disposition ainsi que quelques cas d'usages :</p>\n<p><strong>Les événements</strong></p>\n<ul>\n<li>La liste des événements : <a href=\"https://api.publidata.io/v2/dreux-application-mobile/events\">https://api.publidata.io/v2/dreux-application-mobile/events</a></li>\n<li>La liste des événements filtrée et ordonnée par date (event_dates) :<ul>\n<li>Après une certaine date : <a href=\"https://api.publidata.io/v2/dreux-application-mobile/events?q=&amp;date%5Bstart%5D=1575633600\">https://api.publidata.io/v2/dreux-application-mobile/events?q=&amp;date[start]=1575633600</a> (ordonne automatiquement les événements selon les prochaines dates)</li>\n<li>Avant une certaine date : <a href=\"https://api.publidata.io/v2/dreux-application-mobile/events?q=&amp;date%5Bend%5D=1575460800\">https://api.publidata.io/v2/dreux-application-mobile/events?q=&amp;date[end]=1575460800</a> (ordonne automatiquement les événements par dates passées récemment)</li>\n<li>Entre deux dates : <a href=\"https://api.publidata.io/v2/dreux-application-mobile/events?q=&amp;date%5Bstart%5D=1575460800&amp;date%5Bend%5D=1575633600\">https://api.publidata.io/v2/dreux-application-mobile/events?q=&amp;date[start]=1575460800&amp;date[end]=1575633600</a> (ordonne les événements par dates, les plus récentes jusqu'au plus anciennes)</li>\n</ul>\n</li>\n<li>La liste des événements filtrée par un tag : <a href=\"https://api.publidata.io/v2/dreux-application-mobile/events?q=&amp;tags%5B%5D=exemple\">https://api.publidata.io/v2/dreux-application-mobile/events?q=&amp;tags[]=exemple</a></li>\n<li>La liste des événements filtrée par un équipement (une piscine) : <a href=\"https://api.publidata.io/v2/dreux-application-mobile/events?q=&amp;facilities%5B%5D=jVJlIrmpxR\">https://api.publidata.io/v2/dreux-application-mobile/events?q=&amp;facilities[]=jVJlIrmpxR</a></li>\n<li>La liste des événements filtrée par plusieurs types d'événements (Opéra et Braderie) : <a href=\"https://api.publidata.io/v2/dreux-application-mobile/events?q=&amp;event_types%5B%5D=bpVp5cOB7g&amp;event_types%5B%5D=DaxGJclb7N\">https://api.publidata.io/v2/dreux-application-mobile/events?q=&amp;event_types[]=bpVp5cOB7g&amp;event_types[]=DaxGJclb7N</a></li>\n<li>La liste des événements enrichie avec les dates, lieux, tarifs, types et images : <a href=\"https://api.publidata.io/v2/dreux-application-mobile/events?include=dates,dates.place,fees,types,images\">https://api.publidata.io/v2/dreux-application-mobile/events?include=dates,dates.place,fees,types,images</a></li>\n<li>Une liste de 30 événements : <a href=\"https://api.publidata.io/v2/dreux-application-mobile/events?items=30\">https://api.publidata.io/v2/dreux-application-mobile/events?items=30</a></li>\n<li>La page 2 des événements : <a href=\"https://api.publidata.io/v2/dreux-application-mobile/events?page=2&amp;items=2\">https://api.publidata.io/v2/dreux-application-mobile/events?page=2&amp;items=2</a></li>\n<li>Un événement avec plusieurs dates et plusieurs lieux : <a href=\"https://api.publidata.io/v2/dreux-application-mobile/events/87oNSzzQVQ?include=dates,dates.place\">https://api.publidata.io/v2/dreux-application-mobile/events/87oNSzzQVQ?include=dates,dates.place</a></li>\n</ul>\n<p>Vous pouvez retrouver l'ensemble des paramètres documentés ici : <a href=\"https://docs.publidata.io/?version=latest#56f121fe-949b-4974-bbad-4497bbc7c9c7\">https://docs.publidata.io/?version=latest#56f121fe-949b-4974-bbad-4497bbc7c9c7</a></p>\n<p><strong>Les groupes d'événements</strong></p>\n<ul>\n<li>La liste des groupes d'événements : <a href=\"https://api.publidata.io/v2/dreux-application-mobile/event_groups\">https://api.publidata.io/v2/dreux-application-mobile/event_groups</a></li>\n</ul>\n<p>Vous pouvez retrouver l'ensemble des paramètres documentés ici : <a href=\"https://docs.publidata.io/?version=latest#215036be-d3cc-4803-aa34-96f3945a950c\">https://docs.publidata.io/?version=latest#215036be-d3cc-4803-aa34-96f3945a950c</a></p>\n<p><strong>Les équipements</strong></p>\n<ul>\n<li>La liste des équipements : <a href=\"https://api.publidata.io/v2/dreux-application-mobile/facilities\">https://api.publidata.io/v2/dreux-application-mobile/facilities</a></li>\n</ul>\n<p>Vous pouvez retrouver l'ensemble des paramètres documentés ici : <a href=\"https://docs.publidata.io/?version=latest#f0bdef3e-5d46-40e2-b75d-b14518ccd94c\">https://docs.publidata.io/?version=latest#f0bdef3e-5d46-40e2-b75d-b14518ccd94c</a></p>\n<p><strong>Les services municipaux</strong></p>\n<ul>\n<li>La liste des services municipaux : <a href=\"https://api.publidata.io/v2/dreux-application-mobile/facilities?q=&amp;facility_types%5B%5D=DjL6oSBlVo\">https://api.publidata.io/v2/dreux-application-mobile/facilities?q=&amp;facility_types[]=DjL6oSBlVo</a></li>\n</ul>\n<p><strong>Les actualités</strong></p>\n<ul>\n<li>La liste des actualités : <a href=\"https://api.publidata.io/v2/dreux-application-mobile/news\">https://api.publidata.io/v2/dreux-application-mobile/news</a></li>\n</ul>\n<p>Vous pouvez retrouver l'ensemble des paramètres documentés ici : <a href=\"https://docs.publidata.io/?version=latest#451b037d-6fbb-421a-b3d7-d9faad04aa32\">https://docs.publidata.io/?version=latest#451b037d-6fbb-421a-b3d7-d9faad04aa32</a></p>\n<p><strong>Les associations</strong></p>\n<ul>\n<li>La liste des associations : <a href=\"https://api.publidata.io/v2/dreux-application-mobile/non_profits\">https://api.publidata.io/v2/dreux-application-mobile/non_profits</a></li>\n</ul>\n<p>Vous pouvez retrouver l'ensemble des paramètres documentés ici : <a href=\"https://docs.publidata.io/?version=latest#8f13dec5-8a3f-4e93-8e0c-072a920315bd\">https://docs.publidata.io/?version=latest#8f13dec5-8a3f-4e93-8e0c-072a920315bd</a></p>\n<p><strong>Les thèmes</strong></p>\n<p>Les thèmes permettent de catégoriser les fiches, exemple : Sport &gt; Forme et bien-être &gt; Gymnastique &gt; Gymnastique artistique. Chaque thème peut avoir plusieurs enfants et plusieurs parents (arbre).</p>\n<ul>\n<li>La liste des thèmes présents dans Publidata : <a href=\"https://api.publidata.io/v2/themes\">https://api.publidata.io/v2/themes</a></li>\n<li>La liste des thèmes présents dans Publidata par batch de 100 avec leurs parents : <a href=\"https://api.publidata.io/v2/themes?include=parents&amp;items=100\">https://api.publidata.io/v2/themes?include=parents&amp;items=100</a></li>\n</ul>\n<p><strong>Les types d'événements</strong></p>\n<p>Chaque type d'événement peut avoir plusieurs enfants et plusieurs parents (arbre).</p>\n<ul>\n<li>La liste des types d'événements présents dans Publidata : <a href=\"https://api.publidata.io/v2/event_types\">https://api.publidata.io/v2/event_types</a></li>\n</ul>\n<p><strong>Les types d'équipements</strong></p>\n<p>Chaque type d'équipement peut avoir plusieurs enfants et plusieurs parents (arbre).</p>\n<ul>\n<li>La liste des types d'équipements présents dans Publidata : <a href=\"https://api.publidata.io/v2/facility_types\">https://api.publidata.io/v2/facility_types</a></li>\n</ul>\n","event":[{"listen":"prerequest","script":{"id":"b29ea332-ac8d-4101-9f26-350945506c06","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"dc360020-8028-4d21-b254-e8d3de800b53","type":"text/javascript","exec":[""]}}],"_postman_id":"627fd224-23a2-44a6-8bc0-6aab55c1b90b"},{"name":"Documentation  API v1","item":[{"name":"Événements","item":[{"name":"Index","id":"bc048a9c-783e-4530-bd5d-fe1706db0c6b","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.publidata.io/v1/{{instance_id}}/events","description":"<p>Index des événements</p>\n","urlObject":{"path":["v1","{{instance_id}}","events"],"host":["https://api.publidata.io"],"query":[],"variable":[]}},"response":[{"id":"f5e05d23-cd7e-4fb7-b7ee-51b11486729c","name":"Index events","originalRequest":{"method":"GET","header":[],"url":"publidata.io/api/v1/portail-sortir-gps/events"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, private, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 13 Mar 2018 15:31:16 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Etag","value":"W/\"194bb89d7bf35c36029ad85250c27b6f\"","name":"Etag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"Cowboy","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Origin","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"Via","value":"1.1 vegur","name":"Via","description":"Informs the client of proxies through which the response was sent."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Request-Id","value":"b74c1aa3-19ed-4869-ac56-89ef64b7664c","name":"X-Request-Id","description":"Custom header"},{"key":"X-Runtime","value":"0.102100","name":"X-Runtime","description":"Custom header"},{"key":"X-Xss-Protection","value":"1; mode=block","name":"X-Xss-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"{\n    \"slugs\": [\n        \"portes-ouvertes-au-chapiteau\",\n        \"forum-des-associations-de-saint-germain-les-corbeil\",\n        \"atelier-d-initiation-aux-arts-du-cirque-enfants\",\n        \"atelier-10-doigts\",\n        \"expo-le-chevalet\",\n        \"les-contes-a-vieillir-debout\",\n        \"atelier-des-lutins-des-sciences\",\n        \"exposition-photo-la-mauritanie-et-kayes-au-mali\",\n        \"sac-a-histoires-6f854848-a05c-4f70-b1b7-9980e58d4516\",\n        \"weekend-ener-j-j-pre-selection-des-candidats\",\n        \"the-dansant\",\n        \"festival-country-demonstratrion-de-danse-country\",\n        \"a-la-rencontre-des-griots-rdv-du-pole\",\n        \"concert-de-poche\",\n        \"la-marmite-a-mots\",\n        \"solifoot-le-tournoi-de-futsal-solidaire\",\n        \"cafe-polyglotte-61eeaa6a-7ab8-4c34-9c8d-57efe14264f7\",\n        \"bukowski-hell-of-a-ride-frantic-machine\",\n        \"fete-de-la-musique-a-grigny\",\n        \"fete-de-la-musique-a-morsang-sur-seine\",\n        \"fete-de-la-musique-a-villabe\",\n        \"cinema-et-realite-virtuelle-projection-debat-samedi-12-novembre-a-15h\",\n        \"apres-midi-one-piece\",\n        \"cultivons-l-avenir-au-jardin-des-sciences\",\n        \"fete-de-la-musique-a-combs-la-ville\",\n        \"release-party-de-la-conscience\",\n        \"inna-modja-en-concert-au-plan\",\n        \"des-fermes-d-insectes-pour-l-avenir\",\n        \"la-grenouille-avait-raison\",\n        \"stage-fabriquez-votre-plante-connectee-2016\",\n        \"cuisine-du-futur-comment-allier-plaisir-innovation-et-alimentation-durable\",\n        \"le-bolero\",\n        \"la-maison-de-l-ecole-vous-ouvre-ses-portes\",\n        \"au-programme-visite-de-saint-germain-les-corbeil\",\n        \"balade-en-bord-de-seine\",\n        \"god-is-a-cube\",\n        \"concert-au-profit-de-la-lutte-contre-la-maladie-d-alzheimer\",\n        \"visite-decouverte-le-supermarche-un-monument-historique\",\n        \"la-prehistoire-du-jazz\",\n        \"avant-gout-de-saison-2016-2017\",\n        \"festival-country-concert-d-ernest-ray-everett-et-des-mariottis-brothers\",\n        \"exposition-dialogues\",\n        \"les-maitres-du-temps\",\n        \"soiree-dansante-de-la-sainte-catherine\",\n        \"feu-chatterton-en-concert\",\n        \"bourse-aux-jouets\",\n        \"laurent-corvaisier\",\n        \"scene-ouverte-de-la-place-des-droits-de-l-homme\",\n        \"don-t-worry-be-harpy-isabelle-olivier\",\n        \"vivre-en-forme-a-senart-seine-essonne\",\n        \"fete-de-la-musique-au-coudray-montceaux\",\n        \"conversation-avec-le-realisateur-cedric-anger\",\n        \"les-sonnets-de-shakespeare\",\n        \"concert-des-chorales\",\n        \"gala-de-danse\",\n        \"musique-europe-centrale\",\n        \"atelier-de-danse-flamenco\",\n        \"our-last-night-being-as-an-ocean\",\n        \"lamano-festival\",\n        \"ange-alex-bianchi\",\n        \"visite-de-l-observatoire-camille-flammarion\",\n        \"visite-et-ateliers-au-genoscope\",\n        \"beth-hart-en-concert-au-plan\",\n        \"festival-blues-a-senart\",\n        \"kid-manoir-la-potion-interdite\",\n        \"concours-2016\",\n        \"les-fatals-picards-jacques-jacques\",\n        \"les-soleils-de-grand-paris-sud-atelier-jeunesse-2018-mediatheque-de-l-agora\",\n        \"concert-senart-en-voix\",\n        \"cine-gouter-le-monde-de-nemo\",\n        \"petit-bleu-et-petit-jaune\",\n        \"atelier-tablette\",\n        \"domino-humour-soiree-saint-valentin\",\n        \"les-soleils-de-grand-paris-sud-atelier-jeunesse-2018\",\n        \"cine-gouter-tarzan\",\n        \"festival-de-jazz-ray\",\n        \"weekend-ener-j-j-concours\",\n        \"o-baobab\",\n        \"inauguration-des-aires-de-jeux-de-la-grande-borne\",\n        \"les-1001-visages-de-blanche-neige\",\n        \"rugby-f2-ris-orangis-recoit-le-creusot-71\",\n        \"festival-de-jazz-bird\",\n        \"quatuor-modigliani-eric-lesage\",\n        \"les-5-et-10-km-de-combs\",\n        \"girotonda\",\n        \"les-rencontres-barosolo\",\n        \"caes-la-fin-d-un-squat\",\n        \"a-la-croisee-des-genres-du-papier-au-pixel-special-zombie\",\n        \"vide-greniers-de-corbeil-essonnes\",\n        \"apres-la-pluie\",\n        \"jeunesse-evasion-musique-en-concert\",\n        \"stage-creation-de-personnages-imaginaires\",\n        \"marche-de-noel-de-cesson\",\n        \"cycle-psychanalyse-et-cinema\",\n        \"decouverte-de-la-pepiniere-genopole-cci-essonne-ou-naissent-et-grandissent-les-innovations\",\n        \"mediatheque-colette-cafe-cultures-9880c1ca-c672-4437-870b-bfa9d8328643\",\n        \"les-impromptus-scientifiques\",\n        \"stage-fabrique-ton-cinemanege\",\n        \"aujourd-hui-on-joue-a-machinarium\",\n        \"show-case-villa-hobo\",\n        \"isaya-folk-chamanique\",\n        \"lisa-simone-my-world\",\n        \"presentation-de-saison-2016-2017-spectacle-gratuit\",\n        \"aujourd-hui-on-joue-a-journey\",\n        \"on-the-rocks\",\n        \"le-plan-a-la-mediatheque-la-fanfare-kif\",\n        \"osez-le-bien-etre\",\n        \"visite-de-l-exposition-sur-la-grande-guerre-et-atelier-parents-enfants\",\n        \"les-rustres\",\n        \"fete-de-la-science-graines-de-futur\",\n        \"retransmission-des-matchs-de-l-euro\",\n        \"exposition-jerome-ruillier-figures-de-l-etrange\",\n        \"les-rustres-fb2e4381-d0c6-401e-b58a-486695eb21b2\",\n        \"bourse-aux-jouets-bbef04fb-777f-460b-bcbd-0fb85c1a7bf9\",\n        \"garden-golf-de-senart-competition-au-profit-du-telethon\",\n        \"comment-vider-la-mer-avec-une-cuiller\",\n        \"frederick-sigrist-sur-les-planches-de-la-salle-gerard-philipe\",\n        \"bled-runner\",\n        \"a-chacun-son-nichoir\",\n        \"la-verite-sur-pinocchio\",\n        \"projection-unique-du-film-food-coop\",\n        \"fete-de-la-musique-a-saint-germain-les-corbeil\",\n        \"projections-azur-et-asmar\",\n        \"gouter-concert-avec-naive-new-beaters\",\n        \"super-vide-greniers\",\n        \"rando-d-orientation-en-foret\",\n        \"luciole-sur-scene\",\n        \"aqua-on-joue\",\n        \"dormir-cent-ans\",\n        \"esquif\",\n        \"le-chat-botte\",\n        \"concert-de-noel-du-choeur-variatio\",\n        \"les-fourberies-de-scapin\",\n        \"boulevard-du-crepuscule\",\n        \"general-elektriks\",\n        \"la-nuit-des-rois\",\n        \"stage-realisation-d-un-court-metrage\",\n        \"ceremonie-de-reouverture-de-la-piscine-du-long-rayage\",\n        \"colorier-le-monde\",\n        \"le-corps-a-l-oeuvre\",\n        \"nouveaux-partages-de-culture\",\n        \"journee-du-patrimoine-a-vert-saint-denis\",\n        \"journee-du-patrimoine-a-cesson\",\n        \"journee-du-patrimoine-a-breviande\",\n        \"alain-dache\",\n        \"visite-de-l-institut-des-cellules-souches-i-stem\",\n        \"journee-du-patrimoine-a-l-etang-du-follet\",\n        \"portes-ouvertes\",\n        \"un-songe-d-une-nuit-d-ete\",\n        \"visite-du-laboratoire-de-recherche-genhotel\",\n        \"le-point-virgule\",\n        \"cafe-renover-malin\",\n        \"maris-et-femmes\",\n        \"reveillon-de-la-saint-sylvestre-a-saintry-sur-seine\",\n        \"nouveaux-talents-evryens-tome-3\",\n        \"retransmission-en-direct-de-l-opera-les-contes-d-hoffmann-d-offenbach\",\n        \"conference-la-sante-et-notre-environnement\",\n        \"a-vol-d-oiseau-territoires-jardin-de-tabaldak\",\n        \"visite-du-vieil-evry\",\n        \"sport-en-tete\",\n        \"okidok-les-chevaliers\",\n        \"monsieur-choufleuri-restera-chez-lui\",\n        \"le-championnat-de-france-universitaire-de-trail-pour-la-1ere-fois-a-l-evry-trail-urbain\",\n        \"il-etait-une-fois\",\n        \"the-reverend-shawn-amos\",\n        \"histoire-de-l-art-et-des-images\",\n        \"conference-la-sante-et-notre-environnement-2017\",\n        \"cypres-du-stampien-et-pourtant-si-loin\",\n        \"geocaching-a-grand-paris-sud\",\n        \"la-nuit-des-rois-e4d1e1c0-ad20-4ef9-b671-de4c069cea00\",\n        \"forum-des-associations-9519250a-61bd-4439-9cf5-7a2f854de1d1\",\n        \"l-utopie-sociale-9747db37-9ae9-4dcb-96ef-f08641de0be2\",\n        \"spectacles-dans-la-rue\",\n        \"secrets-de-jardins-en-essonne-jardin-de-l-association-planetes-sciences-evry\",\n        \"electro-acoustique-et-mao-reveillent-iannis-xenakis\",\n        \"nomination-de-bernard-barataud\",\n        \"don-quichotte-e98288fc-aa1c-4236-94ee-4a79bdd621ef\",\n        \"scene-ouverte-a47b245a-df0f-431c-aa87-cdbdf4eca649\",\n        \"scene-ouverte-7d2b2628-5077-453c-86ef-6ef612e9daa4\",\n        \"attrape-moi-6b2e7add-81c2-45ba-aa38-c6392cd9aa73\",\n        \"heure-des-bebes-f2b2ffc2-021f-4b27-a9a9-fe927ddce50f\",\n        \"la-biologie-de-synthese-et-ses-etonnantes-applications\",\n        \"rencontre-avec-jung-le-realisateur-du-film-couleur-de-peau-miel\",\n        \"ateliers-nomades-vous-reprendrez-bien-un-peu-de-culture\",\n        \"casse-noisette-ballet-de-tchaikovsky-retransmission-en-direct\",\n        \"carling-gunhild\",\n        \"rachid-badouri-dans-recharge\",\n        \"cine-lecture-autour-du-film-la-chouette-entre-veille-et-sommeil\",\n        \"norma-opera-de-bellini-retransmission-en-direct\",\n        \"exposition-artistique-artefacts-archeologie-du-temps-present\",\n        \"portes-ouvertes-de-la-classe-preparatoire-aux-ecoles-superieures-d-arts\",\n        \"hatesphere-deep-in-hate-kause-4-konflikt\",\n        \"putain-de-guerre\",\n        \"the-rolling-stones-havana-moon\",\n        \"soiree-debat-autour-du-film-trashed-et-du-traitement-de-nos-dechets\",\n        \"cine-concert-minuscule-la-vie-privee-des-insectes\",\n        \"projection-du-film-dernieres-nouvelles-du-cosmos-en-presence-de-la-realisatrice-julie-bertuccelli\",\n        \"journees-du-patrimoine-a-la-ferme-des-arts\",\n        \"conference-developpement-durable\",\n        \"exposition-des-artistes-de-l-ime-vercors\",\n        \"tout-sauf-mozart\",\n        \"full-moon-party-a-la-patinoire\",\n        \"hommage-a-ella-fitzgerald-par-mariannick-saint-ceran\",\n        \"journees-europeennes-du-patrimoine-5a5d650c-a5c5-4d1e-aed3-050a1ccb42b1\",\n        \"journee-du-patrimoine-a-la-maison-de-l-ecole\",\n        \"journee-interconfessionnelle-a-evry\",\n        \"exposition-stefanie-b-street-art-made-in-ici\",\n        \"visite-de-l-imprimerie-helio-corbeil-2017\",\n        \"fabriquez-son-objet-3d\",\n        \"trouve-ta-voix-en-concert\",\n        \"concert-de-l-orchestre-d-harmonie-de-la-musique-de-la-police\",\n        \"spectacle-musical-papa-merlin\",\n        \"opening-2-avec-christian-olivier-kery-james-her-saycet-holy-strays\",\n        \"conference-images-du-monde-le-quebec\",\n        \"concert-les-romances-d-essonnances-2017\",\n        \"conference-images-du-monde-lapin-tu-as-eu-ma-peau\",\n        \"cycle-danse-orientale-a-la-mjc-de-ris-orangis\",\n        \"conference-images-du-monde-d-un-nord-a-l-autre\",\n        \"bal-de-rentree\",\n        \"conference-images-du-monde-le-cote-obscur-de-la-barre-chocolatee\",\n        \"concert-de-poche-2017\",\n        \"visite-guidee-de-l-arriere-au-front-corbeil-essonnes-dans-la-grande-guerre\",\n        \"conference-images-du-monde-andalousie\",\n        \"conference-images-du-monde-la-reunion-belle-et-secrete\",\n        \"visite-decouverte-du-village-de-grigny\",\n        \"scene-ouverte-fb547812-c1eb-4ff8-877b-884a2c064386\",\n        \"conference-images-du-monde-la-grece-terre-de-lumiere\",\n        \"francois-morel-la-vie-concert-de-francois-morel-et-d-antoine-sahler\",\n        \"voyage-de-noces-ou-pas\",\n        \"de-vigne-en-vin-le-picolo-de-villabe\",\n        \"nouveaux-temoins-de-la-2eme-guerre-mondiale\",\n        \"les-demoiselles-du-telephone\",\n        \"decouvrez-corbeil-cote-essonnes-et-profitez-d-une-initiation-bien-etre\",\n        \"villab-raid-aventure-1ere-edition\",\n        \"les-chevaliers-de-la-table-ronde\",\n        \"un-film-un-pays-un-conferencier-projection-en-partenariat-avec-les-ecrans-de-chine\",\n        \"sur-la-route-de-montauger\",\n        \"gouter-concert-au-plan-mercredi-12-octobre-a-15h30\",\n        \"comment-moi-je\",\n        \"fellag-bled-runner\",\n        \"gif-une-exposition-thematique\",\n        \"les-rives\",\n        \"concert-la-musique-francaise\",\n        \"vernissage-expo-cube-visions-de-l-excellence\",\n        \"visite-de-l-imprimerie-helio-corbeil\",\n        \"cine-gouter-merlin-l-enchanteur\",\n        \"flash-back-vol-1-japon-annees-50-80-projection-du-film-quand-une-femme-monte-l-escalier-de-mikio-naruse\",\n        \"grene-seme-labelle-en-solo\",\n        \"scene-ouverte-12\",\n        \"visite-du-plateau-de-ris-orangis\",\n        \"salon-du-livre-a-etiolles\",\n        \"baseball-les-templiers-de-senart-recoivent-les-ducks-de-saint-just-saint-rambert\",\n        \"exposition-photo-intergenerationnelle-dans-le-cadre-de-la-semaine-bleue\",\n        \"plis-mystiques\",\n        \"la-grande-lessive\",\n        \"atelier-artistique-botanique\",\n        \"stage-street-art\",\n        \"y-a-pas-que-le-nez-dans-la-vie-y-a-les-oreilles-aussi\",\n        \"exposition-quel-developpement-pour-demain\",\n        \"memoire-d-une-ville-au-coeur-de-la-grande-guerre\",\n        \"les-freres-colle-jonglage-percutant\",\n        \"cine-gouter-taram-et-le-chaudron-magique\",\n        \"deadtown\",\n        \"fete-de-la-musique-a-corbeil-essonnes\",\n        \"game-party-ne-soyez-pas-game-over\",\n        \"green-beach-volley\",\n        \"ramayana-grand-epopee-indienne-et-influence-dans-l-art\",\n        \"du-graffiti-dans-les-tranchees\",\n        \"stage-vj-et-mapping-video\",\n        \"hyacinthe-et-rose\",\n        \"28e-course-des-ecoles\",\n        \"journee-du-patrimoine-a-cesson-ed0d5104-e43d-4278-bed4-68ae477925d3\",\n        \"cine-gouter-la-belle-et-la-bete\",\n        \"les-secrets-d-histoire-de-l-eglise-saint-pierre-et-saint-paul-a-vert-saint-denis\",\n        \"release-party-d-aguelenna\",\n        \"exposition-les-droits-de-l-enfant-racontes-aux-enfants\",\n        \"visite-du-musee-paul-delouvrier\",\n        \"stage-le-voyage-imaginaire\",\n        \"fete-de-la-musique-a-evry\",\n        \"lola-marsh\",\n        \"danse-maintenant-atelier-de-decouverte-initiation-danse-contemporaine\",\n        \"senart-rendez-vous-de-l-histoire-locale\",\n        \"rising-tide-jahneration\",\n        \"la-tete-dans-les-etoiles\",\n        \"berlin\",\n        \"hymne-a-la-nature\",\n        \"romeo-et\",\n        \"dancing-grandmothers\",\n        \"musidora-raoul-bequet\",\n        \"patrick-pineau-lit-la-peur-de-gabriel-chevallier\",\n        \"made-in-ici\",\n        \"rando-roller\",\n        \"le-bourgeois-gentilhomme\",\n        \"visite-helio-corbeil\",\n        \"hyphen-hyphen-en-concert\",\n        \"danse-maintenant-atelier-de-decouverte-initiation-danse-jazz\",\n        \"concert-2016\",\n        \"totorro\",\n        \"visite-de-grigny-le-vieux-village\",\n        \"made-in-finland\",\n        \"vernissage-10-ans-du-festival-urbain\",\n        \"le-festival-country-du-coudray-montceaux\",\n        \"fete-nationale-a-courcouronnes\",\n        \"soiree-cabaret\",\n        \"journees-du-patrimoine-a-grigny\",\n        \"game-party-ne-soyez-pas-game-over-26331c1c-9561-4990-a1d6-90f2439c5d5d\",\n        \"eug-revelation-ii\",\n        \"concours-2017\",\n        \"le-woop\",\n        \"blanche-neige\",\n        \"exposition-photographies-street-art-made-in-ici\",\n        \"sate-wakan-tanka\",\n        \"portes-ouvertes-des-sports-nautiques\",\n        \"8eme-open-d-echecs-de-ris-orangis\",\n        \"hansel-et-gretel\",\n        \"maligne\",\n        \"paysages-interieurs\",\n        \"grand-show-gymnique\",\n        \"l-heure-numerique\",\n        \"projection-du-film-les-saisons\",\n        \"germinal\",\n        \"le-fusible\",\n        \"attrape-moi\",\n        \"la-reine-des-neiges-la-suite-des-aventures\",\n        \"si-etiolles-m-etait-conte\",\n        \"mayhem-dragged-into-sunlight\",\n        \"bande-dessinee-et-immigrations-un-siecle-d-histoire-s-3088c6ce-ea06-4567-9b32-fc9efdcaee3d\",\n        \"vends-2-pieces-a-beyrouth\",\n        \"the-airplane-i-love-my-neighbours\",\n        \"zaz\",\n        \"soiree-cinema-le-couple-masculin-feminin-godard-hawks\",\n        \"norman-sur-scene\",\n        \"la-grande-guerre\",\n        \"lisa-leblanc\",\n        \"brocante-musicale\",\n        \"50-ans-de-chansons\",\n        \"ethnofonik\",\n        \"dhoad-les-gitans-du-rajasthan\",\n        \"younes-bambi\",\n        \"z-comme-zig-zag\",\n        \"ramoneurs-de-menhirs-tagada-jones-gasteropodes-killers\",\n        \"carla-bley-trio\",\n        \"baseball-les-templiers-de-senart-affrontent-clermont-arvernes\",\n        \"de-feline-la-commune-de-paris\",\n        \"toybloid-karoline-rose\",\n        \"adama-drame-legende-de-la-musique-mandingue\",\n        \"adana\",\n        \"bande-dessinee-et-immigrations-un-siecle-d-histoire-s-b86464ea-271f-4737-a04d-5edaa80fd2cc\",\n        \"concert-images-oubliees\",\n        \"maputo-mozambique\",\n        \"concerts-conviviaux\",\n        \"tractor-boys\",\n        \"napalm-death-the-distance\",\n        \"le-telethon-a-la-piscine-jean-taris\",\n        \"stage-fabriquez-vos-capteurs-meteo-et-de-qualite-de-l-air\",\n        \"stage-police-scientifique\",\n        \"stage-concevoir-une-voiture-wi-fi\",\n        \"teatro-comico\",\n        \"tarzan\",\n        \"creation-de-livre-pop-up\",\n        \"tournois-fifa-2016\",\n        \"visite-street-art-a-evry\",\n        \"projection-la-vie-pure\",\n        \"vide-grenier-de-grigny\",\n        \"l-affiche-des-laureats-9f95d42d-6549-49e3-96fb-b4151001834e\",\n        \"the-arrs-tank-nakht\",\n        \"melissmell-les-escrocs-karpatt\",\n        \"fete-nationale-le-mercredi-13-juillet-2016\",\n        \"dagoba-our-theory\",\n        \"l-etrangleuse\",\n        \"mz\",\n        \"bal-folk-a-l-auberge\",\n        \"exposition-instruments-geants\",\n        \"sanseverino-montreuil-memphis\",\n        \"deambulations-dakaroises\",\n        \"au-croisement-des-arts-claude-debussy\",\n        \"l-heure-ou-nous-ne-savions-rien-l-un-de-l-autre\",\n        \"weekend-ener-j-j\",\n        \"soiree-cine-philo-autour-de-deux-films\",\n        \"d-autres-le-gilferent\",\n        \"les-saisons-oeuvres-d-antonio-vivaldi-et-astor-piazzolla\",\n        \"atelier-l-ecojardinage-pour-les-nuls\",\n        \"les-folies-bataille-ent-exposition-de-fin-d-annee\",\n        \"spectacles-des-eleves-danseurs-du-reseau-des-conservatoires-grand-paris-sud\",\n        \"croisiere-du-bon-matin\",\n        \"snob\",\n        \"soja-1ere-partie\",\n        \"crocodile-et-initiation-dans-le-sepik\",\n        \"francois-xavier-demaison\",\n        \"visite-du-lycee-hotelier-d-etiolles\",\n        \"cie-naif-theatre-droles-de-vampires\",\n        \"le-telethon-a-bondoufle\",\n        \"vincha-l-olivier-et-cetaera\",\n        \"lyre-le-temps-selia\",\n        \"le-mois-du-film-documentaire-yu-et-des-eclats-dans-la-nuit\",\n        \"eco-jardin-approfondissement\",\n        \"le-mois-du-film-documentaire-documentaire-inedit-en-presence-de-la-realisatrice\",\n        \"exposition-d-olivier-long\",\n        \"la-nuit-americaine\",\n        \"paris-en-6-courts\",\n        \"mountain-men-gunwood-circle\",\n        \"la-petite-graine\",\n        \"danse-maintenant-atelier-de-decouverte-initiation-danse-classique\",\n        \"stage-d-initiation-aux-arts-du-cirque\",\n        \"cafe-philo\",\n        \"californy\",\n        \"jazz-telethon-a-evry\",\n        \"le-monde-merveilleux-des-insectes\",\n        \"l-autre\",\n        \"piano-furioso\",\n        \"fan-zone-un-programme-de-courts-metrages-100-football\",\n        \"l-heritier-de-village\",\n        \"un-compositeur-a-evry-francois-bousch\",\n        \"balade-street-art-a-evry-en-velo\",\n        \"guillaume-meurice-que-demande-le-peuple\",\n        \"finale-du-tournoi-fifa-2016\",\n        \"kiz\",\n        \"concert-apero\",\n        \"machine-de-cirque\",\n        \"soiree-courts-metrages\",\n        \"visite-street-art-au-pico-projecteur\",\n        \"barber-shop-quartet\",\n        \"soiree-de-presentation-de-la-saison-culturelle-2016-2017\",\n        \"christine-salem-sages-comme-des-sauvages\",\n        \"le-telethon-a-saint-pierre-du-perray\",\n        \"the-roots\",\n        \"flavien-berger-paradis-tsugi-dj-crew\",\n        \"spectacle-madame-de-neandertal-journal-intime-au-week-end-en-prehistoire\",\n        \"les-insolents\",\n        \"fred-testot-presque-seul\",\n        \"l-ete-en-musique-au-parc-pompidou\",\n        \"qu-est-ce-qu-ils-disent-sur-le-pre-philippe-minyana\",\n        \"rover\",\n        \"fete-de-la-musique\",\n        \"la-nuit-du-grand-frisson\",\n        \"cafe-marionnettes\",\n        \"hommage-a-django-reinhardt-par-samy-daussat-quartet\",\n        \"mellino\",\n        \"hommage-a-lionel-hampton\",\n        \"mediatheque-alain-ramey-l-heure-des-bebes-febeda1e-cdc3-478f-9834-ce112ee03d33\",\n        \"emprunte-le-club\",\n        \"quelles-alternatives-aux-pesticides\",\n        \"la-mastication-des-morts\",\n        \"fete-de-la-musique-a-tigery\",\n        \"fete-de-la-musique-a-soisy-sur-seine\",\n        \"archie-shepp\",\n        \"hommage-a-louis-armstrong-par-irakli-et-les-louis-ambassadors\",\n        \"allons-voir-l-envers-du-decor\",\n        \"portes-ouvertes-du-centre-social\",\n        \"en-live-concert-du-telethon\",\n        \"conference-des-lapins-chef-d-orchestre\",\n        \"manu-lanvin-and-the-devil-blues\",\n        \"les-dixies-dingues\",\n        \"visite-de-la-mosquee-d-evry-courcouronnes\",\n        \"fete-de-la-musique-a-vert-saint-denis\",\n        \"fete-de-la-musique-a-moissy-cramayel\",\n        \"le-grand-voyage\",\n        \"championnats-n1-de-kayak-polo\",\n        \"stage-fabriquez-votre-plante-connectee\",\n        \"fete-de-la-musique-a-saint-pierre-du-perray\",\n        \"la-troupe-du-jamel-comedy-club\",\n        \"concert-de-cloture-hommage-a-franck-sinatra-par-austin-o-brien-quintet-et-wendy-lee-taylor\",\n        \"partir-en-livre-2eme-edition-fete-du-livre-jeunesse\",\n        \"journees-nationales-de-l-archeologie-visitez-le-site-archeologique-d-etiolles\",\n        \"ceux-qui-errent-ne-se-trompent-pas\",\n        \"le-mariage-de-figaro\",\n        \"3d\",\n        \"concert-de-musique-de-chambre-dimanche-19-juin-a-16h\",\n        \"le-chant-des-pavillons\",\n        \"40-ans-d-images-derriere-le-rideau\",\n        \"bande-dessinee-et-immigrations-un-siecle-d-histoire-s\",\n        \"eteins-la-lumiere-je-veux-voir-les-ombres\",\n        \"concert-les-romances-d-essonnances\",\n        \"entrez-dans-les-coulisses-de-la-prehistoire-a-etiolles-projection\",\n        \"entrez-dans-les-coulisses-de-la-prehistoire-a-etiolles-conferences\",\n        \"mundo-nuevo\",\n        \"soiree-cabaret-bastringue\",\n        \"conference-des-lapins-architecte\",\n        \"commedia-dell-mozarte\",\n        \"beethoven-metallo-vivace\",\n        \"entrez-dans-les-coulisses-de-la-prehistoire-a-etiolles-cicuit-decouverte\",\n        \"entrez-dans-les-coulisses-de-la-prehistoire-a-etiolles-demonstration\",\n        \"manran-festival-celte\",\n        \"les-jazzy-jumelages\",\n        \"pourquoi-les-poules-preferent-elles-etre-elevees-en-batterie\",\n        \"entrez-dans-les-coulisses-de-la-prehistoire-a-etiolles-ateliers\",\n        \"reveries-magnetiques\",\n        \"la-resistible-ascencion-d-arturo-ui\",\n        \"ateliers-d-illustration-special-manga\",\n        \"brico-troc\",\n        \"blockbuster\",\n        \"les-couleurs-qui-vous-mettent-en-valeur\",\n        \"festival-country-concert-des-rusty-legs\",\n        \"entrez-dans-les-coulisses-de-la-prehistoire-a-etiolles-visites-guidees\",\n        \"a-la-croisee-des-genres-du-papier-au-pixel-special-polar\",\n        \"the-notwist-buvette\",\n        \"trois-grandes-fugues\",\n        \"une-jeunesse-francaise-2017\",\n        \"presentation-de-la-saison-2016-2017\",\n        \"stage-fabriquez-un-robot-qui-avance-en-vibrant\",\n        \"festival-country-il-etait-une-fois-l-amerique\",\n        \"stage-detectives-du-ciel\",\n        \"partir-en-livre-2eme-edition-fete-du-livre-jeunesse-202633ae-fde2-47f9-af4c-4cd2946876b5\",\n        \"cap-monde-presente-russie-volga-et-anneau-d-or\",\n        \"concours-participatif-manga\",\n        \"5emes-hurlants\",\n        \"le-jour-le-plus-court\",\n        \"un-frisson-dans-la-nuit\",\n        \"le-train-des-galaxies\",\n        \"marta-ren-and-the-groovelvets-dj-plande\",\n        \"cafe-polyglotte-2017-bibliotheque-municipale-marguerite-yourcenar-nandy\",\n        \"visite-du-domaine-de-la-grange-la-prevote-2017\",\n        \"visite-de-la-cathedrale-de-la-resurrection-d-evry\",\n        \"mediatheque-albert-camus-cafe-cultures-e35c4156-e0aa-4d51-ad29-8fa15857f23c\",\n        \"oeuvres\",\n        \"werther-opera-retransmission-en-direct-au-cinema-prevert\",\n        \"la-face-cache-de-la-lune\",\n        \"le-criminel\",\n        \"stage-maitrisez-le-vol-d-une-fusee\",\n        \"heure-des-bebes-ebc5a219-ceb1-4889-9642-4b03b35efcb5\",\n        \"cine-peinture-autour-du-film-le-mystere-jerome-bosch\",\n        \"teintures-vegetales\",\n        \"moonspell-der-weg-einer-freiheit-volker\",\n        \"les-dessous-de-l-ecran\",\n        \"makey-makey\",\n        \"heureuses-lueurs\",\n        \"cycle-les-chefs-d-oeuvre-du-cinema-india-song\",\n        \"inauguration-de-l-oeuvre-d-hendrik-beikirch-dit-ecb-darya\",\n        \"l-armee-des-ombres\",\n        \"le-printemps-en-photo\",\n        \"binome\",\n        \"finir-en-beaute\",\n        \"foire-aux-vetements-printemps-ete-et-puericulture\",\n        \"t-e-m-p-s-rencontre-d-ecoles-d-arts\",\n        \"missing-porte-disparu\",\n        \"la-maison-d-ecole-de-pouilly-le-fort-d5f9d263-01b5-4df7-b4b0-96144de8675f\",\n        \"tremplin-humour-en-seine\",\n        \"du-graffiti-dans-les-tranchees-980dd62f-9f01-40a6-b924-da4fd4fa92fa\",\n        \"mediatheque-alain-ramey-cafe-cultures-4415886c-274f-4c91-ab70-c93faa339f91\",\n        \"euro-2016-au-cinema-prevert\",\n        \"saintry-fete-l-ete\",\n        \"une-ville-nouvelle-et-son-centre-commercial\",\n        \"makey-makey-f5084aa2-f227-40de-90d2-2411a83ba2ff\",\n        \"avant-le-ciel\",\n        \"conference-le-retour-du-castor-en-essonne\",\n        \"vocal-acrobats-the-passion-of-an-improvised-journey\",\n        \"exposition-de-tapas-et-d-objets-marquisiens\",\n        \"stage-apprenez-a-transformer-l-energie\",\n        \"dal-vivo\",\n        \"apero-polar\",\n        \"le-petit-prince-d-antoine-de-saint-exupery\",\n        \"exposition-verdun-des-hommes-en-enfer\",\n        \"l-impression-3d-a-portee-de-tous\",\n        \"avant-premiere-du-film-tempete-de-sable\",\n        \"vernissage-de-l-exposition-d-olivier-long\",\n        \"visite-du-musee-aeronautique-et-spatial-safran\",\n        \"moustique-de-fabien-arca\",\n        \"partenariat-avec-cinefac\",\n        \"8eme-pianothon-dans-le-cadre-du-telethon\",\n        \"le-grand-voyage-07c2e9b7-2572-4ff4-a379-6ae601391ce4\",\n        \"il-trovatore-opera-de-hvorostovsky-retransmission-en-direct\",\n        \"jardiniers-en-herbe\",\n        \"urban-trail-exona\",\n        \"le-telethon-a-etiolles\",\n        \"creation-holographique-realite-augmentee\",\n        \"de-la-2d-a-la-3d\",\n        \"visite-de-l-observatoire-camille-flammarion-de-juvisy-sur-orge\",\n        \"creation-holographique-realite-augmentee-e24009b0-ea49-40a3-8808-1278576a136e\",\n        \"forum-des-associations\",\n        \"portraits-de-femmes\",\n        \"atout-valses-repetition-generale-du-concert-symphonique\",\n        \"fete-de-la-musique-a-nandy\",\n        \"jardin-d-ete\",\n        \"garden-golf-de-st-germain-competition-au-profit-du-telethon\",\n        \"histoire-et-techniques-de-fabrication-de-la-chechia\",\n        \"fete-de-la-musique-2017-a-corbeil-essonnes-jazz-festival\",\n        \"atelier-nature-en-famille\",\n        \"quel-cirque\",\n        \"carnaval-a-st-germain-les-corbeil\",\n        \"le-mois-du-film-documentaire-la-cour-de-babel\",\n        \"le-mois-du-film-documentaire-comme-un-poisson-dans-l-eau\",\n        \"ose\",\n        \"racontines-2017-mediatheque-cote-cour\",\n        \"fete-de-la-science-avec-planete-sciences-venez-imprimer-un-objet-en-3d\",\n        \"vide-grenier-a-bondoufle\",\n        \"mediatheque-alain-ramey-cafe-cultures-b0f3bf34-ebb6-445a-9c06-2f9f797dc21e\",\n        \"spectacle-hakuna-matata\",\n        \"monsieur-chasse\",\n        \"serge-gainsbourg-s-songs\",\n        \"la-corrida-de-corbeil-essonnes\",\n        \"les-femmes-de-genies-sont-rares\",\n        \"le-mois-du-film-documentaire-bulles-d-exil\",\n        \"le-mois-du-film-documentaire-spartacus-et-cassandra\",\n        \"atout-valses-concert-symphonique-familial-propose-dans-le-cadre-de-ris-en-seine\",\n        \"atout-valses-concert-symphonique\",\n        \"l-ogresse-conte-scientifique\",\n        \"2e-rencontre-des-metiers-d-art-et-de-l-apprentissage\",\n        \"la-maison-vague\",\n        \"american-day-01\",\n        \"fanzine-is-not-dead\",\n        \"lowland\",\n        \"quatuor-a-dam\",\n        \"fete-nationale-a-bondoufle\",\n        \"s-r-a-t-e-s-quartet\",\n        \"l-ogresse-conte-scientifique-8eab9ae8-a925-4337-aef5-fb7f41149aa1\",\n        \"amours-nomades-chants-sepharades-chretiens-et-musulmans-rdv-du-pole\",\n        \"cafe-polyglotte-2017-bibliotheque-municipale-marguerite-yourcenar\",\n        \"nuit-des-eglises-a-la-cathedrale-saint-spire\",\n        \"fete-nationale-a-lisses\",\n        \"salon-de-la-bande-dessinee\",\n        \"rain\",\n        \"les-mangeurs-de-lapin-font-tout-un-plat\",\n        \"heros-fracas\",\n        \"32emes-de-finale-de-la-coupe-de-france-de-football\",\n        \"ma-biche-et-mon-lapin-3-petits-cochons\",\n        \"fete-nationale-a-ris-orangis\",\n        \"urban-trail-exona-2017-challenge-grand-paris-sud\",\n        \"l-opera-national-de-paris-aux-cinoches-retransmission-de-don-carlos-de-verdi-opera\",\n        \"musique-d-europe-centrale\",\n        \"concert-chant-et-piano\",\n        \"bal-folk-a-l-auberge-74b2676f-9457-4c2f-9e91-cc766fd4e3c4\",\n        \"saint-pierre-et-miquelon-la-nature-a-l-etat-sauvage\",\n        \"spectacle-de-fin-d-annee-astragale-cie\",\n        \"compagnie-swaggers-in-the-middle-danse\",\n        \"lamano-festival-tremplin\",\n        \"fete-nationale-a-villabe\",\n        \"cosi-fan-tutte-opera-de-mozart-retransmission-en-direct\",\n        \"exposition-steeve-fautre\",\n        \"changer-le-regard-face-au-handicap\",\n        \"cap-monde-presente-deserts-d-egypte\",\n        \"atelier-bidouille-donnez-vie-a-vos-dessins\",\n        \"weekend-ener-j-j-concours-et-concert\",\n        \"fete-nationale-a-evry\",\n        \"carre-plage-2017\",\n        \"bike-and-run\",\n        \"the-new-roses-77\",\n        \"mediatheque-elsa-triolet-cafe-cultures\",\n        \"atelier-yoga-et-contes\",\n        \"scene-ouverte-b4fce0af-4b67-46b2-a811-6b662bb39f36\",\n        \"cafe-des-langues\",\n        \"la-fille-inconnue-en-avant-premiere\",\n        \"projection-du-film-le-secret-magnifique\",\n        \"animation-autour-du-film-promenons-nous-avec-les-petits-loups\",\n        \"scene-ouverte-31a741ab-f868-4c6b-b96a-57c75295d877\",\n        \"le-salon-des-artisans-createurs-art-smod-printemps\",\n        \"les-andalousies-du-bosphore-a-gibraltar\",\n        \"weekend-ener-j-j-une-journee-a-la-ferme\",\n        \"la-mathilde-kaz-harry-noise-syndrome-wild-mighty-freaks\",\n        \"spectacle-de-retour-de-residence-et-4-f-ames\",\n        \"scene-ouverte-410f4424-ff62-4e17-b109-607df3bc52c1\",\n        \"festival-de-l-oeil-urbain-2017-office-de-tourisme-seine-essonne-corbeil-essonnes\",\n        \"tete-yse-sauvage\",\n        \"tairo\",\n        \"musique-de-chambre\",\n        \"ris-en-seine\",\n        \"exposition-photo-liberation-de-paris-2014\",\n        \"andre-ceccarelli-west-side\",\n        \"projection-du-film-brooklyn-en-presence-du-realisateur\",\n        \"initiation-au-yoga-projection-debat\",\n        \"chasse-au-tresor-autour-du-street-art\",\n        \"projection-du-film-vivant-en-presence-du-realisateur\",\n        \"bernard-lavilliers-en-concert-nouvel-album-5-minutes-au-paradis\",\n        \"lamano-festival-concert-next-door\",\n        \"lamano-festival-concert-maya-vibes\",\n        \"lamano-festival-concert-harold\",\n        \"festival-play-it-again\",\n        \"decouvrez-le-street-art-a-evry-en-velo\",\n        \"cycle-psychanalyse-et-cinema-d7fb1949-39fd-46d7-b371-28fee27a022e\",\n        \"projection-du-film-mali-blues-en-presence-de-la-chanteuse-fatoumata-diawara\",\n        \"lamano-festival-concert-freaksoul\",\n        \"le-mensonge\",\n        \"concerto-a-tempo-d-umore\",\n        \"un-obus-dans-le-coeur\",\n        \"ouverture-de-la-saison-culturelle-a-sidney-bechet\",\n        \"projection-du-film-twenty-feet-from-stardom\",\n        \"le-suaire-de-turing\",\n        \"les-fossiles-temoignent\",\n        \"lamano-festival-concert-charlie-the-soap-opera\",\n        \"seine-et-sun-plage\",\n        \"un-dimanche-a-la-ferme-neuve\",\n        \"lamano-festival-4b6b7b99-3174-4233-b6f2-db7862e6be2f\",\n        \"soiree-speed-dating-a-la-patinoire-de-l-agora\",\n        \"un-conteur-dans-la-maison-d-alphonse-daudet\",\n        \"sur-les-chemins-de-montauger\",\n        \"lamano-festival-concert-joe-pilgrim-the-ligerians\",\n        \"lamano-festival-concert-kanka\",\n        \"lamano-festival-soundsystem-armless-kid-mathieu-faubourg\",\n        \"au-coeur-du-verger\",\n        \"atelier-bruitage-doublage-autour-du-film-ma-vie-de-courgette\",\n        \"cine-concert-autour-du-film-les-nouvelles-aventures-de-pat-et-mat\",\n        \"croisiere-abracadabra\",\n        \"bourse-aux-vetements-de-cesson\",\n        \"lamano-festival-soundsystem-snoww-dub-system\",\n        \"lamano-festival-soundsystem-dubbytek\",\n        \"eco-jardin-techniques-culturales-et-travaux-de-saison\",\n        \"combs-la-ville-accueille-le-20e-tournoi-international-de-gymnastique\",\n        \"nicole-ferroni-l-oeuf-la-poule-ou-nicole\",\n        \"cap-monde-presente-la-mere-des-mongols\",\n        \"la-senartaise-2017\",\n        \"bal-folk-a-l-auberge-2017-mjc-cmt-de-ris-orangis\",\n        \"lamano-festival-soundsystem-roots-diligence-ras-mac-bean\",\n        \"lamano-festival-soundsystem-mahom-dub\",\n        \"lamano-festival-soundsystem-weeding-dub\",\n        \"forum-des-associations-de-villabe\",\n        \"journee-halloween-aux-cinoches\",\n        \"animation-de-noel-autour-du-film-monsieur-bout-de-bois\",\n        \"membros-creation-dj-d-vyzor\",\n        \"les-soirees-versus-cinema-laissez-vous-surprendre\",\n        \"le-poisson-belge\",\n        \"ca-tourne-en-ile-de-france\",\n        \"rencontre-autour-du-court-metrage-en-ile-de-france\",\n        \"visite-de-la-maison-du-combattant-et-du-citoyen\",\n        \"croisiere-aperitif\",\n        \"anastasia-ballet-de-macmillan-retransmission-en-direct\",\n        \"orchestre-du-consevatoire-de-musique-de-sindelfingen\",\n        \"fete-nationale-a-moissy-cramayel\",\n        \"poilu-puree-de-guerre\",\n        \"cicatrices-de-guerre\",\n        \"halloween\",\n        \"les-contes-d-hoffmann-opera-d-offenbach-retransmission-en-direct\",\n        \"fete-de-la-nature-dans-le-cirque-de-l-essonne\",\n        \"voyage-en-vielle-a-roue-trio-zanzibar-rdv-du-pole\",\n        \"quand-le-diable-s-en-mele\",\n        \"les-vitalabri\",\n        \"fete-des-associations-de-bondoufle\",\n        \"la-grande-vitrine-de-noel\",\n        \"salon-du-tourisme-d-ici-et-d-ailleurs\",\n        \"le-souper\",\n        \"robert-charlebois\",\n        \"fete-des-associations-de-lisses\",\n        \"journees-portes-ouvertes-de-telecom-sudparis\",\n        \"forum-eveil-des-talents\",\n        \"des-asperites\",\n        \"animation-vente-de-jeux-selection-de-noel\",\n        \"soiree-cabaret-musique\",\n        \"concert-gospel-french-s-voices\",\n        \"les-oiseaux-essonniens\",\n        \"louees-soient-les-immigrantes\",\n        \"kamel-le-magicien\",\n        \"fills-monkey-incredible-drum-show\",\n        \"stephane-guillon-certifie-conforme\",\n        \"le-dindon\",\n        \"distortion-des-lointains\",\n        \"marche-de-noel-de-saint-pierre-du-perray\",\n        \"lion\",\n        \"loving-vo\",\n        \"de-l-arriere-au-front-corbeil-essonnes-dans-la-grande-guerre-3fc18bf5-ed12-44b3-9ae8-11c51cafcb16\",\n        \"virginie-hocq-sur-le-fil\",\n        \"de-la-neige-pour-noel\",\n        \"le-plan-a-la-mediatheque-alysce\",\n        \"de-l-arriere-au-front-corbeil-essonnes-dans-la-grande-guerre\",\n        \"venez-feter-les-courts-metrages-et-le-jour-le-plus-court-de-l-annee\",\n        \"des-musiciens-dans-la-guerre\",\n        \"lecture-nimee-2017\",\n        \"blabla-des-belles-bulles\",\n        \"le-village-d-ete-a-savigny-le-temple\",\n        \"carre-plage\",\n        \"les-mercredis-de-l-ete\",\n        \"pince-moi-je-reve\",\n        \"journees-europeennes-du-patrimoine\",\n        \"ballet-dans-un-mouchoir-de-poche\",\n        \"patients\",\n        \"moissy-plage\",\n        \"week-end-multi-force\",\n        \"republique-et-radicalisation\",\n        \"moi-si-je-cours-3eme-edition\",\n        \"republique-et-biologies\",\n        \"republique-et-feminisme\",\n        \"le-roi-singe-opera-de-pekin\",\n        \"la-sociale\",\n        \"fete-nationale-a-corbeil-essonnes\",\n        \"exposition-le-street-art-donne-des-couleurs-a-la-ville\",\n        \"le-cine-club-de-l-agora\",\n        \"rencontre-musicale-et-si-on-parlait-musique-l-eau-source-d-inspiration-musicale\",\n        \"republique-et-developpement-durable\",\n        \"visite-de-l-usine-de-depollution-de-l-eau\",\n        \"spectacle-le-journal-de-brigitte-jaune\",\n        \"visite-interconfessionnelle-a-evry\",\n        \"revisions-du-bac\",\n        \"little-big-man-aux-cinoches\",\n        \"fete-des-associations\",\n        \"avant-premiere-du-film-la-grande-course-au-fromage\",\n        \"fff-janice-in-the-noise\",\n        \"spectacle-etre-le-loup\",\n        \"le-printemps-des-oiseaux\",\n        \"recital-de-piano-marie-vermeulin\",\n        \"rencontres-choregraphiques\",\n        \"fete-des-associations-de-combs-la-ville\",\n        \"la-foulee-des-brettes\",\n        \"nos-jours-heureux\",\n        \"concert-arman-melies\",\n        \"cafe-culture-special-bandes-dessinees\",\n        \"defi-inter-entreprises-de-grand-paris-sud-edition-2017\",\n        \"1er-forum-de-la-renovation-energetique-en-copropriete\",\n        \"dialogue-entre-l-art-et-le-cirque-atelier-exceptionnel-de-dessin-d-apres-modeles-en-mouvements\",\n        \"visite-du-domaine-de-la-grange-la-prevote\",\n        \"tournoi-feminin-de-handball\",\n        \"journees-du-patrimoine\",\n        \"rdv-du-pole-concert-pedagogique-tout-public\",\n        \"rdv-du-pole-concert-pedagogique-tout-public-76871049-3930-4602-adf8-9864236a7ec9\",\n        \"casse-noisette-en-direct-au-cinema\",\n        \"mediatheque-albert-camus-l-heure-des-bebes\",\n        \"un-duo-qui-va-vous-en-mettre-plein-la-vue\",\n        \"monsieur-et-madame-barbe-bleue\",\n        \"zimino-zimino-zi\",\n        \"o-baobab-a673e35d-cb5f-4104-9543-b702ac08e8af\",\n        \"spectacle-les-7-gueules-du-dragon\",\n        \"carte-blanche-a-laurent-corvaisier\",\n        \"danakil-la-rue-raisonne-avec-en-1ere-partie-nattali-rize\",\n        \"bora-bora\",\n        \"rentree-litteraire\",\n        \"conference-sur-gustave-courbet\",\n        \"gouter-contes\",\n        \"cafe-polyglotte\",\n        \"salon-de-la-recup-et-recyclage\",\n        \"mois-du-film-documentaire\",\n        \"projection-the-immigrant\",\n        \"mariana-ramos-en-concert\",\n        \"une-jeunesse-francaise\",\n        \"mediatheque-de-l-agora-cafe-cultures-d3deeb27-bf03-4d77-a893-b692bc8b52b9\",\n        \"vernissage-de-l-exposition-40-ans-d-images-derriere-le-rideau\",\n        \"soiree-de-presentation-de-la-saison-culturelle\",\n        \"petite-balade-pour-peu\",\n        \"conference-de-l-air\",\n        \"musiques-et-danses-latines-rdv-du-pole\",\n        \"marche-de-noel-a-soisy-sur-seine\",\n        \"cine-gouter-dans-le-cadre-du-festival-telerama-enfants\",\n        \"cinema-patients\",\n        \"batir-un-theatre-changer-la-ville\",\n        \"la-ville-a-de-construire\",\n        \"inventer-un-monde\",\n        \"trio-amanda-favier\",\n        \"stage-de-fitness\",\n        \"conference-robots-quelles-sont-vos-missions\",\n        \"j-y-croi-x-pas\",\n        \"football-feminin-championnat-de-france\",\n        \"presentation-de-la-saison-culturelle-2016-2017\",\n        \"concert-de-l-orchestre-de-l-harmonie\",\n        \"spectacle-jarry-atypique\",\n        \"fete-de-la-ville-de-bondoufle\",\n        \"didier-gustin-part-en-live-sur-la-scene-de-bondoufle\",\n        \"exposition-gustave-courbet-le-peintre-du-reel\",\n        \"bande-dessinee-et-immigrations-un-siecle-d-histoire-s-visite-guidees\",\n        \"heure-des-bebes-945db328-80bc-43ce-aba4-db995c0c0002\",\n        \"petit-concert-a-l-occasion-des-30-ans-du-conservatoire-de-musique-de-nandy\",\n        \"karate-coupe-du-monde-kofukan-2017\",\n        \"rever-un-monde-et-le-reconstuire\",\n        \"heure-des-bebes\",\n        \"les-poilus-en-1917-du-ras-le-bol-a-la-rebellion\",\n        \"roller-hockey-feminin-ris-orangis-recoit-reims\",\n        \"vide-ta-chambre\",\n        \"matinale-des-entreprises-a-bondoufle\",\n        \"fete-de-la-science-avec-planete-sciences-venez-vous-amuser-tout-en-apprenant-avec-des-drones\",\n        \"vu\",\n        \"portes-ouvertes-aux-archives-de-l-agglomeration-grand-paris-sud\",\n        \"mediatheque-de-l-agora-l-heure-des-bebes-2261cd74-fdcd-4a04-9cca-52ebb723778a\",\n        \"spectacle-ces-gens-la\",\n        \"animation-mon-p-tit-cine\",\n        \"fete-de-la-science-avec-planete-sciences-venez-construire-un-robot-cafard\",\n        \"fete-de-la-science-avec-planete-sciences-venez-programmer-des-mini-robots-et-un-bras-robotise\",\n        \"shadows-songs-of-nat-king-cole\",\n        \"la-nuit-transfiguree-par-les-pleiades\",\n        \"week-end-halloween\",\n        \"celtic-dances\",\n        \"rions-un-peu-pour-feter-le-court-metrage\",\n        \"klesudra-ou-celui-qui-vole-l-eau\",\n        \"heure-des-bebes-65c80b28-2d1b-4be7-ae05-db5682a8c823\",\n        \"heure-des-bebes-78eb98ab-3e39-40ef-bb85-bd8ecb587e04\",\n        \"histoire-des-ecoles-d-evry\",\n        \"vide-grenier\",\n        \"exposition-memoires-de-ville\",\n        \"club-cine\",\n        \"forum-des-associations-de-lieusaint\",\n        \"los-koyas-noel-sud-americain\",\n        \"bal-trad-diato\",\n        \"beartooth\",\n        \"helmet-harmonic-generator\",\n        \"criiiic\",\n        \"miles-ou-le-coucou-de-montreux\",\n        \"presentation-du-trimestre-concert\",\n        \"exposition-d-arts-visuels\",\n        \"escale-en-polynesie-2017\",\n        \"il-etait-une-fois-le-cirque\",\n        \"vespra-della-beata-vergine-de-claudio-monteverdi\",\n        \"entre-les-lignes-la-rentree-litteraire-2016\",\n        \"bachar-mar-khlalife-en-concert\",\n        \"concert-et-masterclass-avec-le-guitariste-pedro-rodrigues\",\n        \"fete-du-sport\",\n        \"les-tuche-2-le-reve-americain\",\n        \"exposition-de-maquettes-de-cirque-et-fete-foraine\",\n        \"leila-martial-skolm\",\n        \"visite-guidee-de-carre-senart-centre-historique\",\n        \"village-nanoub-d91bf6f0-d592-400e-8765-61925f8b09cc\",\n        \"presentation-de-la-saison-culturelle\",\n        \"forum-des-associations-de-savigny-le-temple\",\n        \"forum-des-associations-de-courcouronnes\",\n        \"avant-premiere-du-film-vaiana-la-legende-du-bout-du-monde\",\n        \"concert-fai-baba-slow-sliders\",\n        \"don-quichotte\",\n        \"journees-nationales-de-l-archeologie-site-archeologique-d-etiolles\",\n        \"forum-des-associations-de-grigny\",\n        \"forum-des-associations-d-etiolles\",\n        \"forum-des-associations-de-cesson-et-de-vert-saint-denis\",\n        \"forum-des-associations-de-moissy-cramayel\",\n        \"forum-des-associations-de-soisy-sur-seine\",\n        \"exposition-laissons-parler-les-petits-papiers\",\n        \"kagemusha-l-ombre-du-guerrier\",\n        \"les-jazzy-jumelages-a-la-maison-de-quartier-des-aunettes\",\n        \"fete-de-la-musique-a-la-mjc-cs-moulin-du-monde\",\n        \"8eme-edition-de-la-fete-de-la-foret-de-senart\",\n        \"colloque-le-point-de-vue-dans-la-vie-quotidienne\",\n        \"conference-diplomatie-des-droits-de-l-homme-et-cour-penale-internationale\",\n        \"la-bonne-nouvelle\",\n        \"writing-ground-biophony\",\n        \"tosca-opera-en-trois-actes-de-giacomo-puccini-en-direct-au-cinema\",\n        \"espace-rentree-etudiant\",\n        \"forum-des-associations-de-tigery\",\n        \"forum-des-associations-du-coudray-monteceaux\",\n        \"art-smod\",\n        \"velofolies-2016\",\n        \"mathias-duplessy-les-violons-du-monde\",\n        \"battle-blow-your-style\",\n        \"the-roots-2017\",\n        \"l-homme-v\",\n        \"nicolas-de-bailleul-seigneur-de-soisy-au-temps-des-mousquetaires\",\n        \"mediatheque-albert-camus-cafe-cultures\",\n        \"forum-des-associations-de-morsang-sur-seine\",\n        \"forum-des-associations-de-saint-pierre-du-perray\",\n        \"forum-des-associations-de-ris-orangis\",\n        \"senart-visite-guidee-d-un-centre-en-construction\",\n        \"melodies-du-monde\",\n        \"forum-des-associations-de-corbeil-essonnes\",\n        \"concert-des-140-ans-de-l-harmonie-de-moissy-cramayel\",\n        \"voile-stages-estivals\",\n        \"projection-debat\",\n        \"les-jazzy-jumelages-concert-pedagogique-pour-les-centres-de-loisirs\",\n        \"le-sacre-et-le-profane\",\n        \"ateliers-d-initiations-decoupeuse-laser-et-carte-de-programmation\",\n        \"concert-release-party-wakan-tanka\",\n        \"red-cardell-en-concert\",\n        \"ian-paice-purpendicular\",\n        \"marathon-cinema-7-jours-pour-faire-ton-film\",\n        \"avant-premiere-du-film-ivan-tsarevitch-et-la-princesse-changeante\",\n        \"projection-quizz-sur-la-grande-vadrouille\",\n        \"cap-monde-presente-tibet-les-nomades-khampas\",\n        \"retransmission-en-direct-de-l-opera-samson-et-dalila\",\n        \"tubes\",\n        \"show-case-d-alysce\",\n        \"marche-de-noel-a-morsang-sur-seine\",\n        \"gerald-de-palmas-en-concert\",\n        \"messmer-intemporel\",\n        \"nouveau-spectacle-c-est-moi-la-plus-belge\",\n        \"bharati-2-le-palais-des-illusions\",\n        \"le-festival-telerama-2017-aux-cinoches\",\n        \"africolor\",\n        \"lucrece-borgia\",\n        \"telethon-2017-tournoi-de-volley-by-night\",\n        \"vincent-dedienne-s-il-se-passe-quelque-chose\",\n        \"atelier-land-art-perform-arts\",\n        \"tesseract\",\n        \"marche-de-noel-de-tigery\",\n        \"journee-de-la-femme-un-moment-pour-soi\",\n        \"realisation-d-une-nouvelle-oeuvre-street-art-d-ecb-a-evry\",\n        \"popa-chubby\",\n        \"kalash-dijayze\",\n        \"salon-du-bien-etre-au-feminin-2017\",\n        \"danse-hip-hop-je-me-sens-bien-xtremambo\",\n        \"complet-kalash-la-dame-blanche\",\n        \"croisiere-pirates\",\n        \"tchung-min-c-est-pas-marque-sur-mon-front\",\n        \"rencontre-avec-henry-padovani-le-fondateur-de-the-police-concerts-et-projection\",\n        \"chotto-desh\",\n        \"avant-premiere-du-film-anastasia-en-numerique-restaure\",\n        \"evry-game-city-3\",\n        \"entre-les-lignes-presentation-litteraire\",\n        \"fete-de-la-dame-bleue\",\n        \"avant-premiere-du-film-les-figures-de-l-ombre\",\n        \"delhi-les-30-desastreuses\",\n        \"jam-session\",\n        \"guizmo-dijayze-kpoint\",\n        \"talisco-yalta-club\",\n        \"secrets-de-jardins-en-essonne-jardin-des-solidarites-grigny\",\n        \"tennis-de-table-challenge-individuel\",\n        \"fete-de-la-musique-2017-a-evry\",\n        \"le-printemps-du-cinema-aux-cinoches-rn-7\",\n        \"baptiste-lecaplain-sur-scene\",\n        \"la-photo-s-invite-a-montauger-saison-4\",\n        \"le-printemps-du-cinema-aux-cinoches-plateau\",\n        \"fetes-de-printemps-2017-a-la-piscine\",\n        \"cine-concert-tabou-escale-en-polynesie\",\n        \"cine-musique-la-fontaine-fait-son-cinema\",\n        \"le-parc-animalier\",\n        \"mediatheque-alain-ramey-cafe-cultures-ca135c1d-0a9a-483f-8af8-6c4f922a0751\",\n        \"jabberwocky-thylacine-clement-bazin\",\n        \"puzzling-a-la-mediatheque-alain-ramey\",\n        \"projection-de-merci-patron\",\n        \"cine-creche-ferda-la-fourmi\",\n        \"flash-back-vol-1-japon-annees-50-80-projection-du-film-une-femme-dont-on-parle-de-kenji-mizogichi\",\n        \"repair-cafe\",\n        \"rassemblement-autos-motos-americaines\",\n        \"local-heroes-4\",\n        \"bjorn-berge-dj-planbe\",\n        \"patrice\",\n        \"jam-session-2017\",\n        \"cycle-les-chefs-d-oeuvre-du-cinema-poetry-remplace-la-femme-des-sables-initialement-prevu\",\n        \"visitez-grigny\",\n        \"phil-rudd-lex-koritni\",\n        \"croisiere-jazzy\",\n        \"vide-grenier-a-saintry-sur-seine\",\n        \"racontines-2018\",\n        \"cafe-rencontres-alternatib-art-s\",\n        \"la-chienne\",\n        \"cycle-les-chefs-d-oeuvre-du-cinema-prenom-carmen\",\n        \"textures\",\n        \"o-baobab-contes-et-musiques-d-afrique-noire\",\n        \"mediatheque-de-l-agora-l-heure-des-bebes-b387741e-7dd4-4a84-bf2b-f04f128d84b6\",\n        \"football-americain-evry-recoit-villeneuve-d-ascq\",\n        \"catch-gala-wrestling-event-2017\",\n        \"conference-images-du-monde-sur-la-piste-de-la-croisiere-noire\",\n        \"animation-de-noel\",\n        \"bal-irlandais-ceili-de-la-st-patrick\",\n        \"handball-match-de-gala-hbc-val-de-seine-7eme-edition\",\n        \"avant-premiere-le-grand-mechant-renard-et-autres-contes\",\n        \"l-opera-national-de-paris-en-direct-aux-cinoches-la-cenerentola-de-gioacchino-rossini-opera\",\n        \"mediatheque-de-l-agora-cafe-cultures-d3809b16-c9da-48c2-99b7-ee1e9a2bc8b6\",\n        \"marche-solidaire\",\n        \"la-maison-d-ecole-de-pouilly-le-fort\",\n        \"marche-de-noel-a-combs-la-ville\",\n        \"initiation-a-la-peche\",\n        \"le-coteau-de-montblin-un-site-a-preserver\",\n        \"a-bras-ouverts\",\n        \"concert-chant-piano-et-quatuor-a-cordes\",\n        \"cours-d-initiation-de-taichi-chuan\",\n        \"show-case-de-la-chorale-du-plan-d8c68d25-6ea3-4769-a1f4-f82372e28e3c\",\n        \"eric-devantoy\",\n        \"maharadja-une-exposition-thematique\",\n        \"concert-de-poche-a-savigny-le-temple-de-l-ancien-au-nouveau-monde\",\n        \"musique-et-cinema-autour-du-film-le-tableau\",\n        \"point-de-vue\",\n        \"un-profil-pour-deux\",\n        \"p-tit-bonhomme-cie\",\n        \"cine-gouter-cendrllon\",\n        \"atelier-pocket-film-marathon-du-cinema-2018\",\n        \"cinema-du-reel-festival-hors-les-murs\",\n        \"strong-doudou\",\n        \"ah-les-histoire-de-famille\",\n        \"fete-de-la-musique-2017-et-feux-de-la-saint-jean-a-villabe\",\n        \"germaine-germaine\",\n        \"rencontre-autour-du-documentaire-l-opera\",\n        \"animation-de-noel-autour-du-film-julius-et-le-pere-noel\",\n        \"stage-de-capoeira-enfants-6-11-ans\",\n        \"marche-de-l-art-et-de-l-artisanat-d-art\",\n        \"caisse-qui-s-passe\",\n        \"journee-des-langues\",\n        \"festival-telerama\",\n        \"abou-debeing-rencontre-et-live\",\n        \"alibi-com-2017\",\n        \"blazin-fiddles-festival-celte\",\n        \"lalala-napoli-chanson-napolitaine-revisitee\",\n        \"projection-de-mustang-journee-internationale-des-droits-des-femmes\",\n        \"nettoyage-de-printemps\",\n        \"fete-de-la-musique-2017-a-saint-pierre-du-perray\",\n        \"les-oeuvres-de-virginia-woolf-ballet-de-mcgregor-retransmission-en-direct\",\n        \"histoire-de-l-art-et-des-images-orient-occident-a-la-renaissance\",\n        \"stage-piloter-un-drone\",\n        \"zumba-masterclass\",\n        \"cinepeinture-le-mystere-jerome-bosch\",\n        \"ilona-et-maddelena\",\n        \"le-grand-tournoi-des-mediatheques-hearthstone\",\n        \"stage-creer-sa-voiture-wi-fi\",\n        \"spectacle-du-wati-comedy\",\n        \"ill-nino-ektomorf\",\n        \"soiree-litteraire-avec-le-conservateur-de-la-maison-des-esclaves\",\n        \"imaginary-broadway-en-concert\",\n        \"stage-creer-sa-station-meteo\",\n        \"depuis-l-aube-ode-aux-clitoris\",\n        \"air-l-expo-qui-inspire-a-savigny-le-temple\",\n        \"logan\",\n        \"chacun-sa-vie\",\n        \"mamani-keita\",\n        \"la-belle-et-la-bete\",\n        \"sage-femme\",\n        \"initiation-a-la-langue-des-signes-autour-du-film-les-p-tits-explorateurs\",\n        \"baby-phone\",\n        \"les-nouvelles-aventures-de-ferda-la-fourmi\",\n        \"tous-en-scene-2017\",\n        \"la-belle-au-bois-dormant-opera-de-petipa-ashton-dowell-whelldon-retransmission-en-direct\",\n        \"sfumato\",\n        \"scott-h-biram-the-pullmen\",\n        \"pokaz-richard-iii-w-shakespeare\",\n        \"juveniles-1ere-partie\",\n        \"ze-voices\",\n        \"2eme-salon-du-livre-de-saint-germain-les-corbeil\",\n        \"cinemix-atelier-de-montage-d-archives-et-de-composition-sonore\",\n        \"a-luz-azul-la-lumiere-bleue-du-portugal\",\n        \"telethon-2017-initiation-danses-en-ligne-et-soiree-dansante\",\n        \"colloque-evry-bio-info\",\n        \"fishbach-clea-vincent-malik-djoudi\",\n        \"les-32emes-de-finale-de-la-coupe-de-france-de-football-football-club-fleury-91-vs-stade-brestois\",\n        \"concert-participatif-histoire-de-femmes\",\n        \"river-to-the-sea\",\n        \"les-volcans-et-les-hommes\",\n        \"troc-aux-graines-et-plantes-succulentes\",\n        \"verino-en-spectacle-a-lisses\",\n        \"course-la-senartaise\",\n        \"projection-debat-2017\",\n        \"maternelles\",\n        \"marianne-james-miss-carpenter\",\n        \"air-l-expo-qui-respire-a-evry\",\n        \"la-main-passe\",\n        \"sac-a-histoires-2017-mediatheque-cote-cour\",\n        \"football-senart-moissy-recoit-troyes\",\n        \"tennis-de-table-combs-la-ville-recoit-mers-treport-et-sarrebourg\",\n        \"carmina-burana\",\n        \"cine-debat-en-quete-de-sens\",\n        \"stage-fabriquer-son-objet-3d\",\n        \"du-papier-au-pixel-special-star-wars\",\n        \"la-main-passe-2017\",\n        \"l-envers-du-decor-du-theatre-de-corbeil-essonnes\",\n        \"concert-loudblast-t-a-n-k-ka\",\n        \"delhi-les-30-desastreuses-2017-theatre-de-corbeil-essonnes\",\n        \"la-veillee\",\n        \"stage-apprenez-a-transformer-l-energie-2017\",\n        \"merlin-l-apprenti-enchanteur\",\n        \"claudio-capeo\",\n        \"la-nuit-de-l-orientation\",\n        \"musique-de-chambre-2017\",\n        \"ilona-et-maddelena-2017\",\n        \"mediatheque-colette-cafe-cultures-d5172459-1b43-4fc2-8176-eb8d3a8ce9e5\",\n        \"concert-so-gospel\",\n        \"concert-de-chant-choral-au-profit-de-retina-france\",\n        \"la-course-de-la-ronde-lissoise\",\n        \"tchavolo-schmitt-trio-jazz-manouche\",\n        \"jean-marie-machado-voyage-au-coeur-du-jazz\",\n        \"parcs-en-fete-loges\",\n        \"musee-paul-delouvrier\",\n        \"corbeil-essonnes-en-sports-6eme-edition\",\n        \"salon-elles-reussissent-2017\",\n        \"cycle-les-chefs-d-oeuvre-du-cinema-sonate-d-automne\",\n        \"chanter-est-un-sport-comme-un-autre\",\n        \"soiree-debat-dans-le-cadre-des-20-ans-du-festival-telerama\",\n        \"atelier-cosmetiques-maison\",\n        \"show-tahiti-nui\",\n        \"animation-degustation-autour-du-film-la-grande-course-au-fromage\",\n        \"soiree-dansante-annees-80\",\n        \"une-carmen-en-turakie\",\n        \"22eme-grand-prix-d-aviron-les-culs-geles-grand-paris-sud\",\n        \"ouvert-la-nuit\",\n        \"soiree-bien-vivre-ensemble\",\n        \"concert-pop-rock\",\n        \"le-vent-se-leve\",\n        \"neruda-v-o\",\n        \"ca-vous-branche\",\n        \"primaire\",\n        \"portes-ouvertes-du-lycee-georges-brassens\",\n        \"ilona-et-maddelena-2017-theatre-de-corbeil-essonnes\",\n        \"football-senart-moissy-recoit-sochaux-montbelliard\",\n        \"tempete-de-sable-en-version-originale\",\n        \"nova-twins-songe\",\n        \"cliche-contre-cliche-un-autre-regard-sur-nos-quartiers\",\n        \"live-by-night-v-f\",\n        \"live-by-night-v-o\",\n        \"festival-de-l-oeil-urbain-504bdf21-7c10-4ec2-9e8e-ed44852ebe9b\",\n        \"l-ecole-des-lapins\",\n        \"repair-cafe-2017-l-espace-atout-age\",\n        \"concert-familial-herve-demon\",\n        \"histoires-stampiennes\",\n        \"au-coeur-du-debaa-chant-danse-soufi-mayotte\",\n        \"des-plumes-et-de-l-eau\",\n        \"exposition-au-cinema-la-scala-de-milan-le-temple-des-merveilles\",\n        \"cinquante-nuances-plus-sombres-soiree-speciale\",\n        \"wetlands-comptage-des-oiseaux-d-eau\",\n        \"un-sac-de-billes\",\n        \"stage-d-icones-en-tous-genres\",\n        \"paralleles\",\n        \"la-maison-d-ecole-de-pouilly-le-fort-2017\",\n        \"les-epoux\",\n        \"othello\",\n        \"seance-unique-de-vaiana-la-legende-du-bout-du-monde\",\n        \"exposition-regards-d-ailleurs\",\n        \"silence-en-vf-et-vo\",\n        \"split\",\n        \"mediatheque-colette-cafe-cultures-13d7af88-d3e2-4da9-92d5-a3b668bbf8e8\",\n        \"cycle-danse-et-cinema-a-la-decouverte-de-la-biodanza\",\n        \"dalida\",\n        \"concert-du-nouvel-an-de-l-amicale-de-villabe\",\n        \"otello-opera-de-verdi-retransmission-en-direct\",\n        \"madame-butterfly-opera-de-puccini-retransmission-en-direct\",\n        \"atelier-artistique-botanique-2017\",\n        \"commemoration-de-l-abolition-de-l-esclavage-projection-du-film-citoyens-bois-d-ebene\",\n        \"toute-la-memoire-du-monde-projection-unique-de-panic-sur-florida-beach\",\n        \"icones-figurees\",\n        \"cine-creche-les-nouvelles-aventures-de-pat-et-mat\",\n        \"cine-creche-la-chouette-entre-veille-et-sommeil\",\n        \"exposition-qu-est-ce-qu-un-clown\",\n        \"bal-folk-a-l-auberge-2017\",\n        \"we-love-arabs-je-danse-parce-que-je-me-mefie-des-mots\",\n        \"master-class-uillean-pipe-cornemuse-irlandaise\",\n        \"histoire-de-betes-et-autres-aventures-tres-humaines\",\n        \"stage-danses-traditionnelles-enfants-jeux-et-danses-enfantines\",\n        \"stage-yarn-bombing-street-art\",\n        \"bal-enfants\",\n        \"les-projections-familiales-de-la-mediatheque-elsa-triolet-5b6fbbf5-b43f-40d7-a6b0-9e6fa42b3590\",\n        \"600-euros\",\n        \"cine-creche-promenons-nous-avec-les-petits-loups\",\n        \"festival-telerama-enfants-2nde-edition\",\n        \"pierre-scholla-peintre\",\n        \"cine-creche-leo-et-fred\",\n        \"cine-creche-coucou-nous-voila\",\n        \"norma-di-sciullo-assemblee-generale-mpv\",\n        \"andre-darmagnac\",\n        \"exposition-ciels\",\n        \"ronnie-lynn-patterson-trio\",\n        \"moonlight-v-o\",\n        \"opus-rictus\",\n        \"elaboration-de-donnees-et-territoires\",\n        \"exposition-le-petit-monde-d-anne-crausaz\",\n        \"soiree-debat-autour-du-film-la-sociale\",\n        \"cap-monde-presente-reunion-la-belle-creole\",\n        \"brunch-de-la-saint-valentin\",\n        \"vols-en-pique\",\n        \"atelier-10-doigts-2017\",\n        \"scene-ouverte-11\",\n        \"une-jeunesse-francaise-2017-commanderie-saint-jean\",\n        \"escale-en-polynesie\",\n        \"projet-365-photographies-de-nicolas-sornat\",\n        \"atelier-systeme-solaire-vivant\",\n        \"commedia-dell-mozarte-sur-la-place-de-la-commune-a-evry\",\n        \"dub-inc-roots-attack\",\n        \"nuit-de-la-poesie\",\n        \"les-somnambules\",\n        \"cycle-revu-et-corrige-le-travestissement-au-cinema\",\n        \"atelier-observer-le-soleil\",\n        \"traditions-revisitees-bruckner-busto-part-withacre\",\n        \"traits-d-histoire-entre-brie-et-hurepoix-0583006b-8044-4d23-bd3f-977b5cf9ec0e\",\n        \"pokaz-la-petite-catherine-d-apres-kleist-groupe-11\",\n        \"les-queens-du-kool-hotel\",\n        \"cycle-de-4-ateliers-faire-ses-meubles-en-carton\",\n        \"atelier-voyager-dans-l-espace-et-le-temps\",\n        \"des-reves-dans-le-sable\",\n        \"voyage-en-noir-et-blanc\",\n        \"rando-velo-sortie-a-saintry\",\n        \"atelier-orbites-et-voyages-inter-planetaires-a-vous-de-jouer\",\n        \"club-cine-2017\",\n        \"le-grand-tournoi-des-mediatheques-hearthstone-2017\",\n        \"bibliog-mes\",\n        \"la-belle-au-bois-dormant\",\n        \"le-lavoir\",\n        \"journee-culturelle-de-l-afrique-et-de-l-outre-mer\",\n        \"naive-new-beaters-3-somesisters\",\n        \"la-faculte-des-metiers-de-l-essonne-vous-ouvre-ses-portes\",\n        \"exposition-artefacts-les-transformations-du-livre\",\n        \"maureen-thiebaut-et-le-quatuor-girard\",\n        \"les-animaux-fantastiques\",\n        \"sony-congo\",\n        \"brocante-de-l-ascension\",\n        \"2eme-ecofestival-du-cinema-zero-phyto-100-bio\",\n        \"exposition-au-cinema-st-pierre-et-les-basiliques-papales-de-rome-3d\",\n        \"close-to-me\",\n        \"imany-en-concert\",\n        \"joyaux-ballet-de-balanchine-retransmission-en-direct\",\n        \"l-affiche-des-laureats-humour-en-seine\",\n        \"dis-cordes\",\n        \"saint-valentin-on-ice\",\n        \"la-faculte-des-metiers-de-l-essonne-vous-ouvre-ses-portes-2017\",\n        \"concert-du-rotary-spectacle-litteraire-et-musical\",\n        \"atelier-apprendre-a-faire-son-pain\",\n        \"lego-batman-le-film\",\n        \"cinquante-nuances-plus-sombres\",\n        \"soiree-des-grands-eleves-2\",\n        \"heure-des-bebes-multilingue\",\n        \"le-suaire-de-turing-2017\",\n        \"ondif-princes-des-neiges\",\n        \"une-longue-peine\",\n        \"rando-velo-randonnee-soleil-et-ombrages\",\n        \"cafe-polyglotte-2017\",\n        \"projection-et-debat-autour-du-film-en-quete-d-identite-s\",\n        \"projection-du-documentaire-sisters-suivie-d-un-debat\",\n        \"soiree-des-grands-eleves-3\",\n        \"magma-the-endless-tour\",\n        \"cycle-les-chefs-d-oeuvre-du-cinema-hiroshima-mon-amour\",\n        \"la-dictee-nationale-du-rotary\",\n        \"le-reve-variations-symphoniques-marguerite-et-armand-ballet-d-ashton-retransmission-en-direct\",\n        \"toute-la-memoire-du-monde-projection-unique-de-gremlins\",\n        \"soiree-des-grands-eleves-5\",\n        \"romain-humeau-la-feline\",\n        \"l-empereur\",\n        \"a-la-decouverte-de-l-ile-de-la-reunion-aux-cinoches\",\n        \"autour-des-fetes-populaires-a-ris-orangis\",\n        \"atelier-comment-fonctionne-un-telescope\",\n        \"printemps-du-cafe-associatif\",\n        \"stage-programmer-une-carte-electronique\",\n        \"cafe-des-langues-550cd658-4dca-4000-b6f5-b8d8339988a3\",\n        \"blind-test-musique-cinema\",\n        \"soirees-jeux-a-la-ludotheque\",\n        \"les-ecrans-nouveaux-outils-de-construction-de-soi-et-de-mise-en-relation-avec-les-autres\",\n        \"comment-integrer-les-jeux-serieux-dans-sa-pratique-de-classe\",\n        \"cine-gouter-apres-le-film-la-ronde-des-couleurs\",\n        \"soiree-des-grands-eleves-6\",\n        \"atelier-d-ecriture-roman-photo\",\n        \"fete-foraine-2017\",\n        \"exposition-autour-de-la-femme\",\n        \"dans-le-feu-de-l-action-rencontres-d-ecoles-d-arts\",\n        \"rencontre-autour-de-la-question-de-l-agressivite-chez-l-enfant-et-l-adolescent-quelles-reponses-de-nos-jours\",\n        \"spectacle-quartet-buccal\",\n        \"sahara\",\n        \"projection-et-concert-tribute-to-la-la-land\",\n        \"chez-nous\",\n        \"le-dragon\",\n        \"mardi-pop-0cd90bf5-4256-441a-9b60-171c16a56bc6\",\n        \"californy-2017\",\n        \"californy-2017-commanderie-saint-jean\",\n        \"l-embarras-du-choix\",\n        \"camping-3\",\n        \"jamais-assez\",\n        \"4eme-rencontres-de-vielles-a-roue-en-idf\",\n        \"jackie-v-o\",\n        \"alibi-com\",\n        \"sur-la-route-de-montauger-2017\",\n        \"sur-la-route-de-montauger-2017-domaine-de-montauger\",\n        \"dans-la-peau-d-un-magicien\",\n        \"preparez-vos-recoltes\",\n        \"raid-dingue\",\n        \"tous-en-scene\",\n        \"la-la-land-v-o\",\n        \"presentations-toutemecoeurtoutemefaitchier-groupe-11\",\n        \"exposition-une-psy-qui-rime\",\n        \"la-cuisine-sauvage\",\n        \"grainotheque\",\n        \"1-4-de-finale-de-la-coupe-de-france-de-football-feminin-fcf-juvisy-essonne-paris-saint-germain\",\n        \"journee-de-la-femme-a-etiolles\",\n        \"vu-es-de-la-salle\",\n        \"tractor-boys-2017-commanderie-saint-jean\",\n        \"toute-la-memoire-du-monde-projection-unique-de-phase-iv-debat\",\n        \"evry-trail-urbain-4eme-edition\",\n        \"cap-monde-presente-les-pyrenees-la-grande-traversee\",\n        \"la-edad-de-oro\",\n        \"la-conquete-de-l-ouest-spectacle-jeune-public\",\n        \"tractor-boys-2017\",\n        \"atelier-pocket-film-marathon-du-cinema\",\n        \"cyclotourisme-criterium-departemental-des-jeunes\",\n        \"orchestre-les-siecles\",\n        \"quel-cirque-2017\",\n        \"a-la-facon-de-samuel-fosso\",\n        \"commemoration-de-l-abolition-de-l-esclavage-projection-du-film-la-couleur-de-la-victoire\",\n        \"en-finir-avec-la-polygamie\",\n        \"les-somnambules-2017\",\n        \"la-mer-en-pointilles\",\n        \"etre-ou-ne-pas-etre-sublime-monologue\",\n        \"stage-construis-ton-planeur\",\n        \"regate-cdv-ris-orangis\",\n        \"grece-iran-objets-artistiques-rares\",\n        \"ladies-night\",\n        \"monsieur-o-2017\",\n        \"le-grand-tournoi-des-mediatheques-super-smash-bros\",\n        \"kassav-en-concert\",\n        \"le-grand-tournoi-des-mediatheques-naruto\",\n        \"partez-a-la-decouverte-des-loups-et-de-leurs-mysteres\",\n        \"le-grand-tournoi-des-mediatheques-mario-kart\",\n        \"le-grand-tournoi-des-mediatheques-fifa-17\",\n        \"le-musee-safran\",\n        \"le-grand-tournoi-des-mediatheques-street-fighter\",\n        \"portes-ouvertes-de-classe-preparatoire-aux-ecoles-d-arts\",\n        \"cine-debat-3000-nuits-de-mai-masri\",\n        \"programme-du-court-au-long\",\n        \"1-2-3-histoires\",\n        \"conference-que-sait-on-des-origines-de-notre-univers\",\n        \"1-2-3-histoires-seance-speciale-pour-les-tout-petits\",\n        \"festival-dans-art-capoeira\",\n        \"la-jeune-fille-sans-mains-2017\",\n        \"patinoire-soiree-white\",\n        \"lecture-nimee\",\n        \"bigre\",\n        \"de-plus-belle\",\n        \"vtt-rando-nocturne-du-gardien-3eme-edition\",\n        \"interlude-musical-l-opera-russe\",\n        \"chasse-au-tresor\",\n        \"amours-et-larmes-d-exil\",\n        \"we-love-arabs\",\n        \"la-nuit-des-lasers-au-labyrinthe-de-senart\",\n        \"exposition-des-travaux-des-eleves\",\n        \"les-trolls\",\n        \"4eme-duathlon-de-senart\",\n        \"temps-du-conte-gourmand\",\n        \"poetes-de-la-francophonie-creole\",\n        \"quelques-conseils-utiles-aux-eleves-huissiers\",\n        \"ateliers-gratuits-creez-vos-voyages-sonores\",\n        \"concert-autour-de-l-orgue\",\n        \"retransmission-en-direct-de-cosi-fan-tutte-de-mozart-opera\",\n        \"origami-et-canetons-degourdis\",\n        \"concert-dessine\",\n        \"creation\",\n        \"paris-hip-hop\",\n        \"l-autre-cote\",\n        \"lecture-concert-echange-musical\",\n        \"la-tuba-party-7e-edition\",\n        \"projection-du-documentaire-africascop-suivie-d-un-debat\",\n        \"danses-et-chants-du-tibet-et-de-l-himalaya-du-sacre-au-folklore\",\n        \"commedia-dell-mozarte-au-centre-social-brel-brassens-de-courcouronnes\",\n        \"hockey-sur-glace-evry-viry-recoit-valence\",\n        \"colloque-international-femmes-et-hommes-en-science-pour-une-culture-de-la-paix\",\n        \"ambiance-musicale-autour-du-film-django\",\n        \"chantons-le-monde\",\n        \"racontines\",\n        \"backyard-babies-sticky-boys-hsmf\",\n        \"c-est-parti-mon-kiki\",\n        \"temps-fort-musical-journee-internationale-des-droits-des-femmes-2017\",\n        \"sac-a-histoires\",\n        \"cine-concert\",\n        \"one-hit-wonder\",\n        \"electrise-toi\",\n        \"un-apres-midi-familial-avec-les-humanophones\",\n        \"spectacle-journee-internationale-des-droits-des-femmes-2017\",\n        \"spectacle-journee-internationale-des-droits-des-femmes\",\n        \"exposition-journee-internationale-des-droits-des-femmes\",\n        \"badminton-senart-recoit-ecouen-ezanville-en-n1\",\n        \"de-jojo-a-lola\",\n        \"carnaval-d-etiolles-et-course-de-push-cars\",\n        \"programmer-un-robot\",\n        \"balade-sensorielle-au-pays-des-insectes-2017\",\n        \"la-vie\",\n        \"ask-em\",\n        \"a-voix-haute-la-force-de-la-parole-projection-debat\",\n        \"vernissage-expo-photos-c-est-pas-marque-sur-mon-front\",\n        \"vaiana-la-legende-du-bout-du-monde\",\n        \"marathon-de-senart-2017-le-marathon\",\n        \"fete-du-modelisme\",\n        \"mon-p-tit-cine-2017\",\n        \"club-cine-2017-mediatheque-cote-cour\",\n        \"arc-en-livres\",\n        \"les-mains-de-camille\",\n        \"concert-de-cloture-de-la-tuba-party\",\n        \"regards-d-humanite\",\n        \"une-nuit-une-vie\",\n        \"delhi-les-30-desastreuses-2017\",\n        \"salon-du-bien-etre\",\n        \"caroline-mane-quintet\",\n        \"les-20-ans-de-la-cooperative-bioviveo-autour-du-film-vino-veritas\",\n        \"l-odyssee-des-oceaniens-a-la-conquete-du-pacifique\",\n        \"soiree-des-grands-eleves-1\",\n        \"les-ateliers-d-ecriture-de-la-mediatheque-de-l-agora-65d9b126-515d-482d-a138-aa2120cb0645\",\n        \"conference-sur-le-manga\",\n        \"la-gaf-fait-son-cinema\",\n        \"rites-en-duo\",\n        \"programmer-un-robot-et-fabriquer-un-objet-en-3d\",\n        \"la-belle-et-la-bete-2017-palais-des-sports\",\n        \"rhoda-scott-quintet\",\n        \"marche-des-producteurs-locaux\",\n        \"journee-kbci\",\n        \"forum-alternatiba\",\n        \"soiree-zombies-aux-cinoches\",\n        \"concert-piano-lecture-de-texte\",\n        \"football-un-tournoi-solidaire-au-profit-des-restos-du-coeur\",\n        \"fiore-vo\",\n        \"telle-mere-telle-fille\",\n        \"petanque-challenge-alphonse-gomez\",\n        \"concert-des-orchestres-et-chorale-du-conservatoire\",\n        \"cafe-des-lumieres\",\n        \"fete-de-la-musique-2017-a-vert-saint-denis\",\n        \"chronique-des-jours-entiers-des-nuits-entieres\",\n        \"marathon-cinema\",\n        \"les-mangas-en-musique\",\n        \"concert-de-fin-d-annee-du-conservatoire\",\n        \"ta-moko\",\n        \"concours-de-danse-380-prime\",\n        \"concert-de-musique-ancienne\",\n        \"concert-et-jam-session\",\n        \"fete-de-la-musique-2017-a-soisy-sur-seine\",\n        \"commedia-dell-mozarte-au-parc-des-oiseaux-a-ris-orangis\",\n        \"cafe-de-l-actu-carte-blanche-a-l-association-a-la-source-du-jasmin\",\n        \"grande-chasse-aux-oeufs-suivie-de-l-avant-premiere-de-molly-monster\",\n        \"baby-boss\",\n        \"atelier-cardboard\",\n        \"conference-des-lapins-chef-cuisinier\",\n        \"drones-helico-micro-cup-2eme-edition\",\n        \"baseball-les-templiers-de-senart-rencontrent-le-paris-uc\",\n        \"avant-premiere-les-schtroumpfs-et-le-village-perdu\",\n        \"les-schtroumpfs-et-le-village-perdu\",\n        \"secrets-de-jardins-en-essonne-jardins-familiaux-de-l-orme-pomponne-ris-orangis\",\n        \"conference-des-lapins-astrophysicien\",\n        \"cinema-du-reel-festival-hors-les-murs-2017\",\n        \"dianne-reeves\",\n        \"avant-gout-de-saison-2017-2018-spectacle-gratuit\",\n        \"agatha-ma-voisine-detective-projection-et-animation\",\n        \"inauguration-de-l-oeuvre-de-fintan-magee-follow-the-leader\",\n        \"moqueuses\",\n        \"avant-toutes-disparitions\",\n        \"concert-trio-k-d-m-ensemble-de-solistes\",\n        \"aquaparty-musicale\",\n        \"exposition-des-travaux-cours-recherche-et-creation\",\n        \"secrets-de-jardins-en-essonne-jardin-de-frimousse-lisses\",\n        \"dyptique-de-cirque-noos-et-somnium\",\n        \"visite-de-l-ecosite-de-vert-le-grand\",\n        \"repair-cafe-2017\",\n        \"presentation-publique-oncle-vania-tchekhov\",\n        \"cycle-de-4-ateliers-creer-une-mare-dans-son-jardin\",\n        \"exposition-manga-senpai\",\n        \"paddle-sur-seine\",\n        \"conference-des-lapins-costumiere\",\n        \"moissy-cramayel-soiree-zen-au-centre-aquatique-nymphea\",\n        \"la-senartaise-2018\",\n        \"evry-initiation-a-l-ultimate\",\n        \"cap-monde-presente-reunion-la-belle-creole-2017\",\n        \"baseball-les-templiers-de-senart-recoivent-l-equipe-de-rouen\",\n        \"les-graines-de-l-art\",\n        \"projection-autour-des-ateliers-jade\",\n        \"les-miniatures-ou-petites-histoires-imaginaires-d-apres-jules-renard-et-autres-musiques-isabelle-aboulker-gyorgy-kurtag-krystof-maratka\",\n        \"le-circuit-decouverte-du-week-end-en-prehistoire\",\n        \"projection-debat-cadences-et-des-fois-je-me-demande\",\n        \"gouter-ethique\",\n        \"emotions\",\n        \"secrets-de-jardins-en-essonne-domaine-de-la-grange-la-prevote\",\n        \"les-portes-ouvertes-du-week-end-en-prehistoire\",\n        \"mediatheques-des-aunettes-game-party-sur-tablette\",\n        \"les-queens-du-kool-hotel-2017\",\n        \"atelier-culinaire\",\n        \"stage-de-danses-irlandaises\",\n        \"atelier-culinaire-parents-enfants\",\n        \"plantes-et-jardins-au-moyen-age\",\n        \"rendez-vous-dans-100-ans\",\n        \"grigny-portes-ouvertes-a-la-piscine-municipale\",\n        \"ateliers-pratiques-cro-mignon-au-week-end-en-prehistoire\",\n        \"olympiades-parents-enfants\",\n        \"cafe-sante-des-seniors\",\n        \"en-voiture-simone\",\n        \"seance-unique-du-film-loving-soiree-de-lutte-contre-les-discriminations\",\n        \"charles-pasi-1ere-partie\",\n        \"l-exposition-du-week-end-en-prehistoire-a-etiolles\",\n        \"bal-folk-a-l-auberge-2017-mjc-cmt-de-ris-orangis-ris-orangis\",\n        \"secrets-de-jardins-en-essonne-jardin-d-essences-courcouronnes\",\n        \"seance-d-observation-du-soleil\",\n        \"le-vieux-corbeil\",\n        \"seance-d-observation-du-ciel-a-la-nuit-tombee\",\n        \"soiree-family-gathering-1-x-panda-dub\",\n        \"rando-velo-et-vtt-la-moisseenne-24eme-edition\",\n        \"the-liminanas-the-sore-losers\",\n        \"mon-p-tit-cine\",\n        \"competition-de-tir-sur-cible-aquatique\",\n        \"projection-du-film-les-magdaleniennes-d-etiolles\",\n        \"inauguration-de-la-fresque-street-art-de-david-walker-a-lieusaint\",\n        \"workshops-cartographies-et-creative-coding\",\n        \"festival-de-l-oeil-urbain\",\n        \"semaine-de-la-memoire-et-de-la-deportation-projection-unique-du-film-au-revoir-les-enfants\",\n        \"soiree-des-grands-eleves-4\",\n        \"initiation-et-sensibilisation-aux-sports-adaptes-de-raquettes\",\n        \"voyage-of-time-seance-exceptionnelle-du-dernier-film-de-terrence-malick\",\n        \"patinoire-jardin-des-neiges\",\n        \"venez-encourager-les-senartaises\",\n        \"semaine-de-la-memoire-et-de-la-deportation-projection-du-film-un-sac-de-billes\",\n        \"festival-de-l-oeil-urbain-2017-office-de-tourisme-seine-essonne\",\n        \"l-art-des-plantes\",\n        \"heure-des-bebes-2016\",\n        \"concert-d-eleves-du-reseau-des-conservatoires-de-grand-paris-sud\",\n        \"les-rendez-vous-de-la-sante-et-du-bien-etre\",\n        \"festival-de-la-terre\",\n        \"vivre-en-forme-a-senart-seine-essonne-2016\",\n        \"stage-pilotage-drone\",\n        \"festival-de-l-oeil-urbain-2017\",\n        \"visite-de-courcouronnes\",\n        \"journees-du-patrimoine-a-nandy\",\n        \"village-nanoub\",\n        \"retransmission-en-direct-la-fille-de-neige-de-nikolai-rimski-korsakov-opera\",\n        \"stage-police-scientifique-2017\",\n        \"play-it-again\",\n        \"stage-programmer-un-robot\",\n        \"la-papesse-jeanne-en-avant-premiere\",\n        \"volley-ball-tournoi-4x4-mixtes\",\n        \"cap-monde-presente-route-de-la-soie-nomades-et-caravanes\",\n        \"gymnastique-rythmique-tournoi-international\",\n        \"commedia-dell-mozarte-2017\",\n        \"la-photo-s-invite-a-montauger\",\n        \"les-expositions-de-la-fete-de-l-eau-2017\",\n        \"spectacle-de-marionnettes-mais-il-est-ou-le-do\",\n        \"retransmission-en-direct-le-songe-d-une-nuit-d-ete-de-george-balanchine-ballet\",\n        \"le-printemps-des-jardiniers-2017\",\n        \"braderie-lutte-anti-gaspillage\",\n        \"rencontre-avec-la-realisatrice-leyla-bouzid\",\n        \"vous-voulez-rire\",\n        \"les-ateliers-d-ecriture-de-la-mediatheque-de-l-agora-a4cb5ba7-23fc-4936-bff2-2db97dbf3ce4\",\n        \"la-grande-guerre-2016\",\n        \"decouvrez-le-film-life-origine-inconnue-en-avant-premiere\",\n        \"art-smod-le-salon-des-artisans-createurs-1ere-edition-printemps-a-villabe\",\n        \"rouge\",\n        \"african-spirits-de-samuel-fosso\",\n        \"roller-hockey-coupe-d-europe-feminine\",\n        \"le-trio-a-vents-a-travers-les-siecles\",\n        \"mome-1000-chevaux-vapeur-woodini\",\n        \"marche-de-noel-de-villabe\",\n        \"je-danse-nous-dansons-ils-dansent\",\n        \"journees-des-arts-visuels-et-numeriques\",\n        \"rando-velo-la-rissoise\",\n        \"les-harmonies-font-leur-cinema\",\n        \"scene-ouverte-de-la-place-des-droits-de-l-homme-2017\",\n        \"decouverte-et-pilotage-de-drone\",\n        \"presentation-de-saison-2017-2018-du-theatre-de-l-agora\",\n        \"18eme-marathon-et-10-km-de-senart\",\n        \"cycle-les-docs-du-mardi-sante-et-environnement\",\n        \"forum-des-etudiants-a-savigny-le-temple\",\n        \"olivier-messiaen-harawi-chant-d-amour-et-de-mort\",\n        \"etiolles-monte-le-son\",\n        \"atelier-plantes-aromatiques-et-medicinales\",\n        \"moving-beyond-borders\",\n        \"theatre-de-senart-presentation-de-la-saison-2017-2018\",\n        \"foulee-d-etiolles-2017\",\n        \"fete-de-la-musique-a-etiolles\",\n        \"concert-de-rap-et-de-reggae\",\n        \"lodex-party-2017\",\n        \"mediatheque-raymond-queneau-l-heure-des-bebes-569d3a9f-4cd4-4345-8f4c-0735745211ec\",\n        \"scene-ouverte-de-la-place-des-droits-de-l-homme-23128d22-cfe1-475e-9ee5-aeb7a3de876a\",\n        \"bror-gunnar-jansson-william-z-villain\",\n        \"body-fitness-grand-prix-de-france-selection-europe\",\n        \"apres-la-pluie-18bf49a4-72a1-421e-880c-2fcec90f1a0d\",\n        \"cine-club-projection-du-film-jeux-dangereux\",\n        \"kery-james-a-c-e-s-tour\",\n        \"salon-des-ressources-educatives-du-7-juin-2017\",\n        \"marche-de-produits-locaux\",\n        \"realisation-d-un-court-metrage\",\n        \"cycle-de-3-ateliers-fabriquer-ses-cosmetiques\",\n        \"villabe-gala-de-catch\",\n        \"portes-ouvertes-au-rucher\",\n        \"wild-pig-fest-4\",\n        \"karting-trophee-kartmag-2017\",\n        \"battle-de-danse-hip-hop\",\n        \"comme-il-vous-plaira\",\n        \"carnaval-d-evry\",\n        \"who-is-ovni\",\n        \"rodin-2017\",\n        \"exposition-a-la-campagne\",\n        \"presentation-de-la-saison-culturelle-2017-2018-de-la-coupole\",\n        \"les-concerts-du-dimanche-a-l-anas\",\n        \"scene-ouverte-de-la-place-des-droits-de-l-homme-4fa66e2c-6c59-4383-9aa7-48621f482cbf\",\n        \"carmen-opera-en-quatre-actes-de-georges-bizet-en-direct-au-cinema\",\n        \"operation-bachotage\",\n        \"karting-24h-kartland\",\n        \"les-cuissons-banales-du-groupe-four-a-pain\",\n        \"vjing-et-music-live\",\n        \"scene-ouverte-de-la-place-des-droits-de-l-homme-f23d558e-853c-4740-ae37-b006b9dc5fd5\",\n        \"la-soiseenne-des-commercants\",\n        \"abou-diarra\",\n        \"biomimetisme-la-nature-source-d-innovation\",\n        \"restitution-ecole-au-cinema-projection-unique-du-film-kiki-la-petite-sorciere\",\n        \"le-mystere-des-rochers-du-massif-de-fontainebleau\",\n        \"9eme-fete-des-jardins\",\n        \"les-corbeaux\",\n        \"scene-ouverte-de-la-place-des-droits-de-l-homme-4f025048-0eef-4d8c-a519-3e30abb8e894\",\n        \"atelier-creatif-numerique\",\n        \"capriccio-francais\",\n        \"tablette-xxl\",\n        \"cafe-musique-et-jam-session\",\n        \"la-puissance-de-l-amour\",\n        \"blind-test-pas-si-sample\",\n        \"du-papier-au-pixel-tintin-dans-tous-ses-etats\",\n        \"des-livres-et-des-jeux\",\n        \"fete-du-miroir-d-eau-village-malien\",\n        \"fete-foraine-2017-a-lisses\",\n        \"cafe-lyrique-autour-les-univers-musicaux-de-don-quichotte\",\n        \"cafe-et-soda-pour-les-ados-polyglottes\",\n        \"mathieu-madenian-en-etat-d-urgence\",\n        \"les-noels-du-monde\",\n        \"la-finale\",\n        \"mois-de-la-musique\",\n        \"festival-bal-kcirq\",\n        \"cycle-de-3-ateliers-la-sante-dans-l-assiette\",\n        \"atelier-danse-et-musique-parents-enfants-autour-du-spectacle-hamelin-gratuit\",\n        \"lez-arts-de-rue\",\n        \"soiree-jeux-adultes-ados\",\n        \"burning-heads-pogo-car-crash-control\",\n        \"football-americain-savigny-le-temple-recoit-villebon-longjumeau\",\n        \"paris-la-blanche\",\n        \"les-figures-de-l-ombre\",\n        \"la-consolation\",\n        \"boule-bill-2\",\n        \"la-cantatrice-chauve\",\n        \"cap-monde-presente-reunion-la-belle-creole-2017-les-cinoches-rn7\",\n        \"gerard-baste-schlaasss-ls-crew\",\n        \"les-inedits-de-circus-next\",\n        \"cycle-de-3-ateliers-rencontres-et-echanges-apiculture\",\n        \"spectacle-djihad\",\n        \"yaser-sonus\",\n        \"apero-ethno\",\n        \"don-quichotte-2018\",\n        \"la-fete-du-developpement-durable\",\n        \"tournoi-fifa\",\n        \"musique-de-table\",\n        \"football-feminin-journee-de-decouverte-et-d-initiation\",\n        \"ateliers-creatifs-numeriques\",\n        \"du-papier-au-pixel-special-batman\",\n        \"projection-debat-2017-mediatheque-de-l-agora\",\n        \"atelier-haka\",\n        \"game-party\",\n        \"duo-henri-et-sebastien-texier-prelude-au-concert\",\n        \"des-livres-et-des-jeux-2017\",\n        \"mois-de-la-petite-enfance\",\n        \"tout-neuf-et-demi\",\n        \"atelier-tablettes\",\n        \"petit-dej-ethno\",\n        \"corporate\",\n        \"la-foulee-d-etiolles\",\n        \"jam-session-2017-mjc-l-oreille-cassee\",\n        \"racontines-2017\",\n        \"forum-des-associations-de-courcouronnes-2017\",\n        \"trans-gratt-zodiaque\",\n        \"je-danserai-si-je-veux-v-o\",\n        \"power-rangers\",\n        \"max-et-les-maximonstres\",\n        \"anne-roumanoff\",\n        \"sac-a-histoires-2017\",\n        \"mademoiselle-k-aguelenna\",\n        \"stages-de-juillet-2017-du-service-arts-visuels\",\n        \"atelier-d-initiation-aux-arts-du-cirque-adulte-en-piste\",\n        \"natation-evenements-bebes-nageurs\",\n        \"fete-de-la-mjc\",\n        \"the-pianist\",\n        \"ateliers-tiki-tattoo\",\n        \"knock-de-jules-romains\",\n        \"exposition-hors-les-murs\",\n        \"sous-le-meme-toit\",\n        \"fete-de-la-musique-2017-a-combs-la-ville\",\n        \"django-2017\",\n        \"camille-oui\",\n        \"lila-et-les-pirates\",\n        \"journee-dediee-a-la-danse-polynesienne\",\n        \"soiree-de-presentation-de-la-saison-culturelle-2017-2018\",\n        \"astro-deploie-son-style-a-corbeil-essonnes\",\n        \"croisiere-venitienne\",\n        \"1-week-end-3-spectacles\",\n        \"atelier-les-abeilles\",\n        \"hommage-a-bessie-smith-par-sarah-lenka\",\n        \"ma-maison-le-reste-du-monde-et-ailleurs\",\n        \"5-et-10-km-de-combs-la-ville-2017-challenge-grand-paris-sud\",\n        \"spectacle-pour-enfants-scarlett\",\n        \"fete-de-la-musique-2017-a-saint-germain-les-corbeil\",\n        \"journee-du-3-juin-2017\",\n        \"moissy-cramayel-fete-des-meres-au-centre-aquatique-nymphea\",\n        \"pointmp4\",\n        \"concert-des-blues-syndicate\",\n        \"ultra-vomit-headcharger-7-weeks\",\n        \"atelier-mobile-de-maquillage-artistique-amma\",\n        \"requiem-de-couleurs\",\n        \"basket-feminin-pre-nationale-lr19\",\n        \"journee-trans-sport-pour-tous-2017\",\n        \"rock-et-sonne\",\n        \"football-senart-moissy-recoit-pontarlier\",\n        \"gregory-privat-trio\",\n        \"impericon-never-say-die-tour-2017\",\n        \"stage-de-danses-sevillanes\",\n        \"stage-de-violon-irlandais\",\n        \"tournoi-fifa-17-des-mediatheques-2017-mediatheque-condorcet\",\n        \"debout-sur-le-zinc-eldorado-s\",\n        \"tournoi-fifa-17-des-mediatheques\",\n        \"tournoi-fifa-17-des-mediatheques-2017\",\n        \"tournoi-fifa-17-des-mediatheques-2017-mediatheque-des-aunettes\",\n        \"klaxon\",\n        \"secrets-de-jardins-en-essonne-domaine-departemental-de-montauger-lisses\",\n        \"berangere-krief\",\n        \"basketball-detection-classe-sportive-basket-filles\",\n        \"hamelin\",\n        \"tournoi-fifa-17-des-mediatheques-2017-mediatheque-elsa-triolet\",\n        \"tournoi-fifa-17-des-mediatheques-2017-mediatheque-de-l-agora\",\n        \"tournoi-fifa-17-des-mediatheques-2017-mediatheque-albert-camus\",\n        \"tournoi-fifa-17-des-mediatheques-2017-mediatheque-georges-perec\",\n        \"grande-soiree-dansante-du-printemps\",\n        \"escape-game-au-musee-safran\",\n        \"foulees-de-la-foret-de-breviande-2017-challenge-grand-paris-sud\",\n        \"tournoi-fifa-17-des-mediatheques-2017-mediatheque-de-l-agora-evry\",\n        \"keblack\",\n        \"handball-coupe-departementale-de-seine-et-marne\",\n        \"atelier-d-initiation-aux-arts-du-cirque-6-14-ans\",\n        \"spectacle-familial\",\n        \"brocante-sonore\",\n        \"tournoi-fifa-17-des-mediatheques-2017-mediatheque-colette\",\n        \"presentation-publique-8-seconds-i-give-you-all-my-love\",\n        \"les-ateliers-nomades\",\n        \"festival-de-cannes\",\n        \"journee-rugby\",\n        \"c-est-beau-la-vie-quand-on-y-pense\",\n        \"la-marche-nordique-de-la-fete-de-l-eau\",\n        \"fete-du-jeu\",\n        \"pleine-lune\",\n        \"figaro\",\n        \"moby-mick\",\n        \"until-the-lions\",\n        \"les-conferences-du-week-end-en-prehistoire\",\n        \"les-soleils-de-grand-paris-sud-fa738cb6-a53f-410d-ac7d-f0f1749134aa\",\n        \"15-000-km-a-velo-quel-accueil-des-habitants\",\n        \"pwezi-peyi-poesie-pays\",\n        \"athletisme-meeting-de-savigny-le-temple-et-du-comite-de-seine-et-marne\",\n        \"ateliers-pratiques-pour-tous-au-week-end-en-prehistoire\",\n        \"telethon-2017-village-des-chercheurs-de-l-afm\",\n        \"tournoi-d-ultimate-a-evry\",\n        \"journee-des-jardins-naturels-sensibles\",\n        \"grupo-compay-segundo\",\n        \"certifie-conforme\",\n        \"guyom-touseul-au-chapiteau-d-adrienne\",\n        \"le-cas-sneijder\",\n        \"klone-en-acoustique\",\n        \"mon-premier-concert-ou-presque\",\n        \"journee-sur-l-eau-ressource-precieuse\",\n        \"la-corrida-de-corbeil-essonnes-challenge-grand-paris-sud\",\n        \"cezanne-portraits-d-une-vie\",\n        \"rumeurs-et-petits-jours\",\n        \"perform-art-2-nature-et-spiritualite\",\n        \"concert-el-senor-igor\",\n        \"retour-a-ithaque\",\n        \"le-jardin-d-artiste-l-impressionnisme-americain\",\n        \"bourse-aux-jouets-2017\",\n        \"bourse-aux-disques\",\n        \"presentation-du-trimestre-concert-pi-ja-ma\",\n        \"les-swing-commanders\",\n        \"rencontre-les-rues-de-soisy-histoire-patrimoine-et-biodiversite\",\n        \"mots-dits-mots-lus\",\n        \"secret-temps-2-2018\",\n        \"archimede-navarre\",\n        \"portes-ouvertes-summer-time-a-planet-form-grigny\",\n        \"le-pays-de-rien\",\n        \"la-declaration\",\n        \"le-monde-d-hier\",\n        \"les-siecles-sabine-devieilhe\",\n        \"lucky-peterson-tribute-to-jimmy-smith\",\n        \"fete-place-aux-jeux\",\n        \"l-histoire-probable-de-la-musique-electronique-par-le-grami\",\n        \"spectacle-marigold\",\n        \"exposition-50-ans-du-stade-nautique-gabriel-menut-de-corbeil-essonnes\",\n        \"cory-henry-and-the-funk-apostles\",\n        \"fabrication-de-bougie-a-lieusaint\",\n        \"fete-du-sport-a-combs-la-ville\",\n        \"les-demonstrations-du-week-end-en-prehistoire\",\n        \"fete-de-la-musique-2017-a-savigny-le-temple\",\n        \"concert-de-strongest-voices\",\n        \"scene-ouverte-de-la-place-des-droits-de-l-homme-07095173-4cf6-4542-806e-0cb349260d60\",\n        \"nostromo\",\n        \"fete-de-l-eau-2017\",\n        \"s-il-se-passe-quelque-chose\",\n        \"l-exposition-a-reau-pour-les-journees-nationales-d-archeologie\",\n        \"telethon-2017-baptemes-de-trial-4x4-a-koezio\",\n        \"ben-l-oncle-soul\",\n        \"orchestre-national-d-ile-de-france-welcome-to-broadway\",\n        \"fete-de-la-musique-2017-a-lieusaint\",\n        \"conference-sur-les-beaux-arts\",\n        \"5-eme-festival-de-l-humour\",\n        \"visite-de-l-imprimerie-helio-corbeil-2018\",\n        \"creer-ses-cosmetiques-et-produits-d-entretien-naturels\",\n        \"rqm2-youslu\",\n        \"lancement-d-une-gratuiterie\",\n        \"aviron-stage-d-initiation-et-de-decouverte\",\n        \"activites-jeunesse-vacances-de-la-toussaint\",\n        \"stage-police-scientifique-e332bc73-183f-46cb-88a6-0cb77ac7afc3\",\n        \"portes-ouvertes-a-reau-pour-les-journees-nationales-de-l-archeologie\",\n        \"yael-naim-et-david-donatien-unexpected\",\n        \"football-feminin-journee-portes-ouverte\",\n        \"les-ateliers-d-ecriture-de-la-mediatheque-de-l-agora-9a577bdb-e480-4aa4-befa-425078f2d49d\",\n        \"lartiste-1ere-partie\",\n        \"25eme-bourse-des-cartes-postales-de-soisy-sur-seine\",\n        \"forum-des-associations-de-la-ville-de-ris-orangis\",\n        \"mediatheque-de-l-agora-game-party-casse-tete-sur-tablette\",\n        \"stage-fabriquez-un-drone-de-a-a-z\",\n        \"fete-de-la-musique-a-ris-orangis\",\n        \"le-we-des-incroyables-machines\",\n        \"stage-changez-de-dimension-de-la-2d-a-la-3d-2016\",\n        \"stage-decouverte-astronomie-petite-ourse-2017\",\n        \"stage-decouverte-astronomie-petite-ourse\",\n        \"stage-changez-de-dimension-de-la-2d-a-la-3d\",\n        \"vania\",\n        \"stage-fabriquer-et-lancer-une-micro-fusee\",\n        \"les-coulisses-du-stade-nautique\",\n        \"jardin-des-neiges-du-15-octobre\",\n        \"temps-forts-du-mois-de-juin-du-service-arts-visuels\",\n        \"stage-machinerie-medievale\",\n        \"stage-fabriquez-votre-plante-connectee-2016-fab-lab-de-planete-sciences\",\n        \"stage-lancement-d-une-fusee\",\n        \"stage-decouverte-astronomie-premiere-etoile\",\n        \"ateliers-de-noel\",\n        \"mediatheque-de-l-agora-game-party-a-vous-de-choisir-les-jeux\",\n        \"la-princesse-de-cleves\",\n        \"braderie-lutte-anti-gaspillage-2018\",\n        \"festival-country-du-coudray-montceaux\",\n        \"hockey-sur-glace-d2-evry-recoit-strasbourg-67\",\n        \"spectacle-hommage-a-barbara\",\n        \"antigone-82\",\n        \"fete-nationale-a-saintry-sur-seine\",\n        \"jean-luc-lemoine-si-vous-avez-manque-le-debut\",\n        \"stage-d-initiation-aux-arts-du-cirque-7-14-ans\",\n        \"atelier-d-initiation-aux-arts-du-cirque-adulte-en-piste-2017\",\n        \"rigoletto-opera-de-verdi-en-drirect-au-cinema-cinema\",\n        \"forum-des-associations-2017\",\n        \"bal-de-la-fete-nationale-a-ris-orangis\",\n        \"la-petite-casserole-d-anatole\",\n        \"le-c-show-7\",\n        \"scene-ouverte-13\",\n        \"stage-machinerie-medievale-d663f60a-3468-4b66-b8e8-5c97615c4f02\",\n        \"mediatheques-des-aunettes-game-party-3ds\",\n        \"cycle-les-chefs-d-oeuvre-du-cinema-projection-du-film-melancholia\",\n        \"o-silo-maximum-2018\",\n        \"stage-astronomie-petite-ours\",\n        \"mediatheque-georges-perec-game-party-fb1c9a33-899f-40cd-8ceb-13d2df459f53\",\n        \"fabriquer-un-capteur-de-mesure-environnementale\",\n        \"mediatheque-colette-game-party-8ed9215f-0307-4850-a4db-9044b795827b\",\n        \"forum-des-associations-de-bondoufle-2017\",\n        \"vitaa-1ere-partie\",\n        \"decouverte-de-l-astronomie-premiere-etoile\",\n        \"la-boheme-retransmission-en-direct-du-theatre-de-taormina\",\n        \"retraite-aux-flambeaux-au-coudray-montceaux\",\n        \"l-hypnose-enchantee\",\n        \"projection-d-un-documentaire-autour-des-ateliers-jade-jeunes-aidants-ensemble\",\n        \"forum-des-associations-de-savigny-le-temple-2017\",\n        \"hepta-distorsion-des-lointains\",\n        \"hockey-sur-glace-d2-evry-recoit-amneville-57\",\n        \"fete-nationale-a-saint-germain-les-corbeil\",\n        \"wow-cartographie-5\",\n        \"la-face-cachee-de-la-lune\",\n        \"forum-des-associations-de-soisy-sur-seine-2017\",\n        \"les-ateliers-creatifs-atelier-mix-media-d89bf0a6-3006-405f-8def-f1df315c565d\",\n        \"gael-horellou-ari-hoenig-xaman\",\n        \"des-tresors-plein-ma-poche-projection-animation\",\n        \"cinema-en-plein-air-star-wars\",\n        \"stage-archeologie\",\n        \"forum-des-associations-de-corbeil-essonnes-2017\",\n        \"forum-des-association-de-tigery-2017\",\n        \"l-eau-vive\",\n        \"fete-nationale-a-corbeil-essonnes-2017\",\n        \"lancement-de-la-rue-des-lumieres-spectacle-incandescences-jeudi-14-decembre\",\n        \"l-imperatrice-dbfc-holy-two\",\n        \"africolor-tinariwen-jupiter-okwess-int\",\n        \"forum-des-associations-du-coudray-montceaux-2017\",\n        \"mediatheque-colette-game-party\",\n        \"ping-tour-2017\",\n        \"stage-de-basket-generation-basket-91\",\n        \"stage-fabriquer-et-lancer-une-micro-fusee-c2d167ba-fbb8-4316-a010-d377c704c759\",\n        \"forum-des-associations-de-nandy-2017\",\n        \"le-centenaire-bernstein-trois-ballets-de-wayne-mcgregor-christopher-wheeldon-deux-nouvelles-productions-en-direct-au-cinema\",\n        \"stage-decouverte-et-pilotage-drone\",\n        \"karaoke-et-quizz-autour-du-film-anastasia\",\n        \"forum-des-associations-de-morsang-sur-seine-2017\",\n        \"forum-des-associations-de-cesson-vert-saint-denis-2017\",\n        \"orchestra-s-night\",\n        \"10eme-open-de-volley-ball-d-evry\",\n        \"mon-premier-concert-ou-presque-2018\",\n        \"derniere-commission-d-admission-de-la-classe-preparatoire-2017-2018\",\n        \"ciao-italia-projection-du-film-un-paese-di-calabria\",\n        \"l-eveil-de-la-permaculture-soiree-debat\",\n        \"rando-velo-la-25eme-moisseenne\",\n        \"forum-des-associations-de-saint-germain-les-corbeil-2017\",\n        \"forum-des-associations-de-grigny-2017\",\n        \"1ere-edition-des-jardins-ouverts-le-domaine-de-la-grange-prevote-vous-ouvre-ses-portes\",\n        \"mediatheque-colette-cafe-cultures\",\n        \"hockey-sur-glace-d2-evry-recoit-wasquehal-59\",\n        \"soiree-debat-autour-de-la-ressortie-du-mythique-fight-club-avant-premiere\",\n        \"ciao-italia-projection-debat-du-film-les-complexes\",\n        \"foire-aux-jouets-de-l-association-des-familles-d-evry\",\n        \"forum-des-associations-de-moissy-cramayel-2017\",\n        \"cycle-psychanalyse-et-cinema-autour-du-film-aurore-de-blandine-lenoir\",\n        \"fete-de-la-musique-a-cesson\",\n        \"au-sud-du-nord-cine-debat-projections\",\n        \"animation-autour-du-film-le-grand-mechant-renard-et-autres-contes\",\n        \"forum-des-associations-de-villabe-2017\",\n        \"la-science-a-t-elle-un-sexe\",\n        \"journeee-des-droits-des-femmes-a-la-societe-d-art-de-corbeil-essonnes\",\n        \"repetitions-publiques-des-concerts-symphoniques-beethoven\",\n        \"paddle-sur-la-seine\",\n        \"street-art-des-armoires-de-fibre-optique-colorees-a-evry\",\n        \"a-vos-arts-prets-partez-journee-d-animation-au-parc-robinson-la-nacelle\",\n        \"soiree-debat-autour-du-film-zero-phyto-100-bio\",\n        \"repetition-generale-des-concerts-de-cloture-du-stage-d-orchestre\",\n        \"marathon-de-senart-2017-les-10km\",\n        \"reouverture-de-la-patinoire-francois-le-comte-a-l-agora-d-evry-pour-la-saison-2017-2018\",\n        \"haroun-tous-complices\",\n        \"guests-1\",\n        \"le-voyage-de-lila-avant-premiere-animation\",\n        \"20-000-lieues-sous-les-mers\",\n        \"handball-ton-quartier\",\n        \"vide-greniers-de-l-association-des-familles\",\n        \"stage-d-initiation-a-la-natation-ou-aquagym\",\n        \"visite-guidee-cote-essonne\",\n        \"de-formations\",\n        \"soiree-de-presentation-de-la-saison-culturelle-arnaud-maillard-2017\",\n        \"moyoshi-donne-de-la-couleur-a-deux-armoires-de-fibre-optique-a-evry\",\n        \"handball-evry-vs-vaires-et-evry-vs-chatenay-malabry\",\n        \"frissons-d-halloween-a-la-rotonde\",\n        \"tous-pour-elles-course-rose\",\n        \"l-association-lac-en-fete-revient-avec-deux-pieces-de-theatre\",\n        \"soiree-bien-etre-au-feminin-50638204-24d3-437f-b8ea-cd89b6671817\",\n        \"sarabande\",\n        \"qu-est-ce-que-le-theatre\",\n        \"r-a-g-e\",\n        \"karting-24h-kartland-2017\",\n        \"la-course-de-la-paix-challenge-grand-paris-sud\",\n        \"les-chaises\",\n        \"thibault-cauvin\",\n        \"journee-developpement-durable-du-3-juin\",\n        \"ce-qui-nous-regarde\",\n        \"1ere-edition-des-jardins-ouverts-evry-vous-proposent-de-nombreuses-activites\",\n        \"ma-maison-le-reste-du-monde-et-ailleurs-2018\",\n        \"festival-africolor-spectacle-concert-un-pas-de-cote\",\n        \"concert-symphonique-un-ete-beethoven\",\n        \"conference-la-sante-et-notre-environnement-2017-la-ferme-des-arts\",\n        \"cor-roc\",\n        \"trio-des-lys\",\n        \"balade-commentee-de-villabe\",\n        \"concert-en-famille\",\n        \"l-enfant-cachee-dans-l-encrier\",\n        \"master\",\n        \"concert-en-famille-2018\",\n        \"kids-just-dance-party\",\n        \"fete-nationale-a-bondoufle-2017\",\n        \"scene-ouverte\",\n        \"jack-et-son-orgue-magique\",\n        \"cet-ete-a-moissy-plage\",\n        \"atelier-diy-fabrication-de-sac\",\n        \"rencontre-avec-un-personnage-historique-de-la-commedia-dell-arte\",\n        \"performance-de-case-maclaim-street-artiste-allemand-a-grigny-au-6-place-de-l-oeuf\",\n        \"stage-sportif-a-moissy-cramayel\",\n        \"art-smod-l-hiver-a-soisy-sur-seine\",\n        \"semaine-de-l-egalite-femmes-hommes-projection-de-film\",\n        \"fete-des-associations-de-lisses-2017\",\n        \"il-etait-une-fois-une-balade-dans-le-monde-des-polars\",\n        \"le-jeu-de-la-fable-et-de-l-histoire\",\n        \"sarah-mccoy\",\n        \"jardin-des-neiges-special-halloween\",\n        \"mon-premier-concert-ou-presque-31955ade-ea6e-433e-bc28-4d39742606e2\",\n        \"concert-des-orchestres\",\n        \"le-jeune-artiste-thibault-averty-transformera-une-armoire-de-fibre-optique-en-oeuvre-artistique-le-lundi-7-aout\",\n        \"du-papier-a-la-scene\",\n        \"rock-et-sonne-2\",\n        \"senart-un-carre-pour-centre\",\n        \"les-ateliers-de-l-espace-arc-en-ciel-a-moissy-cramayel\",\n        \"vert-saint-denis-et-son-histoire\",\n        \"stage-astronomie-petite-ours-6e75b492-ddac-4d16-87df-677d88fd4968\",\n        \"henri-texier-twiga-quintet\",\n        \"fete-de-la-musique-2017-a-combs-la-ville-2017\",\n        \"semaine-de-l-egalite-femmes-hommes-media-cine\",\n        \"cine-peinture-egon-schiele\",\n        \"a-la-conquete-de-la-lecture\",\n        \"forum-des-associations-865c0577-e371-4ca9-8147-7dac1a3a883e\",\n        \"cars-3-je-m-incruste-dans-le-decor\",\n        \"radin\",\n        \"forum-des-associations-de-combs-la-ville-2017\",\n        \"visitez-l-eglise-saint-etienne\",\n        \"show-case-xaman\",\n        \"semaine-de-l-egalite-femmes-hommes-forum-et-conferences\",\n        \"fete-de-la-musique-2017-a-moissy-cramayel\",\n        \"concert-en-foret\",\n        \"dany-de-boon-des-hauts-de-france\",\n        \"remise-des-prix-du-concours-une-idee-de-creation-d-entreprise\",\n        \"rando-cyclo-la-saintryenne\",\n        \"veronique-sanson\",\n        \"exposition-millenium-du-bonheur-par-l-artiste-calligraphe-mariko-assai\",\n        \"stage-de-la-2d-a-la-3d\",\n        \"cine-club-de-l-agora-special-hollywood-3aa17ea1-29f8-4117-873c-f3be8ac72961\",\n        \"ma-vie-de-courgette-les-coulisses-du-film\",\n        \"cine-club-de-l-agora-special-hollywood-58900d92-adee-4608-8f00-fca73171b1fe\",\n        \"justice-et-cinema-projection-unique-du-film-12-hommes-en-colere-debat\",\n        \"fete-d-automne-et-vide-grenier-a-etiolles\",\n        \"monsieur-o\",\n        \"journees-du-patrimoine-dans-un-fab-lab\",\n        \"vibrato\",\n        \"la-cathedrale-saint-spire-monument-historique-depuis-1913\",\n        \"concert-de-l-essemble-essonnances\",\n        \"muances\",\n        \"serge-lama-je-debute\",\n        \"jeff-panacloc-contre-attaque\",\n        \"arturo-brachetti-solo\",\n        \"a-vos-arts-prets-partez-journee-d-animation-au-parc-de-la-commanderie-saint-jean\",\n        \"cirkafrika-iii\",\n        \"le-festival-de-l-illusion\",\n        \"exposition-la-belle-echappee-150-ans-de-sport-a-corbeil-essonnes-vernissage\",\n        \"ateliers-et-visites-l-eglise-saint-germain-saint-vincent-vous-ouvre-ses-portes\",\n        \"kant\",\n        \"spectacle-carmen-2-1\",\n        \"exposition-photographique-de-l-artiste-youssef-amghar\",\n        \"rando-velo-des-3-etangs\",\n        \"concert-de-l-orchestre-d-harmonie\",\n        \"musiques-a-table\",\n        \"pour-le-meilleur-et-pour-le-pire\",\n        \"stage-astronomie-premiere-etoile-acf532fb-d9e9-41d4-a2ae-459d2193d91c\",\n        \"les-semaines-du-consom-acteur\",\n        \"forum-des-associations-d-etiolles-2017\",\n        \"moissy-plage-revient\",\n        \"spectacle-l-etre-ou-pas\",\n        \"les-trois-brigands\",\n        \"spectacle-chute-cirque-acrobatique\",\n        \"la-fete-du-cinema-2017-aux-cinoches\",\n        \"fete-nationale-a-saint-pierre-du-perray\",\n        \"exposition-le-jeu-de-la-fable-et-de-l-histoire\",\n        \"casse-noisette\",\n        \"soiree-salsa\",\n        \"place-au-ludique-avec-senlud\",\n        \"ouverture-2017-du-labyrinthe-de-senart\",\n        \"visite-du-vieux-corbeil\",\n        \"just-dance-geant-a-evry\",\n        \"forum-des-associations-de-saintry-sur-seine-2017\",\n        \"fete-nationale-a-evry-2017\",\n        \"parcours-d-artiste-2017\",\n        \"la-caleche-du-pere-noel\",\n        \"feu-d-artifice-a-ris-orangis\",\n        \"du-court-au-long-rencontre-avec-la-realisatrice-joan-chemla\",\n        \"jardin-des-neiges-du-14-janvier\",\n        \"le-marche-municipal-fete-noel\",\n        \"performance-de-florence-picard-1re-figure-feminine-du-wall-street-art\",\n        \"fete-nationale-a-villabe-2017\",\n        \"soiree-disco-a-la-patinoire\",\n        \"spectacle-vivant-petite-enfance\",\n        \"atelier-creer-ses-cosmetiques-et-produits-d-entretien-naturels\",\n        \"cap-monde-presente-epopee-en-eaux-vives\",\n        \"exposition-manga-la-nuit-du-vivant\",\n        \"exposition-imageurs-du-ciel\",\n        \"repair-cafe-a-nandy\",\n        \"wakan-tanka-en-version-accoustique\",\n        \"la-route\",\n        \"parcs-en-fete-pompidou\",\n        \"visites-du-chateau-de-la-grange\",\n        \"cine-club-de-l-agora-special-hollywood-82e07083-73b6-4e1b-890e-914b924d1121\",\n        \"one-man-show-bigard\",\n        \"horizon\",\n        \"cap-monde-presente-tadjikistan-les-oeuvres-du-pamir\",\n        \"repair-cafe-au-theatre-senart-de-lieusaint\",\n        \"cine-club-de-l-agora-special-hollywood-3a6dbed0-0be4-4361-b072-806496e5b39a\",\n        \"handspinner-planneur-drone-au-fab-lab-de-planete-sciences\",\n        \"forum-des-associations-d-evry-2017\",\n        \"les-animaux-nocturnes\",\n        \"secret-temps-2\",\n        \"fete-nationale-a-courcouronnes-2017\",\n        \"blade-runner-concert-litteraire\",\n        \"fete-du-sport-evry-2017\",\n        \"repair-cafe-a-nandy-2018-espace-atout-age-nandy\",\n        \"atelier-cadre-lumineux\",\n        \"histoires-de-femmes\",\n        \"gratuiterie-speciale-fournitures-scolaires\",\n        \"pierre-emmanuel-barre-nouveau-spectacle\",\n        \"un-verger-pas-comme-les-autres\",\n        \"fete-nationale-a-lisses-2017\",\n        \"4eme-festival-sons-meles\",\n        \"anais-petit-addictions\",\n        \"cafe-litteraire-les-livres-indispensables\",\n        \"fete-nationale-a-moissy-cramayel-2017\",\n        \"spectacle-comte-de-bouderbala-2\",\n        \"spectacle-le-voyage-de-lola\",\n        \"un-gite-pour-les-ecureuils\",\n        \"stella-nova-tour\",\n        \"stage-decouverte-des-energies\",\n        \"stage-machinerie-medievale-2017\",\n        \"speed-dating-en-plein-air\",\n        \"stage-decouverte-de-la-nature\",\n        \"sorties-ornithologiques-a-l-etang-du-follet\",\n        \"soiree-fluo-a-la-patinoire\",\n        \"batlik-xi-lieux\",\n        \"marmite-bitibak\",\n        \"ca-fait-du-bien\",\n        \"kiz-fried-squid\",\n        \"sous-le-ciel-etoile-de-montauger\",\n        \"repair-cafe-a-nandy-2017\",\n        \"les-rendez-vous-du-club-linguistique\",\n        \"le-jeune-karl-marx-rencontre-debat\",\n        \"mademoiselle-libellule\",\n        \"stage-rover-martien\",\n        \"le-salon-du-bien-etre-soins-pratiques-naturelles\",\n        \"repair-cafe-a-nandy-ede0353e-2281-4ed6-a33a-3a958b3a01bb\",\n        \"bulles-party-a-la-patinoire\",\n        \"stage-creer-ses-cosmetiques-et-produits-d-entretien-naturels\",\n        \"le-misanthrope\",\n        \"el-baile\",\n        \"the-square-en-avant-premiere-aux-cinoches\",\n        \"comment-meme-est-montee-au-ciel\",\n        \"macbeth-opera-en-quatres-actes-en-direct-au-cinema\",\n        \"manon-ballet-en-trois-actes-au-cinema\",\n        \"projection-de-court-metrages-d-animations\",\n        \"le-lac-des-cygnes-ballet-en-quatres-actes-au-cinema\",\n        \"sport-en-fete-a-courcouronnes\",\n        \"le-moustique-tigre-une-espece-aux-portes-de-l-essonne\",\n        \"repair-cafe-a-nandy-2017-l-espace-atout-age\",\n        \"les-petites-betes-de-la-mare\",\n        \"cine-gouter-aladdin\",\n        \"la-fabrique-a-kifs\",\n        \"on-connait-la-chanson\",\n        \"au-fil-d-oedipe-theatre-et-marionnettes\",\n        \"concert-jazz-a-evry\",\n        \"stage-decouverte-petite-ourse\",\n        \"a-la-peche-a-la-ligne\",\n        \"les-siecles\",\n        \"naaman-tiwayo\",\n        \"disiz-la-peste-melan\",\n        \"partez-a-la-decouverte-du-vieux-corbeil\",\n        \"atelier-cosmetique\",\n        \"concert-de-l-orchestre-d-harmonie-de-moissy-cramayel\",\n        \"forum-des-associations-et-des-services-publics\",\n        \"concert-jazz-a-nandy\",\n        \"amateurs-de-dessins-entrez-dans-la-ronde-et-croquez-a-360\",\n        \"programmer-et-s-amuser-en-creant-un-objet-interactif\",\n        \"stage-fabriquer-et-lancer-une-micro-fusee-2017\",\n        \"exposition-la-belle-echappee-150-ans-de-sport-a-corbeil-essonnes\",\n        \"les-fils-prodigues\",\n        \"l-ete-en-photo\",\n        \"sorties-decouvertes-comment-est-geree-la-foret-de-senart\",\n        \"salon-du-polar\",\n        \"poems\",\n        \"corbeil-essonnes-en-fete\",\n        \"ballade-dansee-au-port-darblay\",\n        \"patrimoine-go-voyage-au-temps-de-friese\",\n        \"repair-cafe-a-nandy-2018\",\n        \"basket-ball-nationale-3-senart-recoit-le-gco-bihorel-76\",\n        \"isaac-delusion-siau\",\n        \"yamaha-drums-show-2\",\n        \"princesse-k\",\n        \"des-reptiles-en-essonne\",\n        \"au-ras-du-sol\",\n        \"born-bad-10-ans-cheveu-francois-virot\",\n        \"parcours-friese-etape-3-evry-les-berges-de-seine\",\n        \"rencontre-decouverte-autour-du-livre-jeunesse\",\n        \"a-vos-papilles\",\n        \"scene-ouverte-14\",\n        \"cycle-les-ecrans-des-festivals-projection-du-film-les-van-gogh-chinois\",\n        \"l-opera-national-de-paris-aux-cinoches-retransmission-en-direct-de-romeo-et-juliette-de-gounod-opera\",\n        \"rugby-federale-2-ris-orangis-recoit-paris-uc\",\n        \"a-vos-crayons\",\n        \"le-combat-de-tancrede-et-clorinde\",\n        \"bal-folk-a-l-auberge-150ab8be-2c7a-4874-a6ae-e1ed4093547a\",\n        \"a-vif\",\n        \"le-marche-de-villabe\",\n        \"embarquez-sur-une-peniche-pour-une-balade-culturelle-sur-la-seine\",\n        \"local-heroes-5-avec-orchestre-francilien-des-musiques-amplifiees\",\n        \"gouter-concert-la-dame-blanche\",\n        \"keblack-atheena\",\n        \"stage-fabriquer-un-drone-de-a-a-z\",\n        \"montauger-au-fil-des-siecles\",\n        \"soli-lock\",\n        \"la-niche-creative-de-ris-orangis\",\n        \"annulee-sound-the-system-roots-reggae-dub-night\",\n        \"tournois-game-of-bow-v2\",\n        \"bal-folk-a-l-auberge-6347cbc0-3471-4fe7-a84f-69b3d07aa508\",\n        \"4fames-creation-africolor\",\n        \"stage-astronomie-premiere-etoile\",\n        \"stage-des-arts-du-cirque-pour-enfants\",\n        \"cycle-les-ecrans-des-festivals-projection-du-film-lune-de-fer\",\n        \"mercredis-de-l-ete\",\n        \"fete-de-l-ecole-municipale-des-sports-test3\",\n        \"carnaval-adultes-a-la-patinoire\",\n        \"la-chouette-et-le-vieux-bouchon\",\n        \"badavlan\",\n        \"jardin-d-ete-2017-a-nandy\",\n        \"marche-artisanal-africain\",\n        \"retour-sur-le-patrimoine-industriel-de-ris-orangis\",\n        \"visite-du-domaine-de-la-grange\",\n        \"cycle-les-chefs-d-oeuvre-du-cinema-projection-du-film-la-terre-ephemere\",\n        \"un-anniversaire-pas-comme-les-autres\",\n        \"sorties-decouvertes-que-deviennent-les-arbres-de-la-foret\",\n        \"les-tresors-caches-sont-a-decouvrir-au-domaine-de-la-grange-prevote\",\n        \"jardin-des-neiges-du-11-fevrier\",\n        \"l-agglo-fun-tour-a-corbeil-essonnes\",\n        \"rallye-pedestre-voir-cesson-autrement\",\n        \"balade-urbaine-grigny-au-temps-de-l-exploitation-de-la-meuliere-et-du-sable\",\n        \"quinzaine-du-jeu-animation-construction-briques\",\n        \"la-vie-dans-les-marais\",\n        \"soiree-cafe-theatre-et-apres-midi-loto\",\n        \"cine-gouter-pocahontas-une-legende-indienne\",\n        \"l-agglo-fun-tour-a-grigny\",\n        \"les-virades-de-l-espoir\",\n        \"instameet-journees-du-patrimoine\",\n        \"vitalsport-au-decathlon-bois-senart\",\n        \"etre-jeune-en-banlieue-xix-xxeme-siecle\",\n        \"misatango-de-martin-palmeri\",\n        \"l-agglo-fun-tour-au-gymnase-du-parc-des-loges-a-evry\",\n        \"l-automne-en-photo\",\n        \"sorties-decouvertes-quel-equilibre-faune-flore-a-senart\",\n        \"jardin-des-neiges-special-carnaval\",\n        \"telethon-2017-concert-gospel-jeane-manson\",\n        \"jardin-des-neiges-special-noel\",\n        \"quinzaine-du-jeu-jeu-de-pistes\",\n        \"decouverte-pilates-yoga\",\n        \"concert-du-nouvel-an-de-l-amicale-de-villabe-cbb7ce8f-06f7-45c4-93bc-61a5485462e2\",\n        \"mashup-project-performance-theatrale-vijing-musique-live-au-theatre-de-senart\",\n        \"l-agglo-fun-tour-au-complexe-sportif-andre-thoison-d-evry\",\n        \"marathon-de-senart-grand-paris-sud-2018-les-10km\",\n        \"visite-atelier-stenope-oeil-urbain\",\n        \"repair-cafe-a-nandy-510fb41d-0dfd-4fcf-a344-9021c4a7dc8c\",\n        \"parade-etiollaise-de-vehicules-anciens\",\n        \"exposition-portraits-pixelises-carte-blanche-corpus-des-humains-au-theatre-de-senart\",\n        \"show-case-siau\",\n        \"jardin-des-neiges-special-paques\",\n        \"voyage-au-xxeme-siecle\",\n        \"cafe-des-langues-2017\",\n        \"tournoi-feminin-de-tennis-de-table\",\n        \"fete-de-la-musique-4d420049-c247-471f-9857-c25ba76d1c9c\",\n        \"l-usro-fait-son-telethon\",\n        \"cafe-des-langues-a72c6f61-c807-416b-b652-3a8fc4de591a\",\n        \"marathon-de-senart-grand-paris-sud-2018-le-marathon\",\n        \"cafe-cultures-6b057f35-cb6b-43c2-aa98-635ee887e319\",\n        \"la-pagode-de-moissy-cramayel-vous-devoile-ses-secrets\",\n        \"cine-gouter-la-belle-au-bois-dormant\",\n        \"stage-creer-son-mobile-wi-fi\",\n        \"fintan-magee-l-une-des-figures-les-plus-importantes-du-street-art-et-de-l-art-contemporain-australien-au-wall-street-art-festival-2017\",\n        \"spectacle-musical-et-atelier-musical\",\n        \"journee-halloween-a-la-piscine\",\n        \"le-bal-rital-5e019558-af4c-48c4-a04f-4cfa69c337f5\",\n        \"presentation-de-coups-de-coeur-de-la-rentree-litteraire\",\n        \"baseball-les-templiers-de-senart-recoivent-les-barracudas-de-montpellier\",\n        \"finale-championnats-de-france-d1-de-baseball-a-lieusaint\",\n        \"expo-l-hiver-en-scandinavie\",\n        \"astro-en-grand-format-a-corbeil-essonnes\",\n        \"le-film-noir-sur-le-grill\",\n        \"balade-photo-l-oeil-urbain\",\n        \"corbeil-essonnes-gala-de-boxe\",\n        \"les-cafe-cine-de-la-mediatheque-colette\",\n        \"mediatheque-colette-l-atelier-bidouille\",\n        \"tournoi-international-de-gymnastique-artistique-feminine\",\n        \"verino-son-micro-le-stand-up-3-0\",\n        \"le-negre-volant\",\n        \"visite-du-temple-protestant-de-corbeil-essonnes\",\n        \"l-opera-national-de-paris-aux-cinoches-ouverture-de-la-saison-avec-la-belle-au-bois-dormant\",\n        \"valerian-et-la-cite-des-mille-planetes-soiree-debat\",\n        \"la-foulee-des-brettes-challenge-grand-paris-sud\",\n        \"les-cafe-cine-de-la-mediatheque-colette-2018-mediatheque-colette-lisses\",\n        \"mediatheque-colette-l-atelier-bidouille-a2c5b477-826a-4e71-98fe-c1bd969a0c7c\",\n        \"trail-du-four-a-chaux-challenge-grand-paris-sud\",\n        \"la-boheme\",\n        \"fete-citoyenne-du-13-juillet\",\n        \"nuit-des-laveuses-3eme-edition\",\n        \"femmes-au-pluriel-travaux-au-singulier\",\n        \"soiree-de-cloture-de-la-patinoire\",\n        \"macadam-popcorn-rencontre-debat\",\n        \"les-cafe-cine-de-la-mediatheque-colette-2018-mediatheque-colette\",\n        \"journee-decouverte-aviron-sante\",\n        \"exposition-de-peintures\",\n        \"sauvetage-des-batraciens\",\n        \"patinoire-de-noel-a-savigny-le-temple\",\n        \"cycle-de-films-documentaires-la-route-du-the-ou-les-aventures-millenaires-d-une-petite-feuille-aux-mille-vertus\",\n        \"ceremonie-officielle-du-14-juillet\",\n        \"quand-la-philharmonie-de-paris-rencontre-les-enfants-de-grand-paris-sud\",\n        \"video-sur-la-trace-des-peintres\",\n        \"les-cafe-cine-de-la-mediatheque-colette-2018\",\n        \"mediatheque-colette-les-cine-momes-34b8b1cb-22b9-4c7a-9e98-a698174ac139\",\n        \"soiree-debat-festival-du-cinema-citoyen\",\n        \"cine-gouter-bambi\",\n        \"balade-nature-au-domaine-de-la-grange-laprevote\",\n        \"suivez-le-guide-un-conteur-au-theatre\",\n        \"baseball-d1-demi-finale-championnat-de-france-les-templiers-de-senart-recoivent-les-barracudas-de-montpellier\",\n        \"festival-villes-et-toiles-elles-regardent-le-monde-cine-peinture\",\n        \"jardin-des-neiges-a-la-patinoire-francois-le-comte-de-l-agora\",\n        \"cyclotourisme-randonnee-du-balory-2017-38eme-edition\",\n        \"le-lac-des-cygnes-ballet\",\n        \"mediatheque-de-l-agora-l-heure-des-bebes\",\n        \"caravane-de-livres\",\n        \"a-la-decouverte-du-musee-paul-delouvrier\",\n        \"visite-de-l-observatoire-camille-flammarion-2016\",\n        \"voile-journee-portes-ouvertes-des-jeunes-regatiers\",\n        \"apres-midi-jeux-en-famille\",\n        \"a-la-decouverte-du-wall-street-art-de-grand-paris-sud\",\n        \"la-ludomobile-s-installe-pour-l-ete\",\n        \"stage-de-voile-d-automne\",\n        \"fabrique-ton-shammies\",\n        \"mineurs-quels-sont-vos-droits\",\n        \"football-americain-les-corsaires-d-evry-fetent-leur-30-ans\",\n        \"mediatheque-colette-les-cine-momes\",\n        \"cycle-revu-et-corrige-taxi-teheran-vs-teheran-tabou-soiree-debat\",\n        \"mercredis-de-l-ete-bataille-de-couleurs\",\n        \"exposition-jeunesse-pas-perdue-au-tribunal-de-grande-instance-d-evry\",\n        \"inauguration-du-lieu-la-marge\",\n        \"concert-litteraire-et-rencontre-avec-marcus-malte\",\n        \"la-foulee-gadouilleuse\",\n        \"festival-villes-et-toiles-elles-regardent-le-monde-hollywood-la-cite-des-femmes\",\n        \"le-telethon-a-saintry\",\n        \"un-village-artistique-au-coeur-du-parc-du-chateau-de-beauvoir\",\n        \"birgit-yew-voyage-violoncell-tique\",\n        \"initiation-a-la-cybersecurite-a-evry\",\n        \"festival-villes-et-toiles-elles-regardent-le-monde\",\n        \"concert-olivier-hestin-trio-manege-s\",\n        \"voyagez-au-coeur-du-xixeme-siecle\",\n        \"heure-du-conte-en-langues-maternelles\",\n        \"tour-a-velo-de-l-energie-citoyenne-en-ile-de-france\",\n        \"gauguin-voyage-de-tahiti-cine-peinture\",\n        \"nouveau-jardin-des-neiges-a-la-patinoire-tous-les-mercredis-apres-midi\",\n        \"1-2-3-histoires-10541d80-8889-4220-accc-3d640737c6d8\",\n        \"spectacle-costume-au-chateau-de-beauvoir\",\n        \"romeo-hait-juliette\",\n        \"cafe-cultures\",\n        \"parcours-friese-etape-1-le-parc-des-bas-vignons-ancien-port-darblay\",\n        \"faites-les-courts\",\n        \"forum-des-associations-a-etiolles\",\n        \"rando-vtt-entre-l-ecole-et-l-essonne-19eme-edition\",\n        \"atelier-fais-moi-peur\",\n        \"noel-rissois-2017\",\n        \"nouveaux-cours-du-service-arts-visuels\",\n        \"tournoi-de-petanque-a-etiolles\",\n        \"cafe-cultures-429b1b04-c6ba-4e22-89bf-a45165fd4c3f\",\n        \"kartland-winter-challenge-tournament\",\n        \"parcours-friese-etape-2-place-galignani\",\n        \"decouvrez-les-mysteres-de-la-cathedrale-de-la-resurrection\",\n        \"exposition-memoires-de-ville-le-quartier-de-la-pyramide\",\n        \"parcours-friese-etape-4-ris-orangis-place-babel\",\n        \"village-d-ete\",\n        \"lirejoue\",\n        \"la-pagode-vous-ouvre-ses-portes\",\n        \"festival-des-contes-du-8-au-17-decembre\",\n        \"moissy-cramayel-soiree-zen-au-centre-aquatique-nymphea-2017\",\n        \"myriam-maxo-reine-du-wax-a-la-maison-de-quartier-pablo-picasso\",\n        \"mediatheque-alain-ramey-cafe-cultures\",\n        \"theo-lawrence-the-hearts\",\n        \"visitez-le-musee-aeronautique-et-spatial-safran\",\n        \"ris-en-seine-2017\",\n        \"cloture-du-festival-portraits-de-jeunesse-s-2\",\n        \"stage-objet-son-improvisation-tout-est-bon-dans-le-son\",\n        \"le-telethon-a-etiolles-219d97a3-4ae7-42ab-a4bd-fcb075838760\",\n        \"chantons-sous-la-pluie-projection-unique-danse\",\n        \"les-soleils-de-grand-paris-sud-journee-speciale-poesie\",\n        \"heure-du-conte\",\n        \"lumiere-l-aventure-commence-ou-l-histoire-du-cinema\",\n        \"club-de-lecture-lisons-fute\",\n        \"reveler-nos-donnees-numeriques-evanescentes\",\n        \"conference-sur-les-series-policieres\",\n        \"2eme-ecofestival-du-cinema-la-biodiversite-c-est-aussi-pres-de-chez-vous\",\n        \"entrez-dans-le-laboratoire-de-l-afm-telethon\",\n        \"cafe-litteraire-premier-roman-8e89e15b-572d-411d-bfd8-4d8bc910a981\",\n        \"basic-einstein\",\n        \"la-grange-au-temps-des-annees-folles\",\n        \"vers-l-infini-et-au-dela\",\n        \"visite-du-laboratoire-d-exploration-fonctionnelle-des-genomes-b2a950fb-eb68-4925-8a86-7848d9c9d868\",\n        \"basket-n3-senart-recoit-le-stade-francais-basket-75\",\n        \"visitez-le-laboratoire-genhotel\",\n        \"festival-les-traversees-projection-du-film-j-ai-reve-d-une-grande-etendue-d-eau-430c3385-3a10-493d-bea8-2af4b497206f\",\n        \"show-case-de-la-chorale-du-plan\",\n        \"mediatheque-de-l-agora-les-cine-momes\",\n        \"stage-a-la-recherche-de-la-collection-fantome\",\n        \"stage-realisation-d-un-dessin-anime\",\n        \"a-fond-les-ballons-pour-cette-7eme-edition-de-destination-reau\",\n        \"halloween-a-la-mediatheque\",\n        \"passez-votre-certificat-d-etude-a-la-maison-d-ecole-de-vert-saint-denis\",\n        \"mediatheque-de-l-agora-les-cine-momes-a27383c1-5d50-469e-a0ca-6e43fa47b82d\",\n        \"opening-3\",\n        \"soiree-d-halloween-au-royal-kids-de-lieusaint\",\n        \"visites-guidees-et-animations-musicales-au-domaine-de-la-grange-la-prevote\",\n        \"a-la-decouverte-de-la-mash-up-table\",\n        \"visitez-l-eglise-notre-dame-de-soisy-sur-seine\",\n        \"le-marche-de-noel-a-etiolles\",\n        \"animations-d-halloween-a-saintry-sur-seine\",\n        \"jouons-en-famille\",\n        \"jamais-seul\",\n        \"voyage-au-temps-de-godefroy-de-montmirail\",\n        \"jouons-en-famille-53008762-8974-4b6c-a123-e6358c8ccbb5\",\n        \"ping-machine-presente-ubik\",\n        \"semaine-de-la-creativite-et-de-l-innovation\",\n        \"festival-les-traversees-exposition-les-marches-colores-de-nos-villes-jumelles\",\n        \"senlud-festival-du-jeux\",\n        \"sellig-episode-4\",\n        \"le-conte-d-hiver-ballet-en-un-prologue-et-trois-actes\",\n        \"tete-de-lecture-rencontre-avec-delphine-coulin\",\n        \"soiree-courts-metrages-retour-de-clermont\",\n        \"festival-les-traversees-autour-des-langues-maternelles-a-vert-saint-denis\",\n        \"les-rendez-vous-du-club-linguistique-de-senart\",\n        \"34eme-mois-des-3-mondes\",\n        \"dallahan-festival-celte\",\n        \"les-nuits-polaires-rencontre-avec-les-anges\",\n        \"la-fete-de-la-foret-de-senart-2017\",\n        \"festival-les-traversees-bourse-aux-livres-en-langues-etrangeres\",\n        \"les-freres-guichen-festival-celte\",\n        \"atelier-d-initiation-aux-arts-du-cirque-5-6-ans\",\n        \"croc-blanc-avant-premiere-animation\",\n        \"festival-les-traversees-bourse-aux-livres-en-langues-etrangeres-2017\",\n        \"une-bonne-biere\",\n        \"cycle-les-chefs-d-oeuvre-du-cinema-projection-du-film-la-ballade-de-narayama\",\n        \"atelier-d-ecriture\",\n        \"festival-les-traversees-comptines-du-monde-et-rencontre-avec-les-editions-didier-jeunesse\",\n        \"quand-la-musique-prend-forme\",\n        \"moissy-fete-noel\",\n        \"les-ateliers-creatifs-de-la-mediatheque-condorcet\",\n        \"mediatheque-de-l-agora-l-heure-des-bebes-61577ed8-71fc-40b4-bd3a-dcaf7ab00ec7\",\n        \"mediatheque-elsa-triolet-cafe-cultures-e709ab37-3464-4a20-89e2-b5e363424229\",\n        \"demonstration-de-construction-de-carres-aromatiques\",\n        \"mediatheque-elsa-triolet-l-heure-des-bebes-47e38d59-d0e7-49e6-a897-1be7deebd323\",\n        \"2eme-ecofestival-du-cinema-food-savers\",\n        \"2eme-ecofestival-du-cinema-l-intelligence-des-arbres\",\n        \"mediatheque-de-l-agora-l-heure-des-bebes-82acee86-85ae-423f-b3b7-6c0b803a40e9\",\n        \"les-ateliers-creatifs-fabriquez-votre-attrape-reves\",\n        \"evry-trail-urbain-2018-5eme-edition\",\n        \"festival-les-traversees-exposition-photo-les-marches-de-nos-villes-jumelees\",\n        \"2de-journee-europeenne-du-cinema-art-et-essai\",\n        \"journees-de-l-architecture-balade-en-bus-de-grigny-a-evry\",\n        \"1-2-3-des-histoires-pour-toi\",\n        \"et-4-fames-creation-danse-musique-et-chant\",\n        \"exposition-l-ecole-pendant-la-guerre\",\n        \"2eme-ecofestival-du-cinema-tante-hilda\",\n        \"alice-au-pays-des-merveilles\",\n        \"cine-culte-mademoiselle-julie\",\n        \"seances-de-planetarium-et-observation-du-soleil\",\n        \"quand-la-musique-prend-forme-2017\",\n        \"atelier-d-initiation-aux-arts-du-cirque-7-14-ans\",\n        \"archeologie-experimentale-et-art-rupestre-2017\",\n        \"handball-evry-recoit-champigny-sur-marne\",\n        \"les-ateliers-creatifs-peinture-sur-textile\",\n        \"cine-culte-de-l-influence-des-rayon-gamma-sur-des-marguerites\",\n        \"la-vie-dans-un-marais\",\n        \"journee-robotique-exceptionnelle\",\n        \"joue-la-comme-beckham-festival-a-vos-arts-prets-partez\",\n        \"betes-de-scene\",\n        \"les-ateliers-creatifs-de-la-mediatheque-condorcet-8ca8bccd-a986-4f62-95b2-ed562c7594dc\",\n        \"mini-tournoi-mixte-de-volley-ball-a-evry\",\n        \"ateliers-nomades-escale-au-grand-nord-a-villabe\",\n        \"les-noelleries-2017\",\n        \"soiree-de-la-sainte-catherine\",\n        \"la-boucle-du-telethon-2017\",\n        \"mediatheque-raymond-queneau-l-heure-des-bebes-4f90d3ad-35e2-45ab-969c-6a865600d5bd\",\n        \"tartiflette-geante-a-saintry-sur-seine\",\n        \"telethon-2017\",\n        \"2eme-ecofestival-du-cinema-moi-claude-monet\",\n        \"soirees-zen-a-la-piscine-du-long-rayage\",\n        \"mediatheque-elsa-triolet-l-heure-des-bebes-c58450cd-6a27-4235-a17a-cf9c2fc83776\",\n        \"open-international-de-football-de-table-2018\",\n        \"telethon-2017-initiation-a-la-gymnastique-rythmique\",\n        \"rando-nocturne-vtt-du-gardien-au-courdray-montceaux\",\n        \"coco-en-avant-premiere-aux-cinoches-2017\",\n        \"telethon-2017-concert-jazz\",\n        \"mediatheque-raymond-queneau-temps-des-histoires\",\n        \"conference-histoire-de-l-art-scenes-de-crime-au-louvre\",\n        \"histoires\",\n        \"cycle-revu-et-corrige-soiree-blade-runner\",\n        \"portraits-de-jeunesse-s-2-re-decouvrir-le-cineaste-italien-dino-risi\",\n        \"a-c-e-s-tour-2017-2018\",\n        \"nuit-de-la-lecture\",\n        \"visite-du-laboratoire-d-exploration-fonctionnelle-des-genomes\",\n        \"seance-de-decouverte-du-do-in-de-la-meditation-et-de-la-brain-gym-a-la-mediatheque-de-lieusaint\",\n        \"loto-du-football-club-de-nandy\",\n        \"concert-du-big-band-de-senart\",\n        \"les-ateliers-creatifs-de-la-mediatheque-de-l-agora\",\n        \"mediatheque-raymond-queneau-atelier-musical\",\n        \"les-ateliers-d-ecriture-de-la-mediatheque-de-l-agora\",\n        \"stage-qixel-art-creer-a-la-maniere-d-invader-350b9736-4bc0-451a-a75d-58988c2f4e5f\",\n        \"mediatheque-condorcet-l-heure-des-bebes\",\n        \"telethon-2017-journee-ludique-a-saint-germain-les-corbeil\",\n        \"mediatheque-des-aunettes-atelier-musical\",\n        \"une-mini-ferme-debarque-a-montauger\",\n        \"journee-porte-ouverte-jeux-et-cirque\",\n        \"alexandre-tharaud-recital-piano\",\n        \"roller-hockey-n1-championnats-de-france-ris-orangis-recoit-rouen\",\n        \"semaine-evenement-ateliers-nomades-du-18-au-26-novembre-2017\",\n        \"marche-de-noel\",\n        \"soiree-lectures-a-la-mediatheque-elsa-triolet\",\n        \"mediatheque-alain-ramey-l-heure-des-bebes-15b14667-e538-4fd4-872c-36d18859e3c1\",\n        \"mediatheque-alain-ramey-atelier-musical\",\n        \"recital-trompette-et-piano\",\n        \"cap-monde-presente-arctique-la-vie-en-nord\",\n        \"2eme-ecofestival-du-cinema-drole-de-petites-betes\",\n        \"basket-n3-senart-recoit-l-usm-saran-45\",\n        \"the-geek-x-vrv-bagarre-azur\",\n        \"cycle-les-chefs-d-oeuvre-du-cinema-projection-de-a-travers-le-miroir\",\n        \"pauline-croze-alysce\",\n        \"mediatheque-raymond-queneau-l-heure-des-bebes-3a2dac56-54a8-41d6-a314-176acc9f7aa2\",\n        \"grande-collecte-historique-2017\",\n        \"mediatheque-albert-camus-cafe-cultures-16a75005-c559-42d5-82b0-690ba020fc3e\",\n        \"mediatheque-georges-perec-atelier-musical\",\n        \"grande-collecte-historique\",\n        \"basket-n3-senart-recoit-le-ces-tours-37\",\n        \"mediatheque-elsa-triolet-l-heure-des-bebes-0fe84871-7ddb-4a2c-98c7-52634b03422a\",\n        \"le-bagad-de-lann-bihoue-celebre-son-65eme-anniversaire\",\n        \"telethon-2017-depart-du-run-bike-de-l-agglo\",\n        \"cine-club-le-corbeau-de-henri-georges-clouzot\",\n        \"l-opera-national-de-paris-aux-cinoches-retransmission-du-corsaire-ballet\",\n        \"cycle-les-ecrans-des-festivals-projection-du-film-ma-terre\",\n        \"mediatheque-albert-camus-cafe-cultures-c1fdce64-8321-4e70-a1b0-89685f9ab89a\",\n        \"soiree-debat-sous-peine-d-innocence\",\n        \"basket-n3-senart-recoit-boigny-bc-45\",\n        \"la-kazanou-invite-lindigo\",\n        \"telethon-2017-a-villabe\",\n        \"le-telethon-2017-a-bondoufle\",\n        \"expostion-les-allies\",\n        \"the-wanton-bishops-flamenco-punk-complet\",\n        \"mediatheque-de-l-agora-l-heure-des-bebes-deacad43-2fff-440c-aeb5-6f07fa1d82a4\",\n        \"cine-club-peggy-guggenheim-la-collectionneuse\",\n        \"le-mecano-de-la-generale-animation-et-galette-des-rois\",\n        \"jeux-litteraires-a-la-mediatheque-alain-ramey\",\n        \"basket-n3-senart-recoit-le-club-sportif-gravenchonnais-76\",\n        \"le-festival-africolor-aux-cinoches-projection-du-film-la-danse-de-jupiter\",\n        \"mediatheque-colette-cafe-cultures-d68159ad-92fa-4336-b264-d8771e51505a\",\n        \"venise-n-est-pas-en-italie\",\n        \"zombie-zombie-la-mverte-live\",\n        \"apprendre-a-nager-a-ris-orangis\",\n        \"telethon-2017-hand-bad-night\",\n        \"portraits-de-jeunesse-s-2-rencontre-avec-la-realisatrice-laurence-ferreira-barbosa\",\n        \"basket-n3-senart-recoit-le-basket-club-epouville-76\",\n        \"concert-et-diner-de-poilus-460da35a-3ec2-40b4-ab32-9d253ac7c757\",\n        \"josman-sopico\",\n        \"juliette-armanet-1ere-partie\",\n        \"cine-livre-autour-de-la-sortie-d-ernest-et-celestine-en-hiver\",\n        \"concert-1839-1846-les-etes-de-chopin-a-nohant\",\n        \"metal-child-of-waste-odyssey-when-reasons-collapse\",\n        \"reparer-les-vivants\",\n        \"imaginer-malaxer-et-transformer-seance-jeune-public-aux-cinoches\",\n        \"cine-club-la-mort-aux-trousses-remplace-sueurs-froides\",\n        \"cap-monde-presente-mekong-la-mere-des-rivieres\",\n        \"2eme-ecofestival-du-cinema-avatar\",\n        \"concert-du-nouvel-an\",\n        \"mediatheque-albert-camus-atelier-musical\",\n        \"cine-club-l-inconnu-du-nord-express\",\n        \"telethon-2017-a-cesson-et-vert-saint-denis\",\n        \"2eme-ecofestival-du-cinema-les-sentinelles\",\n        \"l-asce-aviron-91-fait-son-telethon-2017\",\n        \"telethon-2017-week-end-solidaire-a-lisses\",\n        \"2eme-ecofestival-du-cinema-l-etreinte-du-serpent\",\n        \"telethon-2017-9eme-pianothon-de-soisy-sur-seine\",\n        \"mediatheque-de-l-agora-atelier-musical\",\n        \"karaoke-litteraire\",\n        \"ravy-le-plan-jazz-magnifique\",\n        \"gouter-concert-solveig\",\n        \"basket-rm3-ris-orangis-recoit-colombes\",\n        \"les-coquettes\",\n        \"mediatheque-de-l-agora-game-party-on-joue-avec-les-parents\",\n        \"folk-night\",\n        \"projection-unique-de-l-ami-americain-de-wim-wenders\",\n        \"don-quichotte-2017\",\n        \"cross-de-senart-2017\",\n        \"la-gymnastique-rythmique-entre-en-scene-a-courcouronnes\",\n        \"bric-a-brac-culturel\",\n        \"telethon-2017-a-evry\",\n        \"les-ateliers-d-ecriture-de-la-mediatheque-de-l-agora-4445431d-4e83-4cdb-869d-f8effe1dbebb\",\n        \"festival-telerama-2018-aux-cinoches\",\n        \"10eme-edition-de-la-fete-du-jeu\",\n        \"airnadette-le-pire-contre-attaque\",\n        \"bon-plan-a-la-ferme-du-couleuvrain\",\n        \"telethon-2017-baptemes-de-plongee-aquagym-et-longueurs-de-natation\",\n        \"portraits-de-jeunesse-s-2-programme-de-courts-metrages-europeens\",\n        \"les-zen-hours-debarquent-a-la-piscine-rene-touzin\",\n        \"handball-evry-recoit-verrieres\",\n        \"apres-midi-musicale-claude-debussy\",\n        \"les-ateliers-nomades-aux-cinoches-atelier-calaveritas\",\n        \"basket-n3-senart-recoit-l-ala-le-havre-basket-76\",\n        \"nuit-telethon-a-la-patinoire\",\n        \"rencontre-avec-la-compagnie-shlemil-theatre\",\n        \"game-story-special-mario\",\n        \"activites-autour-de-guiseppe-arcimboldo\",\n        \"mardi-pop-820ae520-7088-457c-85fb-38a56485624a\",\n        \"mardi-pop\",\n        \"cine-bambins-des-tresors-plein-ma-poche\",\n        \"exposition-michel-birot-rugby\",\n        \"exposition-tout-se-transforme-rien-ne-se-perd\",\n        \"basket-n3-senart-recoit-l-avenir-basket-chartres-28\",\n        \"football-n3-senart-moissy-recoit-aubervilliers-93\",\n        \"le-printemps-des-poetes-projections-debat\",\n        \"cine-club-la-lucarne-le-voleur-de-lumiere\",\n        \"chanter-est-un-sport-comme-un-autre-188aa995-f49a-4a7b-a72b-6cc3e5e633f8\",\n        \"exposition-entre-terre-et-ciel-1054564f-7bb4-4fcd-847a-58f6a62cdc08\",\n        \"game-party-pour-les-enfants\",\n        \"basket-n3-senart-recoit-l-avenir-sportif-d-orly-basket-94\",\n        \"blind-test-au-plan\",\n        \"basket-8eme-de-finale-courcouronnes-recoit-saint-cheron\",\n        \"mediatheques-des-aunettes-game-party-ps4\",\n        \"ateliers-nomades-projection-surprise-jeune-public-et-atelier-calaveritas\",\n        \"mediatheque-georges-perec-game-party\",\n        \"faites-les-courts-special-femmes\",\n        \"atelier-nomade-la-legende-de-yurupary\",\n        \"projections-conference-sur-la-danse-contemporaine\",\n        \"atelier-photo-montage-pour-enfants\",\n        \"football-n3-senart-moissy-recoit-le-blanc-mesnil-93\",\n        \"colloque-evry-sciences-et-innovation-2017-les-sciences-pour-l-autonomie-de-la-personne\",\n        \"exposition-philippe-jacquard\",\n        \"atelier-d-ecriture-abdc8ec1-aa76-4a37-9ca1-41320c1a9640\",\n        \"sandra-nkake-myles-sanko\",\n        \"performance-dialogue-entre-la-danse-la-musique-et-le-conte\",\n        \"atelier-manuel-participatif-a-la-mediatheque\",\n        \"portraits-de-jeunesse-s-2-rencontre-avec-fabien-gorgeart-et-lea-mysius-realisateurs\",\n        \"art-smod-le-salon-des-artisans-createurs-revient-les-samedi-18-dimanche-19-novembre-2017\",\n        \"projection-les-poetes-sont-encore-vivants\",\n        \"le-telethon-2017-a-soisy-sur-seine\",\n        \"soirees-detentes-a-la-piscine-de-l-agora\",\n        \"exposition-michel-birot-rugby-vernissage\",\n        \"vintage-trouble-1ere-partie\",\n        \"ateliers-nomades-escale-en-amerique-latine-a-evry\",\n        \"atelier-slam-avec-paul-wamo\",\n        \"apres-midis-ludiques-a-la-mediatheque\",\n        \"coupe-des-reines-et-rois-au-golf-de-germain\",\n        \"vacances-de-noel-de-la-maison-de-la-jeunesse\",\n        \"concert-lecture\",\n        \"avant-premiere-le-crime-de-l-orient-express\",\n        \"noel-s-invite-a-la-rotonde\",\n        \"festival-les-traversees-cafe-polyglotte\",\n        \"cafe-polyglotte-790f08d3-7055-4500-ae20-e5111218c0a7\",\n        \"printemps-des-poetes-recital-participatif\",\n        \"escale-en-amerique-latine-aux-cinoches-la-colombie-a-l-honneur\",\n        \"les-ateliers-nomades-contes-latinoamericains\",\n        \"concert-resonances-a-l-eglise-de-saint-germain-les-corbeil\",\n        \"festival-les-traversees-projection-du-film-j-ai-reve-d-une-grande-etendue-d-eau\",\n        \"concert-performance\",\n        \"la-nuit-des-laveuses-2018\",\n        \"le-c-show-8\",\n        \"exposition-d-art-d-art-du-sport\",\n        \"soiree-debat-evolution-des-moeurs\",\n        \"football-n3-senart-moissy-recoit-le-racing-cff-colombes-92\",\n        \"cine-club-de-la-mediatheque-hollywood-entre-reves-et-desillusions\",\n        \"scene-ouverte-16\",\n        \"radio-mille-pattes-20-ans\",\n        \"marche-de-noel-le-9-decembre-a-saint-pierre-du-perray\",\n        \"football-n3-senart-moissy-recoit-bobigny-93\",\n        \"cycle-cinema-et-psychanalyse-projection-debat-autour-du-film-carre-35\",\n        \"concert-artiste-aziz-wade\",\n        \"festival-les-traversees-soiree-d-ouverture\",\n        \"basket-n3-senart-recoit-l-ie-us-palaiseau-91\",\n        \"soiree-metal-express-avec-hed-p-e\",\n        \"mois-du-film-documentaire-c73baa7a-8594-40bb-98c6-2e95aa89060a\",\n        \"soiree-thematique-regards-croises-sur-la-foret\",\n        \"football-n3-senart-moissy-recoit-paris-fc-75\",\n        \"stage-qixel-art-creer-a-la-maniere-d-invader\",\n        \"cine-bambins-le-petit-monde-de-leo-5-contes-de-lionni\",\n        \"oui\",\n        \"projection-du-film-documentaire-les-pepites-realise-par-xavier-de-lauzanne\",\n        \"coupe-de-la-galette-des-rois-au-golf-du-coudray\",\n        \"atelier-scratch\",\n        \"handball-evry-recoit-villemomble-93\",\n        \"atelier-quiver\",\n        \"stage-citoyen-de-defense-contre-agression-au-couteau\",\n        \"les-rendez-vous-creatifs-de-la-mediatheque-georges-perec-f29e92a3-c71e-40b1-b1ae-0e88a6d92277\",\n        \"mois-du-film-documentaire-projection-du-film-plaquages\",\n        \"la-ligne-droite-projection\",\n        \"les-soleils-de-grand-paris-sud-1265d319-78a8-4aa2-8eca-d84f3d17aa05\",\n        \"doolin\",\n        \"des-livres-et-nous\",\n        \"les-soleils-de-grand-paris-sud-1b39ec36-e80f-431f-9664-fc08dbd9a32d\",\n        \"cine-bambins-le-voyage-en-ballon\",\n        \"telethon-2017-arrivee-du-run-bike-de-grand-paris-sud\",\n        \"carmen-maria-vega\",\n        \"atelier-bue-bote\",\n        \"handball-evry-recoit-nogent\",\n        \"ornithologue-en-herbe\",\n        \"concert-trio-d-argent\",\n        \"femmes-au-pluriel-travail-singulier\",\n        \"3eme-rencontre-des-metiers-d-art-et-de-l-apprentissage\",\n        \"peau-d-ane-de-c-perrault\",\n        \"son-of-dave-lewis-evans\",\n        \"the-legendary-tigerman\",\n        \"sinik-veerus\",\n        \"les-corps-magiques-ou-l-eloge-du-sport-lecture-concert\",\n        \"cycle-revu-et-corrige-un-homme-integre-vs-les-chiens-de-paille\",\n        \"spectacle-les-chatouilles-ou-la-danse-de-la-colere\",\n        \"15eme-salon-d-art-de-l-association-d-evry-village\",\n        \"soiree-debat-les-enfants-soldats\",\n        \"vibrato-2017\",\n        \"les-soleils-de-grand-paris-sud-atelier-parents-enfants\",\n        \"karting-course-d-endurance-par-equipe\",\n        \"exposition-la-belle-echappee-150-ans-de-sport-a-corbeil-essonnes-visites-commentees\",\n        \"football-n3-senart-moissy-recoit-les-ulis-91\",\n        \"la-route-2017\",\n        \"le-rayonnement-des-mots-hommage\",\n        \"cycle-revu-et-corrige-seance-unique-du-film-les-chiens-de-paille\",\n        \"les-coulisses-du-domaine-departemental-de-montauger\",\n        \"exposition-abstraction-et-trompe-l-oeil\",\n        \"chants-de-la-mer\",\n        \"apero-quizz-sport\",\n        \"le-carnaval-des-animaux\",\n        \"les-rendez-vous-creatifs-de-la-mediatheque-georges-perec\",\n        \"football-n3-senart-moissy-recoit-les-gobelins-75\",\n        \"rechauffement-global-et-biodiversite\",\n        \"rugby-f2-ris-orangis-recoit-antony-92\",\n        \"les-rendez-vous-creatifs-de-la-mediatheque-georges-perec-592eb923-dab1-4d84-8050-79efab0c3fa0\",\n        \"rugby-f2-ris-orangis-recoit-epernay-51\",\n        \"les-rendez-vous-creatifs-de-la-mediatheque-georges-perec-9f520571-400c-442a-bf60-7712d43a7bf0\",\n        \"f-l-ammes\",\n        \"mediatheque-de-l-agora-l-heure-des-bebes-4dab4fce-7716-47ae-bf45-5af5bdbf3075\",\n        \"cine-rencontre-autour-du-film-l-intelligence-des-arbres\",\n        \"rugby-f2-ris-orangis-recoit-beaune-21\",\n        \"cycle-les-chefs-d-oeuvre-du-cinema-projection-de-sa-majeste-des-mouches\",\n        \"mediatheque-alain-ramey-l-heure-des-bebes-75a1f0e5-b6e2-4d5f-a736-918ab2893c3a\",\n        \"rugby-f2-ris-orangis-recoit-clamart-92\",\n        \"rugby-f2-ris-orangis-recoit-orsay-91\",\n        \"cafe-litteraire-premier-roman\",\n        \"francis-lockwood-trio-hommage-a-jimi-hendrix\",\n        \"rosas-danst-rosas\",\n        \"made-in-ici-2017\",\n        \"bal-trad-diato-04d3aef9-ee2b-4e48-bb5d-00a31a8a47e6\",\n        \"avant-premiere-apres-l-ombre-en-presence-du-realisateur-stephane-mercurio\",\n        \"mediatheque-albert-camus-l-heure-des-bebes-2ee5cb72-d103-4942-8882-1be991cd65f1\",\n        \"badminton-n2-senart-recoit-etupes-25\",\n        \"halloween-party-dark-night\",\n        \"football-n3-senart-moissy-recoit-ivry-94\",\n        \"rugby-f2-ris-orangis-recoit-meaux-77\",\n        \"mediatheque-des-cites-unies-films-croquer\",\n        \"la-balory-verte-rando-vtt\",\n        \"football-americain-d2-les-corsaires-d-evry-recoivent-les-mousquetaires-de-chatenay-malabry\",\n        \"impact\",\n        \"samedi-the-livres\",\n        \"des-hommes-en-devenir\",\n        \"karting-finale-challenge-endurance-kartland\",\n        \"34e-mois-des-3-mondes-s-engager-par-l-art-et-la-culture\",\n        \"cap-monde-presente-ile-de-la-dominique-l-ile-joyau-des-peuples-oublies\",\n        \"handball-evry-recoit-l-hay-les-roses-94\",\n        \"galette-des-rois-au-nymphea\",\n        \"la-vitrine-animee\",\n        \"l-automne-en-fete-au-domaine-des-macarons-de-reau\",\n        \"football-n3-senart-moissy-recoit-noisy-93\",\n        \"cycle-les-chefs-d-oeuvre-du-cinema-projection-du-film-les-betes-du-sud-sauvage\",\n        \"rugby-f2-ris-orangis-recoit-orleans-45\",\n        \"cro-man-avant-premiere\",\n        \"la-locomotion-en-fete\",\n        \"ethnofonik-all-stars\",\n        \"cine-peinture-autour-du-documentaire-la-passion-van-gogh\",\n        \"soiree-abonnes-au-centre-aquatique-nymphea-de-moissy-cramayel\",\n        \"soiree-rentree-litteraire\",\n        \"l-heure-numerique-b9ba17c3-52ab-4fd0-9a50-60a5e747d15e\",\n        \"les-soleils-de-grand-paris-sud-atelier-jeunesse\",\n        \"les-projections-familiales-de-la-mediatheque-elsa-triolet\",\n        \"memoire-et-patrimoine-vivant\",\n        \"vertiges\",\n        \"le-jour-le-plus-court-2017\",\n        \"fete-du-cinema-d-animation-en-presence-de-pierre-luc-granjon-realisateur\",\n        \"cap-monde-presente-ocean-indien-a-l-ombre-des-manguiers\",\n        \"defi-run-24h-pour-le-telethon-2017-a-moissy-cramayel\",\n        \"atelier-d-ecriture-parent-enfant\",\n        \"soiree-halloween\",\n        \"l-opera-national-de-paris-aux-cinoches-retransmission-de-la-boheme-de-puccini-opera\",\n        \"julien-clerc\",\n        \"ateliers-biodiversite\",\n        \"handball-evry-recoit-palaiseau-91\",\n        \"repair-cafe-a-nandy-2018-espace-atout-age\",\n        \"contes-a-crocs\",\n        \"boubacar-traore\",\n        \"le-livre-de-ma-mere\",\n        \"festival-les-traversees-rencontres-et-jeux-en-langues-etrangeres\",\n        \"cafe-des-langues-19090e02-f143-45fe-a660-4635fe205292\",\n        \"cafe-des-langues-d5534cad-0747-4e67-8fe5-773381290240\",\n        \"badminton-n2-senart-recoit-strasbourg-aslr-67\",\n        \"badminton-n2-senart-recoit-mulhouse-2-68\",\n        \"santa-madera\",\n        \"ateliers-nomades-escale-en-amerique-latine-a-ris-orangis-cea1e08b-c3e1-4fd9-93ff-87874a54edc6\",\n        \"badminton-n2-senart-recoit-strasbourg-asptt-2\",\n        \"appel-a-candidatures-participez-a-la-global-game-jam-2018\",\n        \"la-mort-dans-les-cultures-precolombiennes\",\n        \"bibliog-mes-0298f8db-5114-49aa-a25a-d012402a6634\",\n        \"petit-concert\",\n        \"nil-actum\",\n        \"escale-au-musee-du-quai-branly\",\n        \"journee-de-noel-a-la-piscine\",\n        \"dagoba-pyogenesis\",\n        \"patinage-artistique-coupe-francois-le-comte\",\n        \"gauvain-sers\",\n        \"stick-men\",\n        \"pretty-maids-pink-cream-69\",\n        \"stage-de-la-toussaint-a-la-mjc-de-ris-orangis-stage-lecture-intergenerationnel-parents-et-enfants\",\n        \"avant-le-ciel-2018\",\n        \"matinale-de-la-mediatheque\",\n        \"la-fabrication-des-medicaments-et-ses-metiers-a-l-imt-d-evry\",\n        \"escale-au-musee-du-quai-branly-f934ab27-4733-4cf2-88ed-dbe6ad257f78\",\n        \"le-telethon-2017-a-moissy-cramayel\",\n        \"le-pays-de-rien-2018\",\n        \"journees-nationales-de-l-architecture\",\n        \"stage-de-la-toussaint-a-la-mjc-de-ris-orangis-stage-clown-8-12-ans\",\n        \"festival-les-traversees-projection-du-film-j-ai-reve-d-une-grande-etendue-d-eau-84ecde30-1798-47f8-8acd-12fabbba580d\",\n        \"welcome-to-the-arcade-exposition-de-jeux-video\",\n        \"le-minimum-around-keats\",\n        \"da-silva\",\n        \"mat-bastard-a-vox\",\n        \"chris-slade-timeline\",\n        \"michelangelo-amour-et-mort\",\n        \"nuit-d-horreur-au-labyrinthe-de-senart\",\n        \"animation-de-noel-autour-du-film-myrtille-et-la-lettre-au-pere-noel\",\n        \"exposition-infiniment-petit\",\n        \"cabaret-bastringue\",\n        \"oldelaf-cecile-hercule\",\n        \"gala-de-la-solidarite\",\n        \"david-hockney-a-la-royal-academy-of-arts-a-bigger-picture-2012-82-portraits-and-one-still-life-2016\",\n        \"the-noface-i-love-my-neighbours\",\n        \"appel-a-candidature-humour-en-seine\",\n        \"le-cycle-clown-de-la-mjc-de-ris-orangis\",\n        \"cafe-renover-malin-e9d0604e-370c-4685-b2ea-80ce70bd6ea1\",\n        \"moustache-academy\",\n        \"le-menteur\",\n        \"moi-claude-monet\",\n        \"canaletto-et-l-art-de-venise-a-la-queen-s-gallery-buckingham-palace\",\n        \"les-sirenes-du-stampien\",\n        \"la-musique-fait-son-cinema\",\n        \"spectacle-le-lapin-zinzin-de-la-troupe-annenciel\",\n        \"cycle-theatre-sans-paroles-ados-adultes\",\n        \"halloween-aux-cinoches-le-mardi-31-octobre\",\n        \"vacances-d-hiver-a-la-mdj\",\n        \"appel-a-candidature-seine-montante\",\n        \"guignol-amoureux\",\n        \"dedans-mon-corps\",\n        \"tremplin-seine-montante\",\n        \"visite-guidee-de-l-imprimerie-helio-corbeil\",\n        \"cine-poeme-seance-pour-les-enfants\",\n        \"cafe-du-gout-le-chocolat\",\n        \"l-affiche-des-laureats\",\n        \"les-mots-qui-tombent-du-ciel\",\n        \"marie-curie-magicienne-du-radium\",\n        \"atelier-d-experiementation-sonore-et-acoustique\",\n        \"atelier-tiki-tatoo\",\n        \"atelier-des-lutins-des-sciences-df07a507-9411-4da1-a3cf-06c8485890fb\",\n        \"les-effets-speciaux-au-cinema\",\n        \"stands\",\n        \"visite-de-laboratoires\",\n        \"mjc-de-ris-orangis-cycle-theatre-jeux-et-histoires-parents-enfants\",\n        \"stage-de-la-toussaint-a-la-mjc-de-ris-orangis-stage-de-danses-traditionnelles-enfants\",\n        \"gouter-de-noel-aux-cinoches-autour-du-film-ferdinand\",\n        \"edmond-molieres-2017\",\n        \"schubert\",\n        \"avant-premiere-a-l-heure-des-souvenirs\",\n        \"vocal-sampling\",\n        \"daniel-mille-quintet-eva-tsin\",\n        \"blond-blond-blond\",\n        \"les-rois-vagabonds\",\n        \"visite-de-la-maison-d-ecole-de-pouilly-le-fort\",\n        \"paul-wamo-slam-kanak\",\n        \"gobi-rhapsodie-mongolie\",\n        \"les-rois-vagabonds-6392a043-dc9b-4816-92c0-a5ab568d95d7\",\n        \"visite-du-domaine-de-la-grange-la-prevote-390a6b04-0b72-4193-854d-4191bf64d36b\",\n        \"rando-velo-la-saintryenne-2018\",\n        \"the-dansant-c5820a8a-4082-4fcf-ad27-1e52d8bf4ef0\",\n        \"une-journee-sur-mars\",\n        \"soiree-rencontre-debat-star-wars-les-derniers-jedi\",\n        \"cafe-polyglotte-2a0b63c4-9a1f-4245-9b79-e3aa2beb38ee\",\n        \"exit-danse-hip-hop\",\n        \"peau-neuve-soiree-st-valentin\",\n        \"mediatheque-raymond-queneau-l-heure-des-bebes\",\n        \"rio-clap-clap-clap-concert\",\n        \"cie-mangano-massip-remanence-au-fil-du-mythe\",\n        \"les-musiques-de-la-terre-degustation-musicale\",\n        \"dom-juan-2-0\",\n        \"cafe-des-langues-a95ec68d-621e-4c12-8801-0b80c6eae0c8\",\n        \"cine-debat-autour-du-film-fleur-du-desert\",\n        \"familie-floz-teatro-delusio\",\n        \"mediatheque-de-l-agora-cafe-cultures\",\n        \"le-bal-rital\",\n        \"abou-diarra-36e8f547-05c8-4197-98ff-05e5b16cafba\",\n        \"ivo-livi-ou-le-destin-d-yves-montand\",\n        \"salon-osez-le-bien-etre-a-vert-saint-denis\",\n        \"mediatheque-de-l-agora-cafe-cultures-9421772d-5972-4442-a304-b8f6e182c4f0\",\n        \"le-printemps-des-coureuses\",\n        \"angelo-debarre-gipsy-unity-thomas-dutronc\",\n        \"nous-les-petits-enfants-de-tito\",\n        \"la-louve\",\n        \"le-gardeur-de-silences\",\n        \"la-fuite-comedie-en-huit-songes\",\n        \"semianyki-la-famille\",\n        \"histoire-de-babar-le-petit-elephant-de-jean-de-brunoff-musique-de-francis-poulenc\",\n        \"football-n3-senart-moissy-recoit-les-mureaux-78\",\n        \"festival-les-traversees-soiree-de-cloture\",\n        \"bike-run-a-saint-germain-les-corbeil\",\n        \"journee-pluridisciplinaire-du-roller-en-essonne\",\n        \"festival-villes-toiles-2017-da937cde-55a6-4597-8936-fce15edf60ad\",\n        \"festival-villes-toiles-2017\",\n        \"festival-villes-toiles-2017-4b040b67-8b98-4c4e-81e7-b7cfb183a1d9\",\n        \"programme-de-moyens-metrages-ils-long-fait-cette-annee-rencontre\",\n        \"cycle-sophrologie\",\n        \"cafe-litteraire\",\n        \"festival-villes-toiles-2017-642cafbc-2781-4638-9b9a-fdb9e1f4a471\",\n        \"2e-colloque-street-art-nom-feminin\",\n        \"atelier-10-doigts-6456cc99-9892-4495-9157-641268245c2b\",\n        \"alice-au-pays-des-merveilles-5ee408c0-38d2-46e7-a356-332ac1e76bbb\",\n        \"racontines-5ee35633-bef1-4e5d-93e2-04a17bd1c0eb\",\n        \"rugby-f2-ris-orangis-recoit-nuit-saint-georges-21\",\n        \"tony-chasseur\",\n        \"1-2-3-histoires-12284ed9-5145-4df8-8421-0981a45d8965\",\n        \"vide-ateliers-de-la-societe-des-arts\",\n        \"mediatheque-albert-camus-cafe-cultures-4d5a4ce2-cb18-4cce-a487-fa6d1eefb671\",\n        \"un-escape-game-au-musee-safran\",\n        \"mediatheque-de-l-agora-cafe-cultures-55db0ad2-0db4-43e8-98ca-a820815f138a\",\n        \"mediatheque-elsa-triolet-l-heure-des-bebes\",\n        \"mediatheque-alain-ramey-cafe-cultures-42eb3798-5803-475b-9502-6e02bdb8b9cf\",\n        \"le-printemps-du-cinema-2018-aux-cinoches-rn-7\",\n        \"mediatheque-albert-camus-cafe-cultures-9aab159a-21af-4f70-b850-d208ffd6716a\",\n        \"joachim-horsley-beethoven-in-havana\",\n        \"concert-jazz-cd9a8e8a-4a74-408e-aa84-3117ac304130\",\n        \"forum-des-etudiants-2018\",\n        \"les-chatouilles-ou-la-danse-de-la-colere\",\n        \"marche-d-art-et-d-artisanat-d-art\",\n        \"le-printemps-du-cinema-2018-aux-cinoches-plateau\",\n        \"images-du-monde-afrique-du-sud\",\n        \"soiree-wim-wenders-vs-john-cassavetes\",\n        \"visitez-grigny-2017\",\n        \"visite-des-lieux-emblematiques-de-grigny\",\n        \"spectacle-une-bonne-biere\",\n        \"visite-de-grigny-au-temps-du-moyen-age\",\n        \"cafe-des-langues-d3c905f0-356b-43ba-aa9f-c085271a5258\",\n        \"cafe-des-langues-734c5a13-c105-4585-b9ce-9d062a6eb8f7\",\n        \"les-ateliers-creatifs-atelier-de-creation-d-origamis\",\n        \"jupiter-okwess\",\n        \"les-ateliers-creatifs-fabriquez-votre-masque-de-carnaval\",\n        \"atelier-decouverte-des-langues\",\n        \"les-concerts-du-dimanche-a-l-anas-5ccb83b0-5122-4dd7-a301-249a16793d9f\",\n        \"musiques-de-film\",\n        \"cine-club-de-l-agora-special-hollywood\",\n        \"images-du-monde-cuba-la-grande-caraibe\",\n        \"cine-culte-j-ai-meme-rencontre-des-tziganes-heureux\",\n        \"cine-culte-love-streams\",\n        \"cine-gouter-les-101-dalmatiens\",\n        \"visite-de-soisy-sur-seine-512bb053-73ba-464f-bbde-1c07444cfaa1\",\n        \"cafe-litteraire-9f286d60-3452-4150-aab9-bc835579af8a\",\n        \"cine-gouter-les-indestructibles\",\n        \"comment-epouser-un-milliardaire\",\n        \"o-silo-maximum\",\n        \"grande-soiree-dansante-de-printemps\",\n        \"atelier-10-doigts-26776fd2-059c-497f-a8e6-f086e80faa6b\",\n        \"l-art-des-fleurs\",\n        \"cloture-des-ateliers-nomades\",\n        \"soiree-juste-de-la-dance-2018\",\n        \"visite-de-grigny-la-petite-italie\",\n        \"visite-de-la-maison-d-ecole-a-pouilly-le-fort\",\n        \"crowbar\",\n        \"tample-diva-faune\",\n        \"skid-row\",\n        \"show-case-melie-fraisse\",\n        \"mediatheque-albert-camus-l-heure-des-bebes-fecb5578-64e4-4a85-83b1-c8d14b5d65d2\",\n        \"mediatheque-de-l-agora-l-heure-des-bebes-584f6145-3f7c-468b-be0e-eb7f130e4712\",\n        \"mediatheque-albert-camus-l-heure-des-bebes-4ad11bd1-93a3-4d6b-a13b-1950ca596f34\",\n        \"mediatheque-albert-camus-l-heure-des-bebes-cf7bee9c-9c52-4e6d-b0b7-bdaa7c39e0a8\",\n        \"atelier-surtitrage-projection\",\n        \"projection-du-film-mercenaire-rencontre-avec-le-realisateur\",\n        \"mediatheque-condorcet-l-heure-des-bebes-8d068ea2-5145-4ebb-b3f2-cf09bc093fb2\",\n        \"mediatheque-condorcet-l-heure-des-bebes-8f661ccb-bc3e-4589-a2a1-19c672195267\",\n        \"l-art-et-la-revolte\",\n        \"mediatheque-condorcet-l-heure-des-bebes-b252f268-ad7b-4656-a3bc-dd427b2e5ab2\",\n        \"projection-debat-autour-du-film-rosetta\",\n        \"cycle-les-chefs-d-oeuvre-du-cinema-l-avventura\",\n        \"mediatheque-elsa-triolet-l-heure-des-bebes-c01e609b-8d1c-4c69-97e7-df5176bdefd3\",\n        \"journee-internationale-des-droits-des-femmes-projection\",\n        \"storhet-i-nord-la-magnificence-du-nord\",\n        \"mediatheque-raymond-queneau-l-heure-des-bebes-98d71626-a33b-4566-89a2-4739fe4202eb\",\n        \"mediatheque-de-l-agora-l-heure-des-bebes-811147a4-72d1-43d9-846b-dfdde9d4e501\",\n        \"mediatheque-de-l-agora-l-heure-des-bebes-6baed2ad-9602-44ad-a7aa-a72ee4416ce3\",\n        \"coup-de-projecteur-special-randonnee\",\n        \"mediatheque-alain-ramey-l-heure-des-bebes\",\n        \"coup-de-projecteur-special-femmes\",\n        \"mediatheque-alain-ramey-l-heure-des-bebes-de7f1011-073b-42b1-b2c6-3b25883b3dba\",\n        \"vernissage-et-exposition-de-l-artiste-mohamed-chouri\",\n        \"spectacle-les-femmes-aux-yeux-ouverts-sont-dangereuses-du\",\n        \"debat-consacre-au-sujet-delicat-et-actuel-de-la-charge-mentale-en-partenariat-avec-le-reseau-des-mediatheques-grand-paris-sud\",\n        \"le-nouvel-an-chinois-aux-cinoches-avant-premiere-modifiee\",\n        \"exposition-decouverte-des-tresors-caches-d-un-village-englouti\",\n        \"la-naissance-d-hollywood-entre-cinema-et-ideologie\",\n        \"semaine-de-l-egalite-femmes-hommes-jeux-et-ecritures\",\n        \"nouvelle-exposition-de-siana-telegraph-s\",\n        \"visite-guidee-suivie-d-un-repas-au-lycee-hotelier-d-etiolles\",\n        \"show-case-le-minimum-around-keats\",\n        \"salon-du-tourisme\",\n        \"ceremonie-de-remise-de-prix-femme-e-creative\",\n        \"fete-foraine-2018\",\n        \"association-des-familles-d-evry-foire-aux-vetements-et-puericulture-printemps-ete-2018\",\n        \"initiation-au-krav-maga\",\n        \"semaine-de-l-egalite-femmes-hommes-cinema-battle-of-sexes\",\n        \"faust\",\n        \"exposition-storhet-i-nord-la-magnificence-du-nord\",\n        \"semaine-de-l-egalite-femmes-hommes-atelier-velo\",\n        \"allons-voir-l-envers-du-decor-89f7f0a9-6602-4c53-be09-0c6337012db0\",\n        \"nandy-ka-danse-fait-son-show\",\n        \"brocante-musicale-2018\",\n        \"cold-blood\",\n        \"mediatheque-elsa-triolet-cafe-cultures-015f9756-b7ff-447e-b97d-ae42f20be396\",\n        \"dictee-de-senart\",\n        \"festival-tintinnabule-une-heure-au-ciel\",\n        \"festival-tintinnabule-un-jardin-extraordinaire\",\n        \"festival-tintinnabule-coloricocola\",\n        \"festival-tintinnabule-tour-du-monde-en-chansons\",\n        \"festival-tintinnabule-allez-jouer-dehors\",\n        \"festival-tintinnabule-zinzin\",\n        \"decouverte-de-la-guitare-avec-jean-baptiste-tande\",\n        \"scene-ouverte-avec-des-groupes-locaux\",\n        \"les-soleils-de-grand-paris-sud-journee-speciale-affiche\",\n        \"immer-son-la-creation-sonore\",\n        \"the-big-conf-la-conference-sur-les-enjeux-energie-climat\",\n        \"concert-crusty-combo\"\n    ]\n}"}],"_postman_id":"bc048a9c-783e-4530-bd5d-fe1706db0c6b"},{"name":"Show","id":"0beec065-4d54-4147-98c7-6c06b2280be9","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.publidata.io/v1/{{instance_id}}/events/{{event_id}}","description":"<p>Show d'un événement</p>\n","urlObject":{"path":["v1","{{instance_id}}","events","{{event_id}}"],"host":["https://api.publidata.io"],"query":[],"variable":[]}},"response":[{"id":"321ded4a-9b01-446b-be6b-fbbf943f0e80","name":"Show event 2","originalRequest":{"method":"GET","header":[],"url":"publidata.io/api/v1/portail-sortir-gps/events/4324"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Access-Control-Expose-Headers","value":"","name":"Access-Control-Expose-Headers","description":"Lets a server whitelist headers that browsers are allowed to access."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Length","value":"181","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 12 Mar 2018 22:10:14 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"da-jixOrj02dBQ1slHoZFTPvw\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 4324,\n    \"name\": \"Visite des lieux emblématiques de Grigny\",\n    \"slug\": \"visite-des-lieux-emblematiques-de-grigny\",\n    \"punchline\": \"L'Office de Tourisme vous propose une visite à ne pas manquer !\",\n    \"blurb\": \"Découverte des lieux emblématiques de Grigny, du village à la ville, l'histoire de ses mairies, de ses écoles et de ses lieux de mémoire tels que le monument aux morts.\",\n    \"cancelled\": false,\n    \"cancellation_reason\": \"\",\n    \"free_admission\": false,\n    \"free_admission_condition\": \"\",\n    \"repeating\": false,\n    \"cover_picture\": {\n        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/025/266/cover_small/mairie_%C3%A9cole_des_gar%C3%A7ons_fond_municipal_de_la_ville_de_Grigny.JPG?1518795716\",\n        \"small_dimensions\": \"300x225\",\n        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/025/266/cover_medium/mairie_%C3%A9cole_des_gar%C3%A7ons_fond_municipal_de_la_ville_de_Grigny.JPG?1518795716\",\n        \"medium_dimensions\": \"600x450\",\n        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/025/266/cover_large/mairie_%C3%A9cole_des_gar%C3%A7ons_fond_municipal_de_la_ville_de_Grigny.JPG?1518795716\",\n        \"large_dimensions\": \"1000x750\",\n        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/025/266/cover_xlarge/mairie_%C3%A9cole_des_gar%C3%A7ons_fond_municipal_de_la_ville_de_Grigny.JPG?1518795716\",\n        \"xlarge_dimensions\": \"2000x1500\",\n        \"alt\": \"image de couverture de Visite des lieux emblématiques de Grigny\",\n        \"name\": \"image de couverture de Visite des lieux emblématiques de Grigny\",\n        \"slug\": null,\n        \"description\": \"image de couverture de Visite des lieux emblématiques de Grigny\",\n        \"copyright\": \"Fond municipal de la ville de Grigny\"\n    },\n    \"dates_count\": 1,\n    \"type\": {\n        \"id\": 16,\n        \"name\": \"Rencontres\",\n        \"slug\": \"rencontres\"\n    },\n    \"styles\": [\n        {\n            \"id\": 130,\n            \"name\": \"Conférence\",\n            \"slug\": \"conference\"\n        }\n    ],\n    \"performers\": [],\n    \"start_date\": \"21-03-2018\",\n    \"raw_start_date\": \"2018-03-21T14:00:00.000+00:00\",\n    \"end_date\": \"21-03-2018\",\n    \"raw_end_date\": \"2018-03-21T17:00:00.000+00:00\",\n    \"event_dates\": [\n        {\n            \"id\": 42033,\n            \"date\": \"21-03-2018\",\n            \"start_hour\": \"14:00\",\n            \"raw_start_date\": \"2018-03-21T14:00:00.000+00:00\",\n            \"end_hour\": \"17:00\",\n            \"raw_end_date\": \"2018-03-21T17:00:00.000+00:00\",\n            \"sold_out\": false,\n            \"duration\": 10800,\n            \"label\": \"\",\n            \"weekday\": null,\n            \"location\": {\n                \"id\": 1673,\n                \"name\": \"Lieu de rendez-vous\",\n                \"address\": \"square Piketty ,91350 Grigny\",\n                \"geocode\": {\n                    \"lat\": 48.674294,\n                    \"lng\": 2.388408\n                }\n            },\n            \"facility\": null,\n            \"address\": \"square Piketty ,91350 Grigny\"\n        }\n    ],\n    \"part_of_event_group\": true,\n    \"event_group\": {\n        \"id\": 112,\n        \"name\": \"Les visites guidées printemps / été 2018 avec l'Office de Tourisme\",\n        \"slug\": \"festival-les-visites-guidees-printemps-ete-2018-avec-l-office-de-tourisme\",\n        \"punchline\": \"Des idées de visites sur notre territoire\",\n        \"status\": \"published\",\n        \"cancelled\": false,\n        \"cancellation_reason\": null,\n        \"free_admission\": false,\n        \"free_admission_condition\": \"\",\n        \"start_date\": \"2018-01-01\",\n        \"end_date\": \"2018-07-15\",\n        \"type\": {\n            \"id\": 1,\n            \"name\": \"Festival\",\n            \"created_at\": \"2016-06-03T15:05:13.535+02:00\",\n            \"updated_at\": \"2016-06-03T15:05:13.535+02:00\"\n        },\n        \"tickets\": [],\n        \"fees\": []\n    },\n    \"tickets\": [\n        {\n            \"id\": 599,\n            \"name\": \"Réservation au 01 64 96 23 97\",\n            \"url\": \"http://officetourisme.grandparissud.fr\"\n        }\n    ],\n    \"fees\": [\n        {\n            \"id\": 16381,\n            \"name\": \"Tarif réduit\",\n            \"price\": 5\n        },\n        {\n            \"id\": 16380,\n            \"name\": \"Tarif plein\",\n            \"price\": 8\n        }\n    ],\n    \"infos\": {\n        \"phone\": null,\n        \"email\": \"\",\n        \"contact\": \"\",\n        \"website\": \"\",\n        \"social\": {\n            \"facebook\": \"\",\n            \"twitter\": \"\",\n            \"googleplus\": \"\",\n            \"instagram\": \"\",\n            \"linkedin\": \"\",\n            \"viadeo\": \"\",\n            \"flickr\": \"\",\n            \"youtube\": \"\",\n            \"dailymotion\": \"\",\n            \"vimeo\": \"\",\n            \"medium\": \"\",\n            \"rss\": \"\",\n            \"snapcode_svg\": \"\",\n            \"messenger\": \"\",\n            \"allocine\": \"\"\n        }\n    },\n    \"age_targeting\": null,\n    \"accessibility\": false,\n    \"news\": [],\n    \"contents\": {\n        \"images\": [],\n        \"documents\": [],\n        \"links\": [],\n        \"videos\": []\n    },\n    \"partners\": [],\n    \"pages\": [\n        {\n            \"id\": 9125,\n            \"instance\": {\n                \"slug\": \"portail-sortir-gps\"\n            }\n        }\n    ]\n}"},{"id":"b3266c90-b5c0-4627-82eb-73e8f2b5c2f3","name":"Show event 1","originalRequest":{"method":"GET","header":[],"url":"publidata.io/api/v1/portail-sortir-gps/events/4323"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Access-Control-Expose-Headers","value":"","name":"Access-Control-Expose-Headers","description":"Lets a server whitelist headers that browsers are allowed to access."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Encoding","value":"gzip","name":"Content-Encoding","description":"The type of encoding used on the data."},{"key":"Content-Length","value":"181","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 12 Mar 2018 22:10:14 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"da-jixOrj02dBQ1slHoZFTPvw\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Accept-Encoding","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 4323,\n    \"name\": \"soirée JUSTE de la DANCE\",\n    \"slug\": \"soiree-juste-de-la-dance\",\n    \"punchline\": \"Villabé , capitale de la dance\",\n    \"blurb\": \"Après la soirée disco en 2015, la soirée années 80 en 2017, le service Événements vous propose d'enflammer la piste de danse de l'espace culturel La Villa sur les musiques des années 70 à nos jours.\\r\\nLa première partie de soirée sera animée par le groupe Profil Groove (https://www.facebook.com/profil.groove)\\r\\nPrésence de la radio sans pub pour une émission délocalisée en direct.\\r\\nVenez nombreux !\\r\\n\\r\\nRenseignements et réservations auprès du service événements au 01 69 11 24 76\\r\\nTarif (entrée + 1 boisson) : 10€/adulte, 7€/enfant, étudiant et demandeur d'emploi (sur présentation d'un justificatif).\\r\\nRestauration rapide sur place. Paiement par chèque ou espèces uniquement.\",\n    \"cancelled\": false,\n    \"cancellation_reason\": \"\",\n    \"free_admission\": false,\n    \"free_admission_condition\": \"\",\n    \"repeating\": false,\n    \"cover_picture\": {\n        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/025/252/cover_small/AFFICHE_A4_RVB.jpg?1518780687\",\n        \"small_dimensions\": \"212x300\",\n        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/025/252/cover_medium/AFFICHE_A4_RVB.jpg?1518780687\",\n        \"medium_dimensions\": \"424x600\",\n        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/025/252/cover_large/AFFICHE_A4_RVB.jpg?1518780687\",\n        \"large_dimensions\": \"707x1000\",\n        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/025/252/cover_xlarge/AFFICHE_A4_RVB.jpg?1518780687\",\n        \"xlarge_dimensions\": \"1414x2000\",\n        \"alt\": \"image de couverture de soirée JUSTE de la DANCE\",\n        \"name\": \"image de couverture de soirée JUSTE de la DANCE\",\n        \"slug\": null,\n        \"description\": \"image de couverture de soirée JUSTE de la DANCE\",\n        \"copyright\": \"\"\n    },\n    \"dates_count\": 1,\n    \"type\": {\n        \"id\": 12,\n        \"name\": \"Clubbing\",\n        \"slug\": \"clubbing\"\n    },\n    \"styles\": [\n        {\n            \"id\": 76,\n            \"name\": \"Rap / RNB / Hip Hop\",\n            \"slug\": \"rap-rnb-hip-hop\"\n        },\n        {\n            \"id\": 77,\n            \"name\": \"Soul / Funk\",\n            \"slug\": \"soul-funk\"\n        },\n        {\n            \"id\": 81,\n            \"name\": \"Généraliste\",\n            \"slug\": \"generaliste\"\n        },\n        {\n            \"id\": 82,\n            \"name\": \"World Music\",\n            \"slug\": \"world-music\"\n        },\n        {\n            \"id\": 85,\n            \"name\": \"Pop / Rock / Folk\",\n            \"slug\": \"pop-rock-folk\"\n        }\n    ],\n    \"performers\": [\n        {\n            \"id\": 1981,\n            \"name\": \"profil groove\",\n            \"slug\": \"profil-groove\",\n            \"group\": true,\n            \"type\": null\n        }\n    ],\n    \"start_date\": \"10-03-2018\",\n    \"raw_start_date\": \"2018-03-10T20:30:00.000+00:00\",\n    \"end_date\": \"10-03-2018\",\n    \"raw_end_date\": \"2018-03-10T03:00:00.000+00:00\",\n    \"event_dates\": [\n        {\n            \"id\": 42057,\n            \"date\": \"10-03-2018\",\n            \"start_hour\": \"20:30\",\n            \"raw_start_date\": \"2018-03-10T20:30:00.000+00:00\",\n            \"end_hour\": \"03:00\",\n            \"raw_end_date\": \"2018-03-10T03:00:00.000+00:00\",\n            \"sold_out\": false,\n            \"duration\": -63000,\n            \"label\": \"\",\n            \"weekday\": null,\n            \"facility\": {\n                \"id\": 314,\n                \"name\": \"Espace culturel La Villa\",\n                \"slug\": \"espace-culturel-la-villa\",\n                \"address\": \"Rue Jean Claude Guillemont 91100 Villabé\",\n                \"geocode\": {\n                    \"lat\": 48.5885351,\n                    \"lng\": 2.4513764\n                },\n                \"cover_picture\": {\n                    \"small\": \"/assets/missing_cover_small-31064dc1d983b098ba820e239b7ed14a2f07c7ffed1039eaaa529271ab735ebc.png\",\n                    \"small_dimensions\": \"x\",\n                    \"medium\": \"/assets/missing_cover_medium-9a32ff6a630c7c2b8dff6cdaff21621e85a39fcc3d1cd7c906562c63af2a76e6.png\",\n                    \"medium_dimensions\": \"x\",\n                    \"large\": \"/assets/missing_cover_large-8221cc7c93109743bffd51b5218bc445fe56cc15108fab334050259751f982d2.png\",\n                    \"large_dimensions\": \"x\",\n                    \"xlarge\": \"/assets/missing_cover_xlarge-0be5cd2f7dc7c7d09d42da56390c6b5369e4c57416f5fbb96f67dc0515710c58.png\",\n                    \"xlarge_dimensions\": \"x\",\n                    \"alt\": \"image de couverture de Espace culturel La Villa\",\n                    \"name\": \"image de couverture de Espace culturel La Villa\",\n                    \"slug\": \"image-de-couverture-de-espace-culturel-la-villa\",\n                    \"description\": \"image de couverture de Espace culturel La Villa\",\n                    \"copyright\": \"\"\n                },\n                \"profile_picture\": {\n                    \"small\": \"/assets/missing_logo_small-25a62311fd6b6f4ed32f37b43490bac1a6bfded378c748ba62200eb1b6a26910.png\",\n                    \"small_dimensions\": \"x\",\n                    \"medium\": \"/assets/missing_logo_medium-79214fc42d47c1bbc916d3ef5b8ec183dc05d77afc66225a29a3173711d3fc3b.png\",\n                    \"medium_dimensions\": \"x\",\n                    \"large\": \"/assets/missing_logo_large-2e2cb84c5127f21e8d1292b385da9507537c2baba88388c599c5aac99c5c111b.png\",\n                    \"large_dimensions\": \"x\",\n                    \"alt\": \"image de profil de Espace culturel La Villa\",\n                    \"name\": \"image de profil de Espace culturel La Villa\",\n                    \"slug\": \"image-de-profil-de-espace-culturel-la-villa\",\n                    \"description\": \"image de profil de Espace culturel La Villa\",\n                    \"copyright\": \"\"\n                },\n                \"city\": {\n                    \"id\": 25,\n                    \"name\": \"Villabé\",\n                    \"slug\": \"villabe\"\n                },\n                \"type\": {\n                    \"facility_type_id\": 14,\n                    \"name\": \"Pôle culturel\",\n                    \"slug\": \"pole-culturel\"\n                },\n                \"thematics\": [\n                    {\n                        \"id\": 3,\n                        \"name\": \"Culture\",\n                        \"slug\": \"culture\"\n                    }\n                ],\n                \"theme_categories\": [\n                    {\n                        \"id\": 3,\n                        \"name\": \"Culture\",\n                        \"slug\": \"culture\"\n                    }\n                ],\n                \"infos\": {\n                    \"phone\": null,\n                    \"email\": \"\",\n                    \"contact\": \"\",\n                    \"website\": \"\",\n                    \"social\": {\n                        \"facebook\": \"\",\n                        \"twitter\": \"\",\n                        \"googleplus\": \"\",\n                        \"instagram\": \"\",\n                        \"linkedin\": \"\",\n                        \"viadeo\": \"\",\n                        \"flickr\": \"\",\n                        \"youtube\": \"\",\n                        \"dailymotion\": \"\",\n                        \"vimeo\": \"\",\n                        \"medium\": \"\",\n                        \"rss\": \"\",\n                        \"snapcode_svg\": \"\",\n                        \"messenger\": null,\n                        \"allocine\": null\n                    }\n                },\n                \"schedules\": {\n                    \"regulars\": [],\n                    \"closed\": [],\n                    \"exceptions\": []\n                }\n            },\n            \"location\": null,\n            \"address\": \"Rue Jean Claude Guillemont 91100 Villabé\"\n        }\n    ],\n    \"part_of_event_group\": false,\n    \"event_group\": null,\n    \"tickets\": [],\n    \"fees\": [\n        {\n            \"id\": 16377,\n            \"name\": \"Tarif  enfant, étudiants, demandeurs d'emploi avec 1 boisson\",\n            \"price\": 7\n        },\n        {\n            \"id\": 16376,\n            \"name\": \"Tarif  Adulte avec 1 boisson\",\n            \"price\": 10\n        }\n    ],\n    \"infos\": {\n        \"phone\": \"01 69 11 24 76\",\n        \"email\": \"fetes@mairie-villabe.fr\",\n        \"contact\": \"\",\n        \"website\": \"www.villabe.fr\",\n        \"social\": {\n            \"facebook\": \"facebook.com/mairie.villabe/\",\n            \"twitter\": \"\",\n            \"googleplus\": \"\",\n            \"instagram\": \"\",\n            \"linkedin\": \"\",\n            \"viadeo\": \"\",\n            \"flickr\": \"\",\n            \"youtube\": \"\",\n            \"dailymotion\": \"\",\n            \"vimeo\": \"\",\n            \"medium\": \"\",\n            \"rss\": \"\",\n            \"snapcode_svg\": \"\",\n            \"messenger\": \"\",\n            \"allocine\": \"\"\n        }\n    },\n    \"age_targeting\": null,\n    \"accessibility\": {\n        \"deaf_accessibility\": false,\n        \"blind_accessibility\": false,\n        \"motor_disabled_access\": true\n    },\n    \"news\": [],\n    \"contents\": {\n        \"images\": [\n            {\n                \"name\": \"Espace culturel La Villa\",\n                \"slug\": null,\n                \"alt\": \"Espace culturel La Villa\",\n                \"order\": 1,\n                \"description\": \"facebook.com/mairie.villabe/\",\n                \"copyright\": \"\",\n                \"image_small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/025/256/image_small/17240637_1324570917608247_281934905876372919_o.jpg?1518780712\",\n                \"image_small_dimensions\": \"400x300\",\n                \"image_medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/025/256/image_medium/17240637_1324570917608247_281934905876372919_o.jpg?1518780712\",\n                \"image_medium_dimensions\": \"800x601\",\n                \"image_large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/025/256/image_large/17240637_1324570917608247_281934905876372919_o.jpg?1518780712\",\n                \"image_large_dimensions\": \"1148x862\",\n                \"image_xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/025/256/image_xlarge/17240637_1324570917608247_281934905876372919_o.jpg?1518780712\",\n                \"image_xlarge_dimensions\": \"1148x862\"\n            },\n            {\n                \"name\": \"Groupe Profil Groove\",\n                \"slug\": null,\n                \"alt\": \"Groupe Profil Groove\",\n                \"order\": 1,\n                \"description\": \"facebook.com/profil.groove/\",\n                \"copyright\": \"mairiedevillabe\",\n                \"image_small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/025/255/image_small/17192517_1324572814274724_2630647352980037654_o.jpg?1518780712\",\n                \"image_small_dimensions\": \"400x300\",\n                \"image_medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/025/255/image_medium/17192517_1324572814274724_2630647352980037654_o.jpg?1518780712\",\n                \"image_medium_dimensions\": \"800x601\",\n                \"image_large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/025/255/image_large/17192517_1324572814274724_2630647352980037654_o.jpg?1518780712\",\n                \"image_large_dimensions\": \"1148x862\",\n                \"image_xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/025/255/image_xlarge/17192517_1324572814274724_2630647352980037654_o.jpg?1518780712\",\n                \"image_xlarge_dimensions\": \"1148x862\"\n            },\n            {\n                \"name\": \"Espace culturel la Villa\",\n                \"slug\": null,\n                \"alt\": \"Espace culturel la Villa\",\n                \"order\": 1,\n                \"description\": \"facebook.com/mairie.villabe/\",\n                \"copyright\": \"mairiedevillabe\",\n                \"image_small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/025/254/image_small/17192217_1324572644274741_5843508882522354382_o.jpg?1518780687\",\n                \"image_small_dimensions\": \"400x300\",\n                \"image_medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/025/254/image_medium/17192217_1324572644274741_5843508882522354382_o.jpg?1518780687\",\n                \"image_medium_dimensions\": \"800x601\",\n                \"image_large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/025/254/image_large/17192217_1324572644274741_5843508882522354382_o.jpg?1518780687\",\n                \"image_large_dimensions\": \"1148x862\",\n                \"image_xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/025/254/image_xlarge/17192217_1324572644274741_5843508882522354382_o.jpg?1518780687\",\n                \"image_xlarge_dimensions\": \"1148x862\"\n            },\n            {\n                \"name\": \"Groupe Profil Groove\",\n                \"slug\": null,\n                \"alt\": \"Groupe Profil Groove\",\n                \"order\": 1,\n                \"description\": \"facebook.com/profil.groove/\",\n                \"copyright\": \"mairiedevillabe\",\n                \"image_small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/025/253/image_small/15895563_1324571070941565_6143129734656288763_o.jpg?1518780687\",\n                \"image_small_dimensions\": \"400x300\",\n                \"image_medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/025/253/image_medium/15895563_1324571070941565_6143129734656288763_o.jpg?1518780687\",\n                \"image_medium_dimensions\": \"800x601\",\n                \"image_large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/025/253/image_large/15895563_1324571070941565_6143129734656288763_o.jpg?1518780687\",\n                \"image_large_dimensions\": \"1148x862\",\n                \"image_xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/025/253/image_xlarge/15895563_1324571070941565_6143129734656288763_o.jpg?1518780687\",\n                \"image_xlarge_dimensions\": \"1148x862\"\n            }\n        ],\n        \"documents\": [],\n        \"links\": [],\n        \"videos\": []\n    },\n    \"partners\": [],\n    \"pages\": []\n}"}],"_postman_id":"0beec065-4d54-4147-98c7-6c06b2280be9"},{"name":"Search","id":"22e2d88b-1d9f-4962-8d75-3d1e247fcf36","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v1/{{instance_id}}/events/?q=Sénart&size=10&page=1&marker=false&instances[]=2&types[]=Event&performers[]=Nakht&facilities[]=8&events[]=1&event_groups[]=1&news[]=1&projects[]=1&cities[]=7&etablissement_publics[]=1&departments[]=1&regions[]=1&skills[]=1&elects[]=1&bbox[]&event_types[]=Oeuvre d'art&themes[]=1&date[start]=1526054400&date[end]=1526083199&price[min]=10&price[max]=50&free_admission=true&accessibilities[]=has_deaf_accessibility","description":"<p>Endpoint de recherche des événements</p>\n","urlObject":{"path":["v1","{{instance_id}}","events",""],"host":["https://api.publidata.io"],"query":[{"description":{"content":"<p>Filtre textuel</p>\n","type":"text/plain"},"key":"q","value":"Sénart"},{"description":{"content":"<p>Nombre de résultats retournés (defaut: 10)</p>\n","type":"text/plain"},"key":"size","value":"10"},{"description":{"content":"<p>Pagination (defaut: 1)</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>Filtre booléen pour ne retourner que les locations (default: false)</p>\n","type":"text/plain"},"key":"marker","value":"false"},{"description":{"content":"<p>Filtre par instance (array d'id)</p>\n","type":"text/plain"},"key":"instances[]","value":"2"},{"description":{"content":"<p>Filtre par type d'objet (array de type parmi la liste suivante : News Event Facility Project City Epci Department Region EventGroup Skill Elect Performer Company NonProfit EtablissementPublic)</p>\n","type":"text/plain"},"key":"types[]","value":"Event"},{"description":{"content":"<p>Filtre par artiste lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"performers[]","value":"Nakht"},{"description":{"content":"<p>Filtre par équipement lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"facilities[]","value":"8"},{"description":{"content":"<p>Filtre par événement lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"events[]","value":"1"},{"description":{"content":"<p>Filtre par groupe d'événements lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"event_groups[]","value":"1"},{"description":{"content":"<p>Filtre par actualité liée (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"news[]","value":"1"},{"description":{"content":"<p>Filtre par projet lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"projects[]","value":"1"},{"description":{"content":"<p>Filtre par ville et location liées (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"cities[]","value":"7"},{"description":{"content":"<p>Filtre par établissement public lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"etablissement_publics[]","value":"1"},{"description":{"content":"<p>Filtre par departement lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"departments[]","value":"1"},{"description":{"content":"<p>Filtre par region liée (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"regions[]","value":"1"},{"description":{"content":"<p>Filtre par compétence liée (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"skills[]","value":"1"},{"description":{"content":"<p>Filtre par élu lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"elects[]","value":"1"},{"description":{"content":"<p>Filtre géographique (array de latitudes, longitudes dans l'ordre suivant minX, minY, maxX, maxY)</p>\n","type":"text/plain"},"key":"bbox[]","value":null},{"description":{"content":"<p>Filtre par type d'événement (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"event_types[]","value":"Oeuvre d'art"},{"description":{"content":"<p>Filtre par thème (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"themes[]","value":"1"},{"description":{"content":"<p>Filtre par date/heure de début (timestamp en seconde)</p>\n","type":"text/plain"},"key":"date[start]","value":"1526054400"},{"description":{"content":"<p>Filtre par date/heure de fin (timestamp en seconde)</p>\n","type":"text/plain"},"key":"date[end]","value":"1526083199"},{"description":{"content":"<p>Filtre de prix minimum</p>\n","type":"text/plain"},"key":"price[min]","value":"10"},{"description":{"content":"<p>Filtre de prix maximum</p>\n","type":"text/plain"},"key":"price[max]","value":"50"},{"description":{"content":"<p>Filtre de gratuité (boolean)</p>\n","type":"text/plain"},"key":"free_admission","value":"true"},{"description":{"content":"<p>Filtre d'accessibilité (array de string)</p>\n","type":"text/plain"},"key":"accessibilities[]","value":"has_deaf_accessibility"}],"variable":[]}},"response":[{"id":"a4ab5a4b-528b-4e2c-bf38-33bad373ea55","name":"Search events","originalRequest":{"method":"GET","header":[],"url":{"raw":"www.publidata.io/api/v1/events?q=&options[geo][top_left][lat]=49.05965195372349&options[geo][top_left][lon]=2.1371613664061897&options[geo][bottom_right][lat]=48.21570798955211&options[geo][bottom_right][lon]=2.7688752335936897&options[city]=Combs-la-Ville&options[paging][from]=0&options[event_types][]=Concert&options[dates][start_date]=1521812100000&options[dates][end_date]=1522499700000&options[instances][]=2","host":["www","publidata","io"],"path":["api","v1","events"],"query":[{"key":"q","value":"","description":"Recherche (full-text)"},{"key":"options[geo][top_left][lat]","value":"49.05965195372349","description":"Latitude coin supérieur gauche geo-box (lat)"},{"key":"options[geo][top_left][lon]","value":"2.1371613664061897","description":"Longitude coin supérieur gauche geo-box (lon)"},{"key":"options[geo][bottom_right][lat]","value":"48.21570798955211","description":"Latitude coin inférieur droit geo-box (lat)"},{"key":"options[geo][bottom_right][lon]","value":"2.7688752335936897","description":"Longitude coin inférieur droit geo-box (lon)"},{"key":"options[city]","value":"Combs-la-Ville","description":"Ville (full-text ou code postal)"},{"key":"options[paging][from]","value":"0","description":"Début de la pagination (integer)"},{"key":"options[event_types][]","value":"Concert","description":"Types d'événement (array de string)"},{"key":"options[dates][start_date]","value":"1521812100000","description":"Date de début (format timestamp unix 1508267068688)"},{"key":"options[dates][end_date]","value":"1522499700000","description":"Date de fin (format timestamp unix 1539803068688)"},{"key":"options[instances][]","value":"2"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"took\": 11,\n    \"timed_out\": false,\n    \"_shards\": {\n        \"total\": 1,\n        \"successful\": 1,\n        \"failed\": 0\n    },\n    \"hits\": {\n        \"total\": 2,\n        \"max_score\": 0.9812665,\n        \"hits\": [\n            {\n                \"_index\": \"events\",\n                \"_type\": \"event\",\n                \"_id\": \"3241\",\n                \"_score\": 0.9812665,\n                \"_source\": {\n                    \"id\": 3241,\n                    \"name\": \"Concert des orchestres\",\n                    \"slug\": \"concert-des-orchestres\",\n                    \"status\": \"published\",\n                    \"free_admission\": true,\n                    \"start_date\": \"2018-03-23T00:00:00.000+01:00\",\n                    \"end_date\": \"2018-03-23T00:00:00.000+01:00\",\n                    \"punchline\": \"Le vendredi 23 mars 2018 à 20h au Théâtre de la Coupole, les musiciens du Conservatoire Maurice Ohana de Combs-la-ville vous attendent pour leur rendez-vous annuel...\",\n                    \"blurb\": \"Cette soirée donne la possibilité à plusieurs formations orchestrales du conservatoire Maurice Ohana de se produire sur scène. \\r\\n\\r\\nProgramme musical éclectique et varié, ce concert  permet de vivre la musique ensemble et de la partager sans modération avec le public.\",\n                    \"linked_objects\": [\n                        {\n                            \"id\": 180,\n                            \"type\": \"Facility\",\n                            \"name\": \"La Coupole\"\n                        },\n                        {\n                            \"id\": 12,\n                            \"type\": \"City\",\n                            \"name\": \"Combs-la-Ville\"\n                        }\n                    ],\n                    \"cover_picture\": {\n                        \"id\": 22632,\n                        \"name\": \"image de couverture de Concert des orchestres\",\n                        \"alt\": \"image de couverture de Concert des orchestres\",\n                        \"description\": \"image de couverture de Concert des orchestres\",\n                        \"slug\": null,\n                        \"image_urls_as_json\": {\n                            \"image_original_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/632/original/open-uri20171002-4-1etqlbo?1506962457\",\n                            \"image_small_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/632/image_small/open-uri20171002-4-1etqlbo?1506962457\",\n                            \"image_medium_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/632/image_medium/open-uri20171002-4-1etqlbo?1506962457\",\n                            \"image_large_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/632/image_large/open-uri20171002-4-1etqlbo?1506962457\"\n                        }\n                    },\n                    \"instances\": [\n                        {\n                            \"id\": 2,\n                            \"slug\": \"portail-sortir-gps\"\n                        }\n                    ],\n                    \"event_type\": {\n                        \"id\": 13,\n                        \"name\": \"Concert\"\n                    },\n                    \"event_styles\": [\n                        {\n                            \"id\": 82,\n                            \"name\": \"World Music\"\n                        }\n                    ],\n                    \"event_dates\": [\n                        {\n                            \"id\": 37799,\n                            \"start_hour\": \"2000-01-01T20:00:00.000Z\",\n                            \"end_hour\": \"2000-01-01T22:00:00.000Z\",\n                            \"date\": \"2018-03-23T00:00:00.000+01:00\",\n                            \"sold_out\": false,\n                            \"start_date\": \"2018-03-23T20:00:00.000+00:00\",\n                            \"end_date\": \"2018-03-23T22:00:00.000+00:00\"\n                        }\n                    ],\n                    \"facilities\": [\n                        {\n                            \"id\": 180,\n                            \"name\": \"La Coupole\",\n                            \"slug\": \"la-coupole\",\n                            \"address\": \"Rue Jean François Millet, 77380 Combs-la-Ville, France\",\n                            \"location\": {\n                                \"lat\": 48.659695,\n                                \"lon\": 2.5662415\n                            }\n                        }\n                    ],\n                    \"locations\": [],\n                    \"fees\": [],\n                    \"tags\": [],\n                    \"pages\": [\n                        {\n                            \"id\": 7659,\n                            \"instance\": {\n                                \"id\": 2,\n                                \"slug\": \"portail-sortir-gps\"\n                            }\n                        }\n                    ]\n                }\n            },\n            {\n                \"_index\": \"events\",\n                \"_type\": \"event\",\n                \"_id\": \"3983\",\n                \"_score\": 0.9794048,\n                \"_source\": {\n                    \"id\": 3983,\n                    \"name\": \"Après-midi musicale: Claude Debussy\",\n                    \"slug\": \"apres-midi-musicale-claude-debussy\",\n                    \"status\": \"published\",\n                    \"free_admission\": true,\n                    \"start_date\": \"2018-03-24T00:00:00.000+01:00\",\n                    \"end_date\": \"2018-03-24T00:00:00.000+01:00\",\n                    \"punchline\": \"A l'occasion du centenaire de la mort de Claude Debussy, la media-ludothèque et le conservatoire Maurice Ohana vous invitent à une après-midi musical, le samedi 24 mars à partir de 15h30.\",\n                    \"blurb\": \"Claude Debussy (1862-1918) était un compositeur français. Pour célébrer son centenaire, nous vous invitons à un après-midi musical. Au programme, une conférence par Bruno Giner sur le compositeur à 15h30. \\r\\nPuis, à 18h, les élèves du conservatoire interpréteront une sélection d’œuvres de Claude Debussy.\",\n                    \"linked_objects\": [\n                        {\n                            \"id\": 42,\n                            \"type\": \"Facility\",\n                            \"name\": \"Médiathèque de Combs-la-Ville\"\n                        },\n                        {\n                            \"id\": 12,\n                            \"type\": \"City\",\n                            \"name\": \"Combs-la-Ville\"\n                        }\n                    ],\n                    \"cover_picture\": {\n                        \"id\": 24665,\n                        \"name\": \"image de couverture de Après-midi musicale: Claude Debussy\",\n                        \"alt\": \"image de couverture de Après-midi musicale: Claude Debussy\",\n                        \"description\": \"image de couverture de Après-midi musicale: Claude Debussy\",\n                        \"slug\": null,\n                        \"image_urls_as_json\": {\n                            \"image_original_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/665/original/Photo_23a_Claude_Debussy.jpg?1516441408\",\n                            \"image_small_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/665/image_small/Photo_23a_Claude_Debussy.jpg?1516441408\",\n                            \"image_medium_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/665/image_medium/Photo_23a_Claude_Debussy.jpg?1516441408\",\n                            \"image_large_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/665/image_large/Photo_23a_Claude_Debussy.jpg?1516441408\"\n                        }\n                    },\n                    \"instances\": [\n                        {\n                            \"id\": 2,\n                            \"slug\": \"portail-sortir-gps\"\n                        }\n                    ],\n                    \"event_type\": {\n                        \"id\": 13,\n                        \"name\": \"Concert\"\n                    },\n                    \"event_styles\": [\n                        {\n                            \"id\": 111,\n                            \"name\": \"Musique Classique\"\n                        }\n                    ],\n                    \"event_dates\": [\n                        {\n                            \"id\": 41100,\n                            \"start_hour\": \"2000-01-01T15:30:00.000Z\",\n                            \"end_hour\": \"2000-01-01T19:30:00.000Z\",\n                            \"date\": \"2018-03-24T00:00:00.000+01:00\",\n                            \"sold_out\": false,\n                            \"start_date\": \"2018-03-24T15:30:00.000+00:00\",\n                            \"end_date\": \"2018-03-24T19:30:00.000+00:00\"\n                        }\n                    ],\n                    \"facilities\": [\n                        {\n                            \"id\": 42,\n                            \"name\": \"Médiathèque de Combs-la-Ville\",\n                            \"slug\": \"mediatheque-de-combs-la-ville\",\n                            \"address\": \"Rue Jean François Millet, 77380 Combs-la-Ville, France\",\n                            \"location\": {\n                                \"lat\": 48.659695,\n                                \"lon\": 2.5662415\n                            }\n                        }\n                    ],\n                    \"locations\": [],\n                    \"fees\": [],\n                    \"accessibility\": {\n                        \"id\": 1766,\n                        \"deaf_lsf\": false,\n                        \"deaf_vision_based\": false,\n                        \"deaf_subtitle\": false,\n                        \"deaf_hearing_loop\": false,\n                        \"blind_audio_description\": false,\n                        \"blind_darkness_based\": false,\n                        \"blind_text_based\": false,\n                        \"blind_braille\": false,\n                        \"blind_large_print\": false,\n                        \"motor_disabled_access\": true,\n                        \"has_accessibility\": true,\n                        \"has_deaf_accessibility\": false,\n                        \"has_blind_accessibility\": false\n                    },\n                    \"tags\": [\n                        \"Culture\"\n                    ],\n                    \"pages\": [\n                        {\n                            \"id\": 8636,\n                            \"instance\": {\n                                \"id\": 2,\n                                \"slug\": \"portail-sortir-gps\"\n                            }\n                        }\n                    ]\n                }\n            }\n        ]\n    },\n    \"aggregations\": {\n        \"event_styles_terms_agg\": {\n            \"doc_count\": 2,\n            \"name\": {\n                \"doc_count_error_upper_bound\": 0,\n                \"sum_other_doc_count\": 0,\n                \"buckets\": [\n                    {\n                        \"key\": \"111\",\n                        \"doc_count\": 1,\n                        \"name\": {\n                            \"doc_count_error_upper_bound\": 0,\n                            \"sum_other_doc_count\": 0,\n                            \"buckets\": [\n                                {\n                                    \"key\": \"classique\",\n                                    \"doc_count\": 1\n                                },\n                                {\n                                    \"key\": \"musique\",\n                                    \"doc_count\": 1\n                                }\n                            ]\n                        }\n                    },\n                    {\n                        \"key\": \"82\",\n                        \"doc_count\": 1,\n                        \"name\": {\n                            \"doc_count_error_upper_bound\": 0,\n                            \"sum_other_doc_count\": 0,\n                            \"buckets\": [\n                                {\n                                    \"key\": \"music\",\n                                    \"doc_count\": 1\n                                },\n                                {\n                                    \"key\": \"world\",\n                                    \"doc_count\": 1\n                                }\n                            ]\n                        }\n                    }\n                ]\n            }\n        },\n        \"events\": {\n            \"doc_count\": 3838,\n            \"dates\": {\n                \"doc_count\": 11064,\n                \"this_month\": {\n                    \"doc_count\": 737,\n                    \"events\": {\n                        \"doc_count\": 278\n                    }\n                },\n                \"this_week_end\": {\n                    \"doc_count\": 81,\n                    \"events\": {\n                        \"doc_count\": 54\n                    }\n                },\n                \"past\": {\n                    \"doc_count\": 10070,\n                    \"events\": {\n                        \"doc_count\": 3132\n                    }\n                },\n                \"today\": {\n                    \"doc_count\": 34,\n                    \"events\": {\n                        \"doc_count\": 28\n                    }\n                },\n                \"tomorrow\": {\n                    \"doc_count\": 22,\n                    \"events\": {\n                        \"doc_count\": 19\n                    }\n                },\n                \"last_days\": {\n                    \"doc_count\": 133,\n                    \"events\": {\n                        \"doc_count\": 75\n                    }\n                },\n                \"upcoming\": {\n                    \"doc_count\": 1028,\n                    \"events\": {\n                        \"doc_count\": 390\n                    }\n                },\n                \"this_week\": {\n                    \"doc_count\": 197,\n                    \"events\": {\n                        \"doc_count\": 96\n                    }\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"22e2d88b-1d9f-4962-8d75-3d1e247fcf36"}],"id":"20539fb6-0361-408b-bc59-22820ff7a9b7","description":"<p>Endpoint d'API des événements</p>\n","_postman_id":"20539fb6-0361-408b-bc59-22820ff7a9b7"},{"name":"Groupes d'événements","item":[{"name":"Index","id":"b4b3432f-a56f-4fc4-8879-2662cce89908","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v1/{{instance_id}}/event_groups","description":"<p>Index des festivals</p>\n","urlObject":{"path":["v1","{{instance_id}}","event_groups"],"host":["https://api.publidata.io"],"query":[],"variable":[]}},"response":[{"id":"3b4b83dc-fbb2-4058-8f0f-24c85451bf64","name":"Index event groups","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"www.publidata.io/api/v1/portail-sortir-gps/event_groups"},"code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":"0","body":"{\n    \"slugs\": [\n        \"festival-de-jazz-de-corbeil-essonnes\",\n        \"la-fete-du-sport-de-combs-la-ville\",\n        \"journees-nationales-de-l-archeologie-a-grand-paris-sud\",\n        \"fete-de-la-musique-a-grand-paris-sud\",\n        \"festival-country-du-coudray-montceaux\",\n        \"le-we-des-incroyables-machines\",\n        \"festival-international-des-cinemas-numeriques\",\n        \"fete-de-la-musique-a-grand-paris-sud-bd8ea87e-d908-4d03-9e8c-631937a1c3d9\",\n        \"lamano-festival\",\n        \"le-14-juillet-a-grand-paris-sud\",\n        \"les-activites-d-ete-dans-les-mediatheques-de-grand-paris-sud\",\n        \"grand-paris-sud-plage\",\n        \"festival-villes-toiles\",\n        \"forum-des-associations-de-grand-paris-sud\",\n        \"journees-du-patrimoine-grand-paris-sud\",\n        \"reseau-des-mediatheques-grand-paris-sud-bulles-d-ailleurs\",\n        \"reseau-des-conservatoires-de-grand-paris-sud-programmation-2016-2017\",\n        \"fete-de-la-science-a-grand-paris-sud\",\n        \"festival-les-visites-guidees-de-l-office-de-tourisme-octobre-decembre-2017\",\n        \"les-rendez-vous-de-l-ethique-2016\",\n        \"les-ateliers-nomades-a-grand-paris-sud\",\n        \"festivites-de-noel-a-grand-paris-sud\",\n        \"festival-planete-sciences-a-ris-orangis-les-stages-de-fevrier\",\n        \"festival-les-visites-guidees-de-l-office-de-tourisme-fevrier-mars-2017\",\n        \"festival-29eme-festival-tintinnabule-chansons-pour-l-enfance\",\n        \"festival-les-couleurs-a-l-honneur\",\n        \"festival-le-grand-tournoi-des-mediatheques\",\n        \"festival-formation-permaculture-et-varietes-franciliennes\",\n        \"rencontres-sportives-marathon-de-senart-2017\",\n        \"journees-nationales-journee-internationale-des-droits-des-femmes-a-grand-paris-sud\",\n        \"journees-nationales-journees-des-arts-et-de-la-culture\",\n        \"festival-journee-astronomie-pour-tous\",\n        \"festival-festival-photographique-l-oeil-urbain\",\n        \"festival-les-activites-des-vacances-d-avril-au-fab-lab-de-planete-sciences\",\n        \"festival-fete-du-miroir-d-eau\",\n        \"festival-marathon-du-cinema\",\n        \"festival-le-mois-du-manga-a-combs-la-ville\",\n        \"festival-les-activites-nature-a-grand-paris-sud\",\n        \"festival-les-visites-guidees-de-l-office-de-tourisme-mai-et-juin-2017\",\n        \"festival-corbeil-essonnes-jazz-festival-2017\",\n        \"festival-les-fetes-de-la-musique-2017\",\n        \"festival-festival-wall-street-art\",\n        \"festival-fete-de-l-eau-2017\",\n        \"journees-nationales-la-8e-edition-des-journees-nationales-de-l-archeologie\",\n        \"festival-les-salles-de-spectacle-de-grand-paris-sud-vous-presentent-leur-programmation-2017-2018\",\n        \"journees-nationales-celebrer-la-fete-nationale-a-grand-paris-sud\",\n        \"rencontres-sportives-agglo-fun-tour\",\n        \"festival-forum-des-associations-2017\",\n        \"festival-les-rendez-vous-de-l-ete\",\n        \"journees-nationales-les-journees-europeennes-du-patrimoine-a-grand-paris-sud\",\n        \"festival-fete-de-l-eau\",\n        \"journees-nationales-patrimoine-go\",\n        \"festival-fete-de-la-foret\",\n        \"festival-repair-cafe-2017-2018-a-grand-paris-sud\",\n        \"rencontres-sportives-saison-2017-2018-a-domicile-de-l-equipe-feminine-n3-senior-de-senart-basket\",\n        \"rencontres-sportives-saison-2017-2018-a-domicile-de-l-equipe-masculine-f2-seniors-de-l-usro-rugby\",\n        \"rencontres-sportives-foot-ball-saison-2017-2018-a-domicile-de-l-equipe-masculine-n3-de-senart-moissy\",\n        \"festival-jardin-des-neiges-a-la-patinoire-francois-le-comte-saison-2017-2018\",\n        \"festival-fete-de-la-science-avec-planete-sciences-a-ris-orangis\",\n        \"festival-patinoire-francois-le-comte-agora-programmation-ados-adultes-2017-2018\",\n        \"festival-festival-les-traversees\",\n        \"journees-nationales-la-fete-de-la-science-2017\",\n        \"festival-a-vos-arts-prets-partez\",\n        \"festival-festival-cinema-d-animation\",\n        \"rencontres-sportives-badminton-n2-saison-2017-2018-a-domicile-de-senart-badminton\",\n        \"rencontres-sportives-hockey-sur-glace-d2-saison-2017-2018-des-evh-91-a-la-patinoire-francois-le-comte-d-evry\",\n        \"rencontres-sportives-marathon-et-10km-de-senart-grand-paris-sud-2018\",\n        \"festival-halloween-a-grand-paris-sud\",\n        \"festival-cycle-polar-en-seine\",\n        \"festival-ateliers-nomades-escale-en-amerique-latine\",\n        \"festival-des-rendez-vous-d-exception-pour-le-telethon-2017\",\n        \"festival-les-ateliers-nomades\",\n        \"festival-2eme-ecofestival-du-cinema\",\n        \"journees-nationales-nuit-de-la-lecture\",\n        \"festival-grainotheque-a-combs-la-ville\",\n        \"journees-nationales-quinzaine-du-jeu-a-combs-la-ville\",\n        \"festival-festival-celte\",\n        \"festival-cine-club-de-l-agora-special-hollywood\",\n        \"festival-les-ateliers-creatifs-du-reseau-des-mediatheques-de-grand-paris-sud\",\n        \"festival-les-heures-des-bebes\",\n        \"les-cafe-cultures-du-reseau-des-mediatheques-de-grand-paris-sud\",\n        \"festival-les-game-party-dans-vos-mediatheques\",\n        \"l-atelier-musical-du-reseau-des-mediatheques-de-grand-paris-sud\",\n        \"festival-les-ateliers-d-ecriture-de-la-mediatheque-de-l-agora\",\n        \"festival-les-seances-de-cafe-cine-dans-vos-mediatheques\",\n        \"festival-les-cine-momes-dans-vos-mediatheques\",\n        \"festival-les-mardis-pop\",\n        \"festival-les-ateliers-numeriques\",\n        \"festival-les-visites-guidee-de-l-office-de-tourisme-seine-essonne-mars-juillet\",\n        \"festival-les-soleils-de-grand-paris-sud\",\n        \"journees-nationales-journee-internationale-des-droits-des-femmes-a-evry\",\n        \"festival-tintinnabule-festival-des-chansons-pour-l-enfance\",\n        \"journees-nationales-semaine-de-l-egalite-femmes-hommes-a-savigny-le-temple\"\n    ]\n}"}],"_postman_id":"b4b3432f-a56f-4fc4-8879-2662cce89908"},{"name":"Show","id":"6ae74696-4afa-4fbd-920c-5cb535833bce","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v1/{{instance_id}}/event_groups/{{event_group_id}}","description":"<p>Show d'un festival</p>\n","urlObject":{"path":["v1","{{instance_id}}","event_groups","{{event_group_id}}"],"host":["https://api.publidata.io"],"query":[],"variable":[]}},"response":[{"id":"debdbe02-05e9-4ee0-ad20-3a6d56017350","name":"Show event group","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"publidata.io/api/v1/portail-sortir-gps/event_groups/4"},"code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 4,\n    \"name\": \"Corbeil-Essonnes Jazz Festival\",\n    \"slug\": \"festival-de-jazz-de-corbeil-essonnes\",\n    \"punchline\": \"La 17e édition du Corbeil-Essonnes Jazz Festival débute dès le 21 juin. À l’affiche, les plus grands noms du jazz seront convoqués, mais aussi les plus dingues...!\",\n    \"blurb\": \"Du 21 juin au 3 juillet (avec un clin d’oeil pour la fête de la Musique en avant-première), le jazz revient battre le pavé des allées fleuries du parc Chantemerle pour huit concerts gratuits et beaucoup d’autres rendez-vous musicaux ! Sur la grande scène, le swing du quartet de Samy Daussat rend hommage à l’immense Django\\r\\nReinhardt. Puis, le groupe Mellino, deux musiciens issus des Négresses vertes, vous emmène plein sud dans leurs bagages, avant de vous confier entre les mains expertes d’Archie Shepp, légende vivante du saxophone, compositeur, poète et dramaturge. Suivront encore Irakli et les Louis Ambassadors, les Dixies Dingues…\",\n    \"cancelled\": false,\n    \"cancellation_reason\": null,\n    \"free_admission\": true,\n    \"free_admission_condition\": \"\",\n    \"events_count\": 10,\n    \"start_date\": \"21-06-2016\",\n    \"raw_start_date\": \"2016-06-21T20:00:00.000+00:00\",\n    \"end_date\": \"03-07-2016\",\n    \"raw_end_date\": \"2016-07-03T17:11:00.000+02:00\",\n    \"type\": {\n        \"id\": 1,\n        \"name\": \"Festival\",\n        \"created_at\": \"2016-06-03T15:05:13.535+02:00\",\n        \"updated_at\": \"2016-06-03T15:05:13.535+02:00\"\n    },\n    \"tickets\": [],\n    \"fees\": [],\n    \"infos\": {\n        \"phone\": null,\n        \"email\": \"\",\n        \"contact\": \"\",\n        \"website\": \"http://www.corbeilessonnesjazzfestival.com\",\n        \"social\": {\n            \"facebook\": \"https://www.facebook.com/corbeilessonnesjazzfestival\",\n            \"twitter\": \"\",\n            \"googleplus\": \"\",\n            \"instagram\": \"\",\n            \"linkedin\": \"\",\n            \"viadeo\": \"\",\n            \"flickr\": \"\",\n            \"youtube\": \"https://www.youtube.com/channel/UCZJ5q_0qDyhEKkkj-GJtt_g\",\n            \"dailymotion\": \"\",\n            \"vimeo\": \"\",\n            \"medium\": \"\",\n            \"rss\": \"\",\n            \"snapcode_svg\": \"\",\n            \"messenger\": null,\n            \"allocine\": null\n        }\n    },\n    \"contents\": {\n        \"images\": [],\n        \"documents\": [],\n        \"links\": [],\n        \"videos\": []\n    },\n    \"cover_picture\": {\n        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/002/662/cover_small/festival-jazz-corbeil-essonnes.png?1465459100\",\n        \"small_dimensions\": \"300x164\",\n        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/002/662/cover_medium/festival-jazz-corbeil-essonnes.png?1465459100\",\n        \"medium_dimensions\": \"600x328\",\n        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/002/662/cover_large/festival-jazz-corbeil-essonnes.png?1465459100\",\n        \"large_dimensions\": \"1000x547\",\n        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/002/662/cover_xlarge/festival-jazz-corbeil-essonnes.png?1465459100\",\n        \"xlarge_dimensions\": \"1280x700\",\n        \"alt\": \"image de couverture de Corbeil-Essonnes Jazz Festival\",\n        \"name\": \"image de couverture de Corbeil-Essonnes Jazz Festival\",\n        \"slug\": \"image-de-couverture-de-corbeil-essonnes-jazz-festival\",\n        \"description\": \"image de couverture de Corbeil-Essonnes Jazz Festival\",\n        \"copyright\": \"\"\n    },\n    \"events\": [\n        {\n            \"id\": 583,\n            \"slug\": \"concert-de-cloture-hommage-a-franck-sinatra-par-austin-o-brien-quintet-et-wendy-lee-taylor\"\n        },\n        {\n            \"id\": 581,\n            \"slug\": \"les-dixies-dingues\"\n        },\n        {\n            \"id\": 580,\n            \"slug\": \"manu-lanvin-and-the-devil-blues\"\n        },\n        {\n            \"id\": 579,\n            \"slug\": \"hommage-a-louis-armstrong-par-irakli-et-les-louis-ambassadors\"\n        },\n        {\n            \"id\": 578,\n            \"slug\": \"archie-shepp\"\n        },\n        {\n            \"id\": 582,\n            \"slug\": \"hommage-a-lionel-hampton\"\n        },\n        {\n            \"id\": 577,\n            \"slug\": \"mellino\"\n        },\n        {\n            \"id\": 576,\n            \"slug\": \"hommage-a-django-reinhardt-par-samy-daussat-quartet\"\n        },\n        {\n            \"id\": 502,\n            \"slug\": \"festival-de-jazz-bird\"\n        },\n        {\n            \"id\": 501,\n            \"slug\": \"festival-de-jazz-ray\"\n        }\n    ],\n    \"partners\": [],\n    \"pages\": []\n}"}],"_postman_id":"6ae74696-4afa-4fbd-920c-5cb535833bce"},{"name":"Search","id":"3367b593-58d5-43cf-88d9-7efbc26d656b","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v1/{{instance_id}}/event_groups?q&size=10&page=1&marker=false&instances[]=2&performers[]=Nakht&facilities[]=8&events[]=1&event_groups[]=1&news[]=1&projects[]=1&cities[]=7&departments[]=1&regions[]=1&skills[]=1&elects[]=1&epcis[]=1&bbox[]&themes[]=1","description":"<p>Index des projets</p>\n","urlObject":{"path":["v1","{{instance_id}}","event_groups"],"host":["https://api.publidata.io"],"query":[{"key":"q","value":null},{"key":"size","value":"10"},{"key":"page","value":"1"},{"key":"marker","value":"false"},{"key":"instances[]","value":"2"},{"key":"performers[]","value":"Nakht"},{"key":"facilities[]","value":"8"},{"key":"events[]","value":"1"},{"key":"event_groups[]","value":"1"},{"key":"news[]","value":"1"},{"key":"projects[]","value":"1"},{"key":"cities[]","value":"7"},{"key":"departments[]","value":"1"},{"key":"regions[]","value":"1"},{"key":"skills[]","value":"1"},{"key":"elects[]","value":"1"},{"key":"epcis[]","value":"1"},{"key":"bbox[]","value":null},{"key":"themes[]","value":"1"}],"variable":[]}},"response":[{"id":"961e13a8-8685-4213-a1e2-b4dd1124bd74","name":"Index projects","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"publidata.io/api/v1/portail-projets-gps/projects"},"code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"projects\": [\n        {\n            \"id\": 2,\n            \"name\": \"Projet de territoire\",\n            \"slug\": \"projet-de-territoire\",\n            \"start_date\": \"2016-05-01T00:00:00.000+02:00\",\n            \"end_date\": \"2017-12-31T00:00:00.000+01:00\",\n            \"cover_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/006/651/cover_small/bandeau-projet-territoire-grandparissud.jpg?1513613827\",\n                \"small_dimensions\": \"300x70\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/006/651/cover_medium/bandeau-projet-territoire-grandparissud.jpg?1513613827\",\n                \"medium_dimensions\": \"600x140\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/006/651/cover_large/bandeau-projet-territoire-grandparissud.jpg?1513613827\",\n                \"large_dimensions\": \"1000x233\",\n                \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/006/651/cover_xlarge/bandeau-projet-territoire-grandparissud.jpg?1513613827\",\n                \"xlarge_dimensions\": \"1596x372\",\n                \"alt\": \"image de couverture de Projet de territoire\",\n                \"name\": \"image de couverture de Projet de territoire\",\n                \"slug\": \"image-de-couverture-de-projet-de-territoire-9832a840-c61d-4102-9bbe-a81ee34914fb\",\n                \"description\": \"image de couverture de Projet de territoire\",\n                \"copyright\": \"agglomération Grand Paris Sud\"\n            },\n            \"pages\": [\n                {\n                    \"id\": 1321,\n                    \"instance\": {\n                        \"slug\": \"portail-projets-gps\"\n                    }\n                },\n                {\n                    \"id\": 8381,\n                    \"instance\": {\n                        \"slug\": \"portail-projets-gps\"\n                    }\n                }\n            ],\n            \"sub_projects\": [\n                {\n                    \"id\": 3,\n                    \"name\": \"Concertation élus communautaires \",\n                    \"slug\": \"concertation-elus-communautaires\",\n                    \"start_date\": \"2016-05-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2016-10-15T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/087/cover_small/seminaire-elus-grand-paris-sud%281%29samedi_12_mai.JPG?1473715424\",\n                        \"small_dimensions\": \"300x200\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/087/cover_medium/seminaire-elus-grand-paris-sud%281%29samedi_12_mai.JPG?1473715424\",\n                        \"medium_dimensions\": \"600x400\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/087/cover_large/seminaire-elus-grand-paris-sud%281%29samedi_12_mai.JPG?1473715424\",\n                        \"large_dimensions\": \"1000x667\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/087/cover_xlarge/seminaire-elus-grand-paris-sud%281%29samedi_12_mai.JPG?1473715424\",\n                        \"xlarge_dimensions\": \"1280x854\",\n                        \"alt\": \"image de couverture de Concertation élus communautaires \",\n                        \"name\": \"image de couverture de Concertation élus communautaires \",\n                        \"slug\": \"image-de-couverture-de-concertation-elus-communautaires\",\n                        \"description\": \"image de couverture de Concertation élus communautaires \",\n                        \"copyright\": \"agglomération Grand Paris Sud\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 1322,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 4,\n                    \"name\": \"Concertation élus municipaux\",\n                    \"slug\": \"concertation-elus-municipaux\",\n                    \"start_date\": \"2016-05-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2016-06-30T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/075/cover_small/seminaire-elus-municipaux-grand-paris-sud_%282%29.JPG?1473715036\",\n                        \"small_dimensions\": \"300x200\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/075/cover_medium/seminaire-elus-municipaux-grand-paris-sud_%282%29.JPG?1473715036\",\n                        \"medium_dimensions\": \"600x400\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/075/cover_large/seminaire-elus-municipaux-grand-paris-sud_%282%29.JPG?1473715036\",\n                        \"large_dimensions\": \"1000x666\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/075/cover_xlarge/seminaire-elus-municipaux-grand-paris-sud_%282%29.JPG?1473715036\",\n                        \"xlarge_dimensions\": \"1280x853\",\n                        \"alt\": \"image de couverture de Concertation élus municipaux\",\n                        \"name\": \"image de couverture de Concertation élus municipaux\",\n                        \"slug\": \"image-de-couverture-de-concertation-elus-municipaux\",\n                        \"description\": \"image de couverture de Concertation élus municipaux\",\n                        \"copyright\": \"agglomération Grand Paris Sud\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 1323,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 5,\n                    \"name\": \"Concertation partenaires et associations\",\n                    \"slug\": \"concertation-partenaires-et-associations\",\n                    \"start_date\": \"2016-06-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2016-09-30T00:00:00.000+02:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 1332,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 6,\n                    \"name\": \"Concertation agents\",\n                    \"slug\": \"concertation-agents\",\n                    \"start_date\": \"2016-07-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2016-08-31T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/057/cover_small/projet-territoire-grand-paris-sud-personnel_%282%29_jeudi_21_juillet.jpg?1473713810\",\n                        \"small_dimensions\": \"300x168\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/057/cover_medium/projet-territoire-grand-paris-sud-personnel_%282%29_jeudi_21_juillet.jpg?1473713810\",\n                        \"medium_dimensions\": \"600x336\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/057/cover_large/projet-territoire-grand-paris-sud-personnel_%282%29_jeudi_21_juillet.jpg?1473713810\",\n                        \"large_dimensions\": \"1000x560\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/057/cover_xlarge/projet-territoire-grand-paris-sud-personnel_%282%29_jeudi_21_juillet.jpg?1473713810\",\n                        \"xlarge_dimensions\": \"1280x717\",\n                        \"alt\": \"image de couverture de Concertation agents\",\n                        \"name\": \"image de couverture de Concertation agents\",\n                        \"slug\": \"image-de-couverture-de-concertation-agents\",\n                        \"description\": \"image de couverture de Concertation agents\",\n                        \"copyright\": \"agglomération Grand Paris Sud\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 1328,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 17,\n                    \"name\": \"Concertation CME et CJ\",\n                    \"slug\": \"concertation-cme-et-cj\",\n                    \"start_date\": \"2016-07-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2016-10-15T00:00:00.000+02:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 1408,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 7,\n                    \"name\": \"Concertation des habitants\",\n                    \"slug\": \"concertation-des-habitants\",\n                    \"start_date\": \"2016-09-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2016-11-15T00:00:00.000+01:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 1329,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 8,\n                    \"name\": \"Synthèse de la concertation\",\n                    \"slug\": \"synthese-de-la-concertation\",\n                    \"start_date\": \"2016-10-16T00:00:00.000+02:00\",\n                    \"end_date\": \"2017-03-30T00:00:00.000+02:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 1330,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 9,\n                    \"name\": \"Adoption du projet de territoire\",\n                    \"slug\": \"adoption-du-projet-de-territoire\",\n                    \"start_date\": \"2017-06-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2017-06-30T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/894/cover_small/adoption-projet-territoire-grandparissud.jpg?1474447897\",\n                        \"small_dimensions\": \"300x200\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/894/cover_medium/adoption-projet-territoire-grandparissud.jpg?1474447897\",\n                        \"medium_dimensions\": \"600x400\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/894/cover_large/adoption-projet-territoire-grandparissud.jpg?1474447897\",\n                        \"large_dimensions\": \"1000x667\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/894/cover_xlarge/adoption-projet-territoire-grandparissud.jpg?1474447897\",\n                        \"xlarge_dimensions\": \"2000x1333\",\n                        \"alt\": \"image de couverture de Adoption du projet de territoire\",\n                        \"name\": \"image de couverture de Adoption du projet de territoire\",\n                        \"slug\": \"image-de-couverture-de-adoption-du-projet-de-territoire\",\n                        \"description\": \"image de couverture de Adoption du projet de territoire\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 1331,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                }\n            ]\n        },\n        {\n            \"id\": 26,\n            \"name\": \"Tram 12 express / Requalification du Bois Briard\",\n            \"slug\": \"tram-12-express-requalification-du-bois-briard\",\n            \"start_date\": \"2015-04-01T00:00:00.000+02:00\",\n            \"end_date\": \"2020-06-30T00:00:00.000+02:00\",\n            \"cover_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/168/cover_small/Perspective-tram12.png?1487925596\",\n                \"small_dimensions\": \"300x178\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/168/cover_medium/Perspective-tram12.png?1487925596\",\n                \"medium_dimensions\": \"600x356\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/168/cover_large/Perspective-tram12.png?1487925596\",\n                \"large_dimensions\": \"1000x593\",\n                \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/168/cover_xlarge/Perspective-tram12.png?1487925596\",\n                \"xlarge_dimensions\": \"2000x1186\",\n                \"alt\": \"image de couverture de Tram 12 express / Requalification du Bois Briard\",\n                \"name\": \"image de couverture de Tram 12 express / Requalification du Bois Briard\",\n                \"slug\": \"image-de-couverture-de-tram-12-express-requalification-du-bois-briard\",\n                \"description\": \"image de couverture de Tram 12 express / Requalification du Bois Briard\",\n                \"copyright\": \"\"\n            },\n            \"pages\": [\n                {\n                    \"id\": 4030,\n                    \"instance\": {\n                        \"slug\": \"portail-projets-gps\"\n                    }\n                }\n            ],\n            \"sub_projects\": [\n                {\n                    \"id\": 27,\n                    \"name\": \"Concertation préalable requalification RD 446\",\n                    \"slug\": \"concertation-prealable-requalification-rd-446\",\n                    \"start_date\": \"2015-04-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2015-10-01T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/302/cover_small/Perspective-tram12.png?1488205439\",\n                        \"small_dimensions\": \"300x178\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/302/cover_medium/Perspective-tram12.png?1488205439\",\n                        \"medium_dimensions\": \"600x356\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/302/cover_large/Perspective-tram12.png?1488205439\",\n                        \"large_dimensions\": \"1000x593\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/302/cover_xlarge/Perspective-tram12.png?1488205439\",\n                        \"xlarge_dimensions\": \"2000x1186\",\n                        \"alt\": \"image de couverture de Concertation préalable requalification RD 446\",\n                        \"name\": \"image de couverture de Concertation préalable requalification RD 446\",\n                        \"slug\": \"image-de-couverture-de-concertation-prealable-requalification-rd-446\",\n                        \"description\": \"image de couverture de Concertation préalable requalification RD 446\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 4069,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 28,\n                    \"name\": \"Enquête publique\",\n                    \"slug\": \"enquete-publique\",\n                    \"start_date\": \"2016-02-01T00:00:00.000+01:00\",\n                    \"end_date\": \"2016-07-02T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/312/cover_small/Perspective-tram12.png?1488201990\",\n                        \"small_dimensions\": \"300x178\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/312/cover_medium/Perspective-tram12.png?1488201990\",\n                        \"medium_dimensions\": \"600x356\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/312/cover_large/Perspective-tram12.png?1488201990\",\n                        \"large_dimensions\": \"1000x593\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/312/cover_xlarge/Perspective-tram12.png?1488201990\",\n                        \"xlarge_dimensions\": \"2000x1186\",\n                        \"alt\": \"image de couverture de Enquête publique\",\n                        \"name\": \"image de couverture de Enquête publique\",\n                        \"slug\": \"image-de-couverture-de-enquete-publique\",\n                        \"description\": \"image de couverture de Enquête publique\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 4033,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 29,\n                    \"name\": \"Réunion publique \",\n                    \"slug\": \"reunion-publique\",\n                    \"start_date\": \"2016-11-29T00:00:00.000+01:00\",\n                    \"end_date\": \"2016-11-29T00:00:00.000+01:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/307/cover_small/ANL_5670.jpg?1488201053\",\n                        \"small_dimensions\": \"300x200\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/307/cover_medium/ANL_5670.jpg?1488201053\",\n                        \"medium_dimensions\": \"600x399\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/307/cover_large/ANL_5670.jpg?1488201053\",\n                        \"large_dimensions\": \"1000x666\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/307/cover_xlarge/ANL_5670.jpg?1488201053\",\n                        \"xlarge_dimensions\": \"2000x1331\",\n                        \"alt\": \"image de couverture de Réunion publique \",\n                        \"name\": \"image de couverture de Réunion publique \",\n                        \"slug\": \"image-de-couverture-de-reunion-publique\",\n                        \"description\": \"image de couverture de Réunion publique \",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 4036,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 30,\n                    \"name\": \"Travaux de déboisage \",\n                    \"slug\": \"travaux-de-deboisage\",\n                    \"start_date\": \"2017-02-27T00:00:00.000+01:00\",\n                    \"end_date\": \"2017-03-05T00:00:00.000+01:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/303/cover_small/N.446_DSC3739.jpg?1488200468\",\n                        \"small_dimensions\": \"300x200\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/303/cover_medium/N.446_DSC3739.jpg?1488200468\",\n                        \"medium_dimensions\": \"600x400\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/303/cover_large/N.446_DSC3739.jpg?1488200468\",\n                        \"large_dimensions\": \"1000x667\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/303/cover_xlarge/N.446_DSC3739.jpg?1488200468\",\n                        \"xlarge_dimensions\": \"2000x1335\",\n                        \"alt\": \"image de couverture de Travaux de déboisage \",\n                        \"name\": \"image de couverture de Travaux de déboisage \",\n                        \"slug\": \"image-de-couverture-de-travaux-de-deboisage\",\n                        \"description\": \"image de couverture de Travaux de déboisage \",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 4039,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 31,\n                    \"name\": \"Travaux préparatoires\",\n                    \"slug\": \"travaux-preparatoires\",\n                    \"start_date\": \"2017-03-06T00:00:00.000+01:00\",\n                    \"end_date\": \"2017-03-12T00:00:00.000+01:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/308/cover_small/Am%C3%A9nagement_du_secteur_Delouvrier.png?1488201549\",\n                        \"small_dimensions\": \"300x159\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/308/cover_medium/Am%C3%A9nagement_du_secteur_Delouvrier.png?1488201549\",\n                        \"medium_dimensions\": \"600x318\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/308/cover_large/Am%C3%A9nagement_du_secteur_Delouvrier.png?1488201549\",\n                        \"large_dimensions\": \"1000x529\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/308/cover_xlarge/Am%C3%A9nagement_du_secteur_Delouvrier.png?1488201549\",\n                        \"xlarge_dimensions\": \"2000x1059\",\n                        \"alt\": \"image de couverture de Travaux préparatoires\",\n                        \"name\": \"image de couverture de Travaux préparatoires\",\n                        \"slug\": \"image-de-couverture-de-travaux-preparatoires\",\n                        \"description\": \"image de couverture de Travaux préparatoires\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 4042,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 32,\n                    \"name\": \"Fermeture de l’échangeur Delouvrier\",\n                    \"slug\": \"fermeture-de-l-echangeur-delouvrier\",\n                    \"start_date\": \"2017-03-21T00:00:00.000+01:00\",\n                    \"end_date\": \"2018-06-30T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/299/cover_small/Perspective-_-carrefour_-Delouvrier.jpg?1488199631\",\n                        \"small_dimensions\": \"300x169\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/299/cover_medium/Perspective-_-carrefour_-Delouvrier.jpg?1488199631\",\n                        \"medium_dimensions\": \"600x338\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/299/cover_large/Perspective-_-carrefour_-Delouvrier.jpg?1488199631\",\n                        \"large_dimensions\": \"1000x563\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/299/cover_xlarge/Perspective-_-carrefour_-Delouvrier.jpg?1488199631\",\n                        \"xlarge_dimensions\": \"1210x681\",\n                        \"alt\": \"image de couverture de Fermeture de l’échangeur Delouvrier\",\n                        \"name\": \"image de couverture de Fermeture de l’échangeur Delouvrier\",\n                        \"slug\": \"image-de-couverture-de-fermeture-de-l-echangeur-delouvrier\",\n                        \"description\": \"image de couverture de Fermeture de l’échangeur Delouvrier\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 4026,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 33,\n                    \"name\": \"Requalification de la RD 446\",\n                    \"slug\": \"requalification-de-la-rd-446\",\n                    \"start_date\": \"2017-03-13T00:00:00.000+01:00\",\n                    \"end_date\": \"2018-08-31T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/304/cover_small/carte-travaux-delouvrier-grandparissud.PNG?1490690689\",\n                        \"small_dimensions\": \"300x159\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/304/cover_medium/carte-travaux-delouvrier-grandparissud.PNG?1490690689\",\n                        \"medium_dimensions\": \"600x317\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/304/cover_large/carte-travaux-delouvrier-grandparissud.PNG?1490690689\",\n                        \"large_dimensions\": \"1000x529\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/304/cover_xlarge/carte-travaux-delouvrier-grandparissud.PNG?1490690689\",\n                        \"xlarge_dimensions\": \"1190x629\",\n                        \"alt\": \"image de couverture de Requalification de la RD 446\",\n                        \"name\": \"image de couverture de Requalification de la RD 446\",\n                        \"slug\": \"image-de-couverture-de-requalification-de-la-rd-446\",\n                        \"description\": \"image de couverture de Requalification de la RD 446\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 4045,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 34,\n                    \"name\": \"Début des travaux Tram 12 express\",\n                    \"slug\": \"debut-des-travaux-tram-12-express\",\n                    \"start_date\": \"2018-01-03T00:00:00.000+01:00\",\n                    \"end_date\": \"2018-07-01T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/298/cover_small/Perspective-Evry.png?1488199442\",\n                        \"small_dimensions\": \"300x178\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/298/cover_medium/Perspective-Evry.png?1488199442\",\n                        \"medium_dimensions\": \"600x356\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/298/cover_large/Perspective-Evry.png?1488199442\",\n                        \"large_dimensions\": \"1000x593\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/298/cover_xlarge/Perspective-Evry.png?1488199442\",\n                        \"xlarge_dimensions\": \"1999x1186\",\n                        \"alt\": \"image de couverture de Début des travaux Tram 12 express\",\n                        \"name\": \"image de couverture de Début des travaux Tram 12 express\",\n                        \"slug\": \"image-de-couverture-de-debut-des-travaux-tram-12-express\",\n                        \"description\": \"image de couverture de Début des travaux Tram 12 express\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 4048,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 35,\n                    \"name\": \"Ouverture boulevard urbain\",\n                    \"slug\": \"ouverture-boulevard-urbain\",\n                    \"start_date\": \"2018-07-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2019-06-30T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/305/cover_small/Perspective-Evry.png?1488200796\",\n                        \"small_dimensions\": \"300x178\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/305/cover_medium/Perspective-Evry.png?1488200796\",\n                        \"medium_dimensions\": \"600x356\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/305/cover_large/Perspective-Evry.png?1488200796\",\n                        \"large_dimensions\": \"1000x593\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/305/cover_xlarge/Perspective-Evry.png?1488200796\",\n                        \"xlarge_dimensions\": \"1999x1186\",\n                        \"alt\": \"image de couverture de Ouverture boulevard urbain\",\n                        \"name\": \"image de couverture de Ouverture boulevard urbain\",\n                        \"slug\": \"image-de-couverture-de-ouverture-boulevard-urbain\",\n                        \"description\": \"image de couverture de Ouverture boulevard urbain\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 4051,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 36,\n                    \"name\": \"Fin des travaux d'aménagement\",\n                    \"slug\": \"fin-des-travaux-d-amenagement\",\n                    \"start_date\": \"2019-07-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2020-06-30T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/306/cover_small/Perspective-tram12.png?1488200844\",\n                        \"small_dimensions\": \"300x178\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/306/cover_medium/Perspective-tram12.png?1488200844\",\n                        \"medium_dimensions\": \"600x356\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/306/cover_large/Perspective-tram12.png?1488200844\",\n                        \"large_dimensions\": \"1000x593\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/306/cover_xlarge/Perspective-tram12.png?1488200844\",\n                        \"xlarge_dimensions\": \"2000x1186\",\n                        \"alt\": \"image de couverture de Fin des travaux d'aménagement\",\n                        \"name\": \"image de couverture de Fin des travaux d'aménagement\",\n                        \"slug\": \"image-de-couverture-de-fin-des-travaux-d-amenagement\",\n                        \"description\": \"image de couverture de Fin des travaux d'aménagement\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 4054,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                }\n            ]\n        },\n        {\n            \"id\": 41,\n            \"name\": \"T Zen 4 \",\n            \"slug\": \"t-zen-4\",\n            \"start_date\": \"2016-05-30T00:00:00.000+02:00\",\n            \"end_date\": \"2020-12-31T00:00:00.000+01:00\",\n            \"cover_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/547/cover_small/1-voies-reservees_priorite-aux-feux.jpg?1488460827\",\n                \"small_dimensions\": \"300x168\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/547/cover_medium/1-voies-reservees_priorite-aux-feux.jpg?1488460827\",\n                \"medium_dimensions\": \"600x337\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/547/cover_large/1-voies-reservees_priorite-aux-feux.jpg?1488460827\",\n                \"large_dimensions\": \"900x505\",\n                \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/547/cover_xlarge/1-voies-reservees_priorite-aux-feux.jpg?1488460827\",\n                \"xlarge_dimensions\": \"900x505\",\n                \"alt\": \"image de couverture de T Zen 4 \",\n                \"name\": \"image de couverture de T Zen 4 \",\n                \"slug\": \"image-de-couverture-de-t-zen-4\",\n                \"description\": \"image de couverture de T Zen 4 \",\n                \"copyright\": \"\"\n            },\n            \"pages\": [\n                {\n                    \"id\": 4163,\n                    \"instance\": {\n                        \"slug\": \"portail-projets-gps\"\n                    }\n                }\n            ],\n            \"sub_projects\": [\n                {\n                    \"id\": 42,\n                    \"name\": \"Enquête publique\",\n                    \"slug\": \"enquete-publique-ae33dafd-8be2-48ec-a581-d325aeb364bf\",\n                    \"start_date\": \"2016-05-30T00:00:00.000+02:00\",\n                    \"end_date\": \"2016-07-04T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/558/cover_small/3-station-confortable-accessible.jpg?1488468928\",\n                        \"small_dimensions\": \"300x169\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/558/cover_medium/3-station-confortable-accessible.jpg?1488468928\",\n                        \"medium_dimensions\": \"600x337\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/558/cover_large/3-station-confortable-accessible.jpg?1488468928\",\n                        \"large_dimensions\": \"900x506\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/558/cover_xlarge/3-station-confortable-accessible.jpg?1488468928\",\n                        \"xlarge_dimensions\": \"900x506\",\n                        \"alt\": \"image de couverture de Enquête publique\",\n                        \"name\": \"image de couverture de Enquête publique\",\n                        \"slug\": \"image-de-couverture-de-enquete-publique-2e821b44-25e0-41c6-959e-db1384f855d6\",\n                        \"description\": \"image de couverture de Enquête publique\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 4166,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 43,\n                    \"name\": \"Déclaration de projet et d'utilité publique\",\n                    \"slug\": \"declaration-de-projet-et-d-utilite-publique-5ecff84d-872d-4a15-81ed-d3d70b388e4c\",\n                    \"start_date\": \"2016-10-05T00:00:00.000+02:00\",\n                    \"end_date\": \"2016-12-08T00:00:00.000+01:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/559/cover_small/1-voies-reservees_priorite-aux-feux.jpg?1488468962\",\n                        \"small_dimensions\": \"300x168\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/559/cover_medium/1-voies-reservees_priorite-aux-feux.jpg?1488468962\",\n                        \"medium_dimensions\": \"600x337\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/559/cover_large/1-voies-reservees_priorite-aux-feux.jpg?1488468962\",\n                        \"large_dimensions\": \"900x505\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/559/cover_xlarge/1-voies-reservees_priorite-aux-feux.jpg?1488468962\",\n                        \"xlarge_dimensions\": \"900x505\",\n                        \"alt\": \"image de couverture de Déclaration de projet et d'utilité publique\",\n                        \"name\": \"image de couverture de Déclaration de projet et d'utilité publique\",\n                        \"slug\": \"image-de-couverture-de-declaration-de-projet-et-d-utilite-publique-39c7aac9-83f4-4c8b-95e4-c74564bfddfd\",\n                        \"description\": \"image de couverture de Déclaration de projet et d'utilité publique\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 4169,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 44,\n                    \"name\": \"Début des travaux\",\n                    \"slug\": \"debut-des-travaux\",\n                    \"start_date\": \"2019-01-01T00:00:00.000+01:00\",\n                    \"end_date\": \"2019-12-31T00:00:00.000+01:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/560/cover_small/3-station-confortable-accessible.jpg?1488469031\",\n                        \"small_dimensions\": \"300x169\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/560/cover_medium/3-station-confortable-accessible.jpg?1488469031\",\n                        \"medium_dimensions\": \"600x337\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/560/cover_large/3-station-confortable-accessible.jpg?1488469031\",\n                        \"large_dimensions\": \"900x506\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/560/cover_xlarge/3-station-confortable-accessible.jpg?1488469031\",\n                        \"xlarge_dimensions\": \"900x506\",\n                        \"alt\": \"image de couverture de Début des travaux\",\n                        \"name\": \"image de couverture de Début des travaux\",\n                        \"slug\": \"image-de-couverture-de-debut-des-travaux\",\n                        \"description\": \"image de couverture de Début des travaux\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 4172,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 45,\n                    \"name\": \"Mise en service du T Zen 4\",\n                    \"slug\": \"mise-en-service-du-t-zen-4\",\n                    \"start_date\": \"2020-01-01T00:00:00.000+01:00\",\n                    \"end_date\": \"2020-12-31T00:00:00.000+01:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/561/cover_small/1-voies-reservees_priorite-aux-feux.jpg?1488469076\",\n                        \"small_dimensions\": \"300x168\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/561/cover_medium/1-voies-reservees_priorite-aux-feux.jpg?1488469076\",\n                        \"medium_dimensions\": \"600x337\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/561/cover_large/1-voies-reservees_priorite-aux-feux.jpg?1488469076\",\n                        \"large_dimensions\": \"900x505\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/561/cover_xlarge/1-voies-reservees_priorite-aux-feux.jpg?1488469076\",\n                        \"xlarge_dimensions\": \"900x505\",\n                        \"alt\": \"image de couverture de Mise en service du T Zen 4\",\n                        \"name\": \"image de couverture de Mise en service du T Zen 4\",\n                        \"slug\": \"image-de-couverture-de-mise-en-service-du-t-zen-4\",\n                        \"description\": \"image de couverture de Mise en service du T Zen 4\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 4175,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                }\n            ]\n        },\n        {\n            \"id\": 18,\n            \"name\": \"T Zen 2\",\n            \"slug\": \"t-zen-2\",\n            \"start_date\": \"2013-09-01T00:00:00.000+02:00\",\n            \"end_date\": \"2024-12-31T00:00:00.000+01:00\",\n            \"cover_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/014/520/cover_small/3-station-confortable-accessible.jpg?1486132133\",\n                \"small_dimensions\": \"300x169\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/014/520/cover_medium/3-station-confortable-accessible.jpg?1486132133\",\n                \"medium_dimensions\": \"600x337\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/014/520/cover_large/3-station-confortable-accessible.jpg?1486132133\",\n                \"large_dimensions\": \"900x506\",\n                \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/014/520/cover_xlarge/3-station-confortable-accessible.jpg?1486132133\",\n                \"xlarge_dimensions\": \"900x506\",\n                \"alt\": \"image de couverture de T Zen 2\",\n                \"name\": \"image de couverture de T Zen 2\",\n                \"slug\": \"image-de-couverture-de-t-zen-2\",\n                \"description\": \"image de couverture de T Zen 2\",\n                \"copyright\": \"\"\n            },\n            \"pages\": [\n                {\n                    \"id\": 2184,\n                    \"instance\": {\n                        \"slug\": \"portail-projets-gps\"\n                    }\n                }\n            ],\n            \"sub_projects\": [\n                {\n                    \"id\": 19,\n                    \"name\": \"Enquête publique\",\n                    \"slug\": \"enquete-publique-932eaf28-3be9-4ccb-a2b0-c8e8cd9cce8b\",\n                    \"start_date\": \"2013-09-23T00:00:00.000+02:00\",\n                    \"end_date\": \"2013-10-26T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/551/cover_small/1-voies-reservees_priorite-aux-feux.jpg?1488468068\",\n                        \"small_dimensions\": \"300x168\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/551/cover_medium/1-voies-reservees_priorite-aux-feux.jpg?1488468068\",\n                        \"medium_dimensions\": \"600x337\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/551/cover_large/1-voies-reservees_priorite-aux-feux.jpg?1488468068\",\n                        \"large_dimensions\": \"900x505\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/551/cover_xlarge/1-voies-reservees_priorite-aux-feux.jpg?1488468068\",\n                        \"xlarge_dimensions\": \"900x505\",\n                        \"alt\": \"image de couverture de Enquête publique\",\n                        \"name\": \"image de couverture de Enquête publique\",\n                        \"slug\": \"image-de-couverture-de-enquete-publique-acc85490-4756-4182-a689-c9119e63e7fe\",\n                        \"description\": \"image de couverture de Enquête publique\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 2187,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 20,\n                    \"name\": \"Déclaration de projet et d'utilité publique\",\n                    \"slug\": \"declaration-de-projet-et-d-utilite-publique\",\n                    \"start_date\": \"2014-06-27T00:00:00.000+02:00\",\n                    \"end_date\": \"2014-07-30T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/552/cover_small/3-station-confortable-accessible.jpg?1488468105\",\n                        \"small_dimensions\": \"300x169\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/552/cover_medium/3-station-confortable-accessible.jpg?1488468105\",\n                        \"medium_dimensions\": \"600x337\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/552/cover_large/3-station-confortable-accessible.jpg?1488468105\",\n                        \"large_dimensions\": \"900x506\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/552/cover_xlarge/3-station-confortable-accessible.jpg?1488468105\",\n                        \"xlarge_dimensions\": \"900x506\",\n                        \"alt\": \"image de couverture de Déclaration de projet et d'utilité publique\",\n                        \"name\": \"image de couverture de Déclaration de projet et d'utilité publique\",\n                        \"slug\": \"image-de-couverture-de-declaration-de-projet-et-d-utilite-publique\",\n                        \"description\": \"image de couverture de Déclaration de projet et d'utilité publique\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 2237,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 21,\n                    \"name\": \"Études approfondies et avant-projet\",\n                    \"slug\": \"etudes-approfondies-et-avant-projet\",\n                    \"start_date\": \"2014-08-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2017-03-31T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/553/cover_small/1-voies-reservees_priorite-aux-feux.jpg?1488468141\",\n                        \"small_dimensions\": \"300x168\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/553/cover_medium/1-voies-reservees_priorite-aux-feux.jpg?1488468141\",\n                        \"medium_dimensions\": \"600x337\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/553/cover_large/1-voies-reservees_priorite-aux-feux.jpg?1488468141\",\n                        \"large_dimensions\": \"900x505\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/553/cover_xlarge/1-voies-reservees_priorite-aux-feux.jpg?1488468141\",\n                        \"xlarge_dimensions\": \"900x505\",\n                        \"alt\": \"image de couverture de Études approfondies et avant-projet\",\n                        \"name\": \"image de couverture de Études approfondies et avant-projet\",\n                        \"slug\": \"image-de-couverture-de-etudes-approfondies-et-avant-projet\",\n                        \"description\": \"image de couverture de Études approfondies et avant-projet\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 2236,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 22,\n                    \"name\": \"Travaux d'aménagement\",\n                    \"slug\": \"travaux-d-amenagement\",\n                    \"start_date\": \"2016-10-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2017-05-30T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/554/cover_small/3-station-confortable-accessible.jpg?1488468430\",\n                        \"small_dimensions\": \"300x169\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/554/cover_medium/3-station-confortable-accessible.jpg?1488468430\",\n                        \"medium_dimensions\": \"600x337\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/554/cover_large/3-station-confortable-accessible.jpg?1488468430\",\n                        \"large_dimensions\": \"900x506\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/554/cover_xlarge/3-station-confortable-accessible.jpg?1488468430\",\n                        \"xlarge_dimensions\": \"900x506\",\n                        \"alt\": \"image de couverture de Travaux d'aménagement\",\n                        \"name\": \"image de couverture de Travaux d'aménagement\",\n                        \"slug\": \"image-de-couverture-de-travaux-d-amenagement\",\n                        \"description\": \"image de couverture de Travaux d'aménagement\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 2235,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 23,\n                    \"name\": \"Début prévisonnel des travaux\",\n                    \"slug\": \"debut-previsonnel-des-travaux\",\n                    \"start_date\": \"2017-07-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2018-06-30T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/555/cover_small/1-voies-reservees_priorite-aux-feux.jpg?1488468382\",\n                        \"small_dimensions\": \"300x168\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/555/cover_medium/1-voies-reservees_priorite-aux-feux.jpg?1488468382\",\n                        \"medium_dimensions\": \"600x337\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/555/cover_large/1-voies-reservees_priorite-aux-feux.jpg?1488468382\",\n                        \"large_dimensions\": \"900x505\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/555/cover_xlarge/1-voies-reservees_priorite-aux-feux.jpg?1488468382\",\n                        \"xlarge_dimensions\": \"900x505\",\n                        \"alt\": \"image de couverture de Début prévisonnel des travaux\",\n                        \"name\": \"image de couverture de Début prévisonnel des travaux\",\n                        \"slug\": \"image-de-couverture-de-debut-previsonnel-des-travaux\",\n                        \"description\": \"image de couverture de Début prévisonnel des travaux\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 2234,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 24,\n                    \"name\": \"Travaux et création des stations\",\n                    \"slug\": \"travaux-et-creation-des-stations\",\n                    \"start_date\": \"2018-01-01T00:00:00.000+01:00\",\n                    \"end_date\": \"2023-12-31T00:00:00.000+01:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/556/cover_small/3-station-confortable-accessible.jpg?1488468607\",\n                        \"small_dimensions\": \"300x169\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/556/cover_medium/3-station-confortable-accessible.jpg?1488468607\",\n                        \"medium_dimensions\": \"600x337\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/556/cover_large/3-station-confortable-accessible.jpg?1488468607\",\n                        \"large_dimensions\": \"900x506\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/556/cover_xlarge/3-station-confortable-accessible.jpg?1488468607\",\n                        \"xlarge_dimensions\": \"900x506\",\n                        \"alt\": \"image de couverture de Travaux et création des stations\",\n                        \"name\": \"image de couverture de Travaux et création des stations\",\n                        \"slug\": \"image-de-couverture-de-travaux-et-creation-des-stations\",\n                        \"description\": \"image de couverture de Travaux et création des stations\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 2233,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 25,\n                    \"name\": \"Mise en service du T Zen 2 \",\n                    \"slug\": \"mise-en-service-du-t-zen-2\",\n                    \"start_date\": \"2024-07-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2024-12-31T00:00:00.000+01:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/557/cover_small/1-voies-reservees_priorite-aux-feux.jpg?1488468656\",\n                        \"small_dimensions\": \"300x168\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/557/cover_medium/1-voies-reservees_priorite-aux-feux.jpg?1488468656\",\n                        \"medium_dimensions\": \"600x337\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/557/cover_large/1-voies-reservees_priorite-aux-feux.jpg?1488468656\",\n                        \"large_dimensions\": \"900x505\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/557/cover_xlarge/1-voies-reservees_priorite-aux-feux.jpg?1488468656\",\n                        \"xlarge_dimensions\": \"900x505\",\n                        \"alt\": \"image de couverture de Mise en service du T Zen 2 \",\n                        \"name\": \"image de couverture de Mise en service du T Zen 2 \",\n                        \"slug\": \"image-de-couverture-de-mise-en-service-du-t-zen-2\",\n                        \"description\": \"image de couverture de Mise en service du T Zen 2 \",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 2232,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                }\n            ]\n        },\n        {\n            \"id\": 48,\n            \"name\": \"L'Agora se métamorphose \",\n            \"slug\": \"l-agora-se-metamorphose\",\n            \"start_date\": \"2017-09-01T00:00:00.000+02:00\",\n            \"end_date\": \"2020-12-01T00:00:00.000+01:00\",\n            \"cover_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/489/cover_small/Dossier-Graphique_EVRY_02-10.jpg?1506422665\",\n                \"small_dimensions\": \"300x147\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/489/cover_medium/Dossier-Graphique_EVRY_02-10.jpg?1506422665\",\n                \"medium_dimensions\": \"600x293\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/489/cover_large/Dossier-Graphique_EVRY_02-10.jpg?1506422665\",\n                \"large_dimensions\": \"1000x489\",\n                \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/489/cover_xlarge/Dossier-Graphique_EVRY_02-10.jpg?1506422665\",\n                \"xlarge_dimensions\": \"1854x906\",\n                \"alt\": \"image de couverture de L'Agora se métamorphose \",\n                \"name\": \"image de couverture de L'Agora se métamorphose \",\n                \"slug\": null,\n                \"description\": \"image de couverture de L'Agora se métamorphose \",\n                \"copyright\": \"\"\n            },\n            \"pages\": [\n                {\n                    \"id\": 7560,\n                    \"instance\": {\n                        \"slug\": \"portail-projets-gps\"\n                    }\n                }\n            ],\n            \"sub_projects\": [\n                {\n                    \"id\": 49,\n                    \"name\": \"Démolition du Crédit foncier \",\n                    \"slug\": \"demolition-du-credit-foncier\",\n                    \"start_date\": \"2017-09-15T00:00:00.000+02:00\",\n                    \"end_date\": \"2018-01-30T00:00:00.000+01:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 7563,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 50,\n                    \"name\": \"Espace restauration\",\n                    \"slug\": \"espace-restauration\",\n                    \"start_date\": \"2018-01-01T00:00:00.000+01:00\",\n                    \"end_date\": \"2019-05-01T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/751/cover_small/food_court.jpg?1507107617\",\n                        \"small_dimensions\": \"300x200\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/751/cover_medium/food_court.jpg?1507107617\",\n                        \"medium_dimensions\": \"600x400\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/751/cover_large/food_court.jpg?1507107617\",\n                        \"large_dimensions\": \"1000x667\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/751/cover_xlarge/food_court.jpg?1507107617\",\n                        \"xlarge_dimensions\": \"2000x1333\",\n                        \"alt\": \"image de couverture de Espace restauration\",\n                        \"name\": \"image de couverture de Espace restauration\",\n                        \"slug\": null,\n                        \"description\": \"image de couverture de Espace restauration\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 7735,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 51,\n                    \"name\": \"Place de l'Agora \",\n                    \"slug\": \"place-de-l-agora\",\n                    \"start_date\": \"2018-01-01T00:00:00.000+01:00\",\n                    \"end_date\": \"2018-12-31T00:00:00.000+01:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 7738,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 52,\n                    \"name\": \"Les Arènes\",\n                    \"slug\": \"les-arenes\",\n                    \"start_date\": \"2018-06-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2020-06-01T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/846/cover_small/int%C3%A9rieur_ar%C3%A8nes.JPG?1507300602\",\n                        \"small_dimensions\": \"300x167\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/846/cover_medium/int%C3%A9rieur_ar%C3%A8nes.JPG?1507300602\",\n                        \"medium_dimensions\": \"600x335\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/846/cover_large/int%C3%A9rieur_ar%C3%A8nes.JPG?1507300602\",\n                        \"large_dimensions\": \"956x533\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/846/cover_xlarge/int%C3%A9rieur_ar%C3%A8nes.JPG?1507300602\",\n                        \"xlarge_dimensions\": \"956x533\",\n                        \"alt\": \"image de couverture de Les Arènes\",\n                        \"name\": \"image de couverture de Les Arènes\",\n                        \"slug\": null,\n                        \"description\": \"image de couverture de Les Arènes\",\n                        \"copyright\": \"DVVD/Labtop\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 7741,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 53,\n                    \"name\": \"Place des Terrasses\",\n                    \"slug\": \"place-des-terrasses\",\n                    \"start_date\": \"2019-01-01T00:00:00.000+01:00\",\n                    \"end_date\": \"2020-01-01T00:00:00.000+01:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/757/cover_small/une_dossier_centres_commerciaux.jpg?1507119253\",\n                        \"small_dimensions\": \"233x300\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/757/cover_medium/une_dossier_centres_commerciaux.jpg?1507119253\",\n                        \"medium_dimensions\": \"466x600\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/757/cover_large/une_dossier_centres_commerciaux.jpg?1507119253\",\n                        \"large_dimensions\": \"777x1000\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/757/cover_xlarge/une_dossier_centres_commerciaux.jpg?1507119253\",\n                        \"xlarge_dimensions\": \"993x1278\",\n                        \"alt\": \"image de couverture de Place des Terrasses\",\n                        \"name\": \"image de couverture de Place des Terrasses\",\n                        \"slug\": null,\n                        \"description\": \"image de couverture de Place des Terrasses\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 7744,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                }\n            ]\n        },\n        {\n            \"id\": 46,\n            \"name\": \"Gare TGV\",\n            \"slug\": \"gare-tgv\",\n            \"start_date\": \"2012-01-01T00:00:00.000+01:00\",\n            \"end_date\": \"2030-12-31T00:00:00.000+01:00\",\n            \"cover_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/548/cover_small/gare-moissy-tgv.jpg?1488450325\",\n                \"small_dimensions\": \"300x200\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/548/cover_medium/gare-moissy-tgv.jpg?1488450325\",\n                \"medium_dimensions\": \"600x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/548/cover_large/gare-moissy-tgv.jpg?1488450325\",\n                \"large_dimensions\": \"1000x667\",\n                \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/548/cover_xlarge/gare-moissy-tgv.jpg?1488450325\",\n                \"xlarge_dimensions\": \"2000x1335\",\n                \"alt\": \"image de couverture de Gare TGV\",\n                \"name\": \"image de couverture de Gare TGV\",\n                \"slug\": \"image-de-couverture-de-gare-tgv-d0e33b0d-e356-4151-a846-c642e5e092a2\",\n                \"description\": \"image de couverture de Gare TGV\",\n                \"copyright\": \"\"\n            },\n            \"pages\": [\n                {\n                    \"id\": 4178,\n                    \"instance\": {\n                        \"slug\": \"portail-projets-gps\"\n                    }\n                }\n            ],\n            \"sub_projects\": []\n        },\n        {\n            \"id\": 63,\n            \"name\": \"Création de bassins de rétention à Ris-Orangis\",\n            \"slug\": \"creation-de-bassins-de-retention-a-ris-orangis\",\n            \"start_date\": \"2018-01-22T00:00:00.000+01:00\",\n            \"end_date\": \"2019-05-20T00:00:00.000+02:00\",\n            \"cover_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/526/cover_small/Bassin_Issy_les_moulineaux.JPG?1515765425\",\n                \"small_dimensions\": \"300x146\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/526/cover_medium/Bassin_Issy_les_moulineaux.JPG?1515765425\",\n                \"medium_dimensions\": \"600x292\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/526/cover_large/Bassin_Issy_les_moulineaux.JPG?1515765425\",\n                \"large_dimensions\": \"1000x487\",\n                \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/526/cover_xlarge/Bassin_Issy_les_moulineaux.JPG?1515765425\",\n                \"xlarge_dimensions\": \"2000x973\",\n                \"alt\": \"image de couverture de Création de bassins de rétention à Ris-Orangis\",\n                \"name\": \"image de couverture de Création de bassins de rétention à Ris-Orangis\",\n                \"slug\": null,\n                \"description\": \"image de couverture de Création de bassins de rétention à Ris-Orangis\",\n                \"copyright\": \"Grabd Paris Sud \"\n            },\n            \"pages\": [\n                {\n                    \"id\": 8540,\n                    \"instance\": {\n                        \"slug\": \"portail-projets-gps\"\n                    }\n                }\n            ],\n            \"sub_projects\": [\n                {\n                    \"id\": 64,\n                    \"name\": \"Création du bassin sous le stade Émile-Gagneux\",\n                    \"slug\": \"creation-du-bassin-sous-le-stade-emile-gagneux\",\n                    \"start_date\": \"2018-01-22T00:00:00.000+01:00\",\n                    \"end_date\": \"2019-05-30T00:00:00.000+02:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 8844,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 65,\n                    \"name\": \"Création d'un collecteur (canalisation) \",\n                    \"slug\": \"creation-d-un-collecteur-canalisation\",\n                    \"start_date\": \"2018-05-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2019-03-30T00:00:00.000+01:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 8838,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 66,\n                    \"name\": \"Création second bassin de stockage / restitution\",\n                    \"slug\": \"creation-second-bassin-de-stockage-restitution\",\n                    \"start_date\": \"2018-03-01T00:00:00.000+01:00\",\n                    \"end_date\": \"2019-01-31T00:00:00.000+01:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 8841,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 67,\n                    \"name\": \"Création station anti-crue de Seine\",\n                    \"slug\": \"creation-station-anti-crue-de-seine\",\n                    \"start_date\": \"2018-01-29T00:00:00.000+01:00\",\n                    \"end_date\": \"2018-06-30T00:00:00.000+02:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 8835,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                }\n            ]\n        },\n        {\n            \"id\": 54,\n            \"name\": \"Chauffage urbain \",\n            \"slug\": \"chauffage-urbain\",\n            \"start_date\": \"2017-07-01T00:00:00.000+02:00\",\n            \"end_date\": \"2018-12-31T00:00:00.000+01:00\",\n            \"cover_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/891/cover_small/vert_le_grand.jpg?1507645372\",\n                \"small_dimensions\": \"300x236\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/891/cover_medium/vert_le_grand.jpg?1507645372\",\n                \"medium_dimensions\": \"300x236\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/891/cover_large/vert_le_grand.jpg?1507645372\",\n                \"large_dimensions\": \"300x236\",\n                \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/891/cover_xlarge/vert_le_grand.jpg?1507645372\",\n                \"xlarge_dimensions\": \"300x236\",\n                \"alt\": \"image de couverture de Chauffage urbain \",\n                \"name\": \"image de couverture de Chauffage urbain \",\n                \"slug\": null,\n                \"description\": \"image de couverture de Chauffage urbain \",\n                \"copyright\": \"\"\n            },\n            \"pages\": [\n                {\n                    \"id\": 7816,\n                    \"instance\": {\n                        \"slug\": \"portail-projets-gps\"\n                    }\n                }\n            ],\n            \"sub_projects\": [\n                {\n                    \"id\": 56,\n                    \"name\": \"Modernisation et sécurisation du réseau \",\n                    \"slug\": \"modernisation-et-securisation-du-reseau\",\n                    \"start_date\": \"2017-07-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2018-10-01T00:00:00.000+02:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 7825,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 55,\n                    \"name\": \"Création d'un réseau d'interconnexion\",\n                    \"slug\": \"creation-d-un-reseau-d-interconnexion\",\n                    \"start_date\": \"2017-07-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2017-12-31T00:00:00.000+01:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/936/cover_small/travaux_chauffage_urbain_GPS-11-10-2017_DSC2562.jpg?1507883027\",\n                        \"small_dimensions\": \"300x200\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/936/cover_medium/travaux_chauffage_urbain_GPS-11-10-2017_DSC2562.jpg?1507883027\",\n                        \"medium_dimensions\": \"600x401\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/936/cover_large/travaux_chauffage_urbain_GPS-11-10-2017_DSC2562.jpg?1507883027\",\n                        \"large_dimensions\": \"1000x668\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/936/cover_xlarge/travaux_chauffage_urbain_GPS-11-10-2017_DSC2562.jpg?1507883027\",\n                        \"xlarge_dimensions\": \"2000x1335\",\n                        \"alt\": \"image de couverture de Création d'un réseau d'interconnexion\",\n                        \"name\": \"image de couverture de Création d'un réseau d'interconnexion\",\n                        \"slug\": null,\n                        \"description\": \"image de couverture de Création d'un réseau d'interconnexion\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 7819,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 57,\n                    \"name\": \"Installation d'un système de télégestion \",\n                    \"slug\": \"installation-d-un-systeme-de-telegestion\",\n                    \"start_date\": \"2017-07-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2018-12-31T00:00:00.000+01:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 7828,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                }\n            ]\n        },\n        {\n            \"id\": 58,\n            \"name\": \"Rue des Lumières\",\n            \"slug\": \"rue-des-lumieres\",\n            \"start_date\": \"2017-09-01T00:00:00.000+02:00\",\n            \"end_date\": \"2019-12-01T00:00:00.000+01:00\",\n            \"cover_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/023/652/cover_small/ecran-horizontal.jpg?1511120784\",\n                \"small_dimensions\": \"300x169\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/023/652/cover_medium/ecran-horizontal.jpg?1511120784\",\n                \"medium_dimensions\": \"600x338\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/023/652/cover_large/ecran-horizontal.jpg?1511120784\",\n                \"large_dimensions\": \"1000x563\",\n                \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/023/652/cover_xlarge/ecran-horizontal.jpg?1511120784\",\n                \"xlarge_dimensions\": \"1920x1080\",\n                \"alt\": \"image de couverture de Rue des Lumières\",\n                \"name\": \"image de couverture de Rue des Lumières\",\n                \"slug\": null,\n                \"description\": \"image de couverture de Rue des Lumières\",\n                \"copyright\": \"\"\n            },\n            \"pages\": [\n                {\n                    \"id\": 8127,\n                    \"instance\": {\n                        \"slug\": \"portail-projets-gps\"\n                    }\n                }\n            ],\n            \"sub_projects\": [\n                {\n                    \"id\": 85,\n                    \"name\": \"Les actions de préfiguration\",\n                    \"slug\": \"les-actions-de-prefiguration\",\n                    \"start_date\": \"2017-12-01T00:00:00.000+01:00\",\n                    \"end_date\": \"2018-08-31T00:00:00.000+02:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 9166,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": [\n                        {\n                            \"id\": 59,\n                            \"name\": \"Spectacle Incandescences \",\n                            \"slug\": \"spectacle-incandescences\",\n                            \"start_date\": \"2017-12-14T00:00:00.000+01:00\",\n                            \"end_date\": \"2017-12-14T00:00:00.000+01:00\",\n                            \"cover_picture\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/023/654/cover_small/ecran-horizontal.jpg?1511182171\",\n                                \"small_dimensions\": \"300x169\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/023/654/cover_medium/ecran-horizontal.jpg?1511182171\",\n                                \"medium_dimensions\": \"600x338\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/023/654/cover_large/ecran-horizontal.jpg?1511182171\",\n                                \"large_dimensions\": \"1000x563\",\n                                \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/023/654/cover_xlarge/ecran-horizontal.jpg?1511182171\",\n                                \"xlarge_dimensions\": \"1920x1080\",\n                                \"alt\": \"image de couverture de Spectacle Incandescences \",\n                                \"name\": \"image de couverture de Spectacle Incandescences \",\n                                \"slug\": null,\n                                \"description\": \"image de couverture de Spectacle Incandescences \",\n                                \"copyright\": \"\"\n                            },\n                            \"pages\": [\n                                {\n                                    \"id\": 8133,\n                                    \"instance\": {\n                                        \"slug\": \"portail-projets-gps\"\n                                    }\n                                }\n                            ],\n                            \"sub_projects\": []\n                        }\n                    ]\n                },\n                {\n                    \"id\": 62,\n                    \"name\": \"Phase de candidature \",\n                    \"slug\": \"phase-de-candidature\",\n                    \"start_date\": \"2017-10-03T00:00:00.000+02:00\",\n                    \"end_date\": \"2017-12-20T00:00:00.000+01:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 8146,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 77,\n                    \"name\": \"Dialogue compétitif\",\n                    \"slug\": \"dialogue-competitif\",\n                    \"start_date\": \"2018-01-01T00:00:00.000+01:00\",\n                    \"end_date\": \"2018-08-31T00:00:00.000+02:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 9151,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 86,\n                    \"name\": \"Collaboration avec le candidat retenu pour mise en œuvre des projets\",\n                    \"slug\": \"collaboration-avec-le-candidat-retenu-pour-mise-en-oeuvre-des-projets\",\n                    \"start_date\": \"2018-09-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2019-05-01T00:00:00.000+02:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 9175,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                }\n            ]\n        },\n        {\n            \"id\": 68,\n            \"name\": \"Cirque de l'Essonne\",\n            \"slug\": \"cirque-de-l-essonne\",\n            \"start_date\": \"2018-01-01T00:00:00.000+01:00\",\n            \"end_date\": \"2023-12-31T00:00:00.000+01:00\",\n            \"cover_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/025/389/cover_small/cirque-essonne-grandparissud-bandeau.jpg?1520719604\",\n                \"small_dimensions\": \"300x70\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/025/389/cover_medium/cirque-essonne-grandparissud-bandeau.jpg?1520719604\",\n                \"medium_dimensions\": \"600x140\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/025/389/cover_large/cirque-essonne-grandparissud-bandeau.jpg?1520719604\",\n                \"large_dimensions\": \"1000x234\",\n                \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/025/389/cover_xlarge/cirque-essonne-grandparissud-bandeau.jpg?1520719604\",\n                \"xlarge_dimensions\": \"2000x468\",\n                \"alt\": \"image de couverture de Cirque de l'Essonne\",\n                \"name\": \"image de couverture de Cirque de l'Essonne\",\n                \"slug\": null,\n                \"description\": \"image de couverture de Cirque de l'Essonne\",\n                \"copyright\": \"\"\n            },\n            \"pages\": [\n                {\n                    \"id\": 9043,\n                    \"instance\": {\n                        \"slug\": \"portail-projets-gps\"\n                    }\n                }\n            ],\n            \"sub_projects\": [\n                {\n                    \"id\": 70,\n                    \"name\": \"Études techniques préalables et de conception de l’aménagement\",\n                    \"slug\": \"etudes-techniques-prealables-et-de-conception-de-l-amenagement\",\n                    \"start_date\": \"2017-01-01T00:00:00.000+01:00\",\n                    \"end_date\": \"2019-06-30T00:00:00.000+02:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 9106,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 87,\n                    \"name\": \"Premiers travaux déjà effectués \",\n                    \"slug\": \"premiers-travaux-deja-effectues\",\n                    \"start_date\": \"2017-01-01T00:00:00.000+01:00\",\n                    \"end_date\": \"2018-03-31T00:00:00.000+02:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 9178,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 91,\n                    \"name\": \"Prochains travaux d'urgence\",\n                    \"slug\": \"prochains-travaux-d-urgence\",\n                    \"start_date\": \"2018-01-01T00:00:00.000+01:00\",\n                    \"end_date\": \"2018-12-31T00:00:00.000+01:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 9235,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 90,\n                    \"name\": \"Signature de la convention par les partenaires\",\n                    \"slug\": \"signature-de-la-convention-par-les-partenaires\",\n                    \"start_date\": \"2018-05-26T00:00:00.000+02:00\",\n                    \"end_date\": \"2018-05-26T00:00:00.000+02:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 9232,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 88,\n                    \"name\": \"Grands travaux\",\n                    \"slug\": \"grands-travaux-086fc039-afe3-467d-97cf-a1c6c91f9ba6\",\n                    \"start_date\": \"2019-07-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2023-12-31T00:00:00.000+01:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 9181,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                }\n            ]\n        }\n    ]\n}"}],"_postman_id":"3367b593-58d5-43cf-88d9-7efbc26d656b"}],"id":"0b6e4221-6bda-4970-a5f7-8f3655c8fd92","description":"<p>Endpoint d'API des groupes d'événements</p>\n","_postman_id":"0b6e4221-6bda-4970-a5f7-8f3655c8fd92"},{"name":"Actualités","item":[{"name":"Index news","id":"7b4ed050-4c6c-40cc-9e51-0ec74de48f50","request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"https://api.publidata.io/v1/{{instance_id}}/news","description":"<p>Index des actualités</p>\n","urlObject":{"path":["v1","{{instance_id}}","news"],"host":["https://api.publidata.io"],"query":[],"variable":[]}},"response":[{"id":"590a5118-7d74-4687-be91-e77c1b5065ba","name":"Index news","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"www.publidata.io/api/v1/portail-sortir-gps/news"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, private, must-revalidate","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 25 Jan 2018 14:07:53 GMT","name":"Date","description":""},{"key":"Etag","value":"W/\"9b2b824c9abd5fd4087ea53b7d5bec79\"","name":"Etag","description":""},{"key":"Server","value":"Cowboy","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"Vary","value":"Origin","name":"Vary","description":""},{"key":"Via","value":"1.1 vegur","name":"Via","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""},{"key":"X-Request-Id","value":"7ef6846f-2b69-4878-a824-33f3c25bd008","name":"X-Request-Id","description":""},{"key":"X-Runtime","value":"0.039006","name":"X-Runtime","description":""},{"key":"X-Xss-Protection","value":"1; mode=block","name":"X-Xss-Protection","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"slugs\": [\n        \"velofolies-2016\",\n        \"journees-du-patrimoine-10-visites-a-ne-pas-rater\",\n        \"lieusaint-un-gymnase-dedie-au-badminton\",\n        \"fete-de-la-science-a-la-rencontre-des-chercheurs\",\n        \"halloween-a-la-mediatheque-de-l-agora\",\n        \"la-photo-du-mois-de-grand-paris-sud\",\n        \"5-activites-a-ne-pas-manquer-a-grand-paris-sud\",\n        \"concours-photo-instagram-se-mettre-au-vert-a-grand-paris-sud\",\n        \"grand-paris-sud-fete-la-science\",\n        \"miel-de-ville-a-lisses\",\n        \"la-seine-un-patrimoine-qui-coule-de-source\",\n        \"le-cacv-gymnastique-recoit-l-elite-internationale\",\n        \"air-l-expo-qui-inspire\",\n        \"la-fleche-etoilee-fete-ses-25-ans\",\n        \"ateliers-d-arts-plastiques\",\n        \"wall-street-art-grand-paris-sud-2017-donne-le-ton-du-monumental-de-la-couleur-et-une-signature-internationale\",\n        \"les-filles-de-courcouronnes-sur-la-route-du-tour-de-france\",\n        \"les-cinoches-programmation-du-04-au-10-janvier\",\n        \"bienvenue-au-marche-artisanal-africain\",\n        \"que-faire-a-grand-paris-sud-ce-week-end-du-18-19-novembre\",\n        \"detendez-vous-avec-carre-loisirs\",\n        \"idees-noel-8-le-champagne-cree-par-une-entrepreneuse-de-grigny\",\n        \"3e-concours-mondial-de-marinera-club-libertad-essonne-france\",\n        \"les-associations-pour-le-maintien-de-l-agriculture-paysanne-a-grand-paris-sud\",\n        \"oeuvres-de-l-agglo-au-fil-de-l-eau\",\n        \"idees-noel-1-les-macarons-de-reau\",\n        \"fete-de-la-foret-contes-et-legendes-a-la-faisanderie\",\n        \"la-saint-valentin-a-grand-paris-sud\",\n        \"la-ferme-saint-lazare-a-grigny\",\n        \"matthieu-16-ans-malvoyant-et-ambassadeur-du-telethon-2016\",\n        \"vingt-equipements-culturels-et-sportifs-transferes-a-l-agglomeration-grand-paris-sud\",\n        \"la-grande-collecte\",\n        \"l-envers-du-decor-du-theatre-de-corbeil-essonnes\",\n        \"un-week-end-d-octobre-en-rose-a-l-agglo\",\n        \"appel-a-candidatures-devenez-jure-papilles-d-or-2018\",\n        \"sous-le-chapiteau-d-adrienne\",\n        \"ateliers-nomades-vous-reprendrez-bien-un-peu-de-culture\",\n        \"en-foret-de-rougeau\",\n        \"un-mois-100-foot-a-grigny\",\n        \"le-club-de-tennis-de-table-de-corbeil-essonnes-recompense\",\n        \"foulee-des-brettes-rendez-vous-le-18-septembre-pour-une-course-qui-a-du-coeur\",\n        \"les-cinoches-programmation-du-09-au-15-novembre\",\n        \"retour-sur-les-jazzy-jumelages-des-conservatoires-d-evry-et-berlin\",\n        \"foret-de-senart-l-onf-securise-le-site\",\n        \"festival-celte-a-l-espace-prevert-de-savigny-le-temple\",\n        \"lundi-1er-mai-les-favoris-du-marathon-de-senart-2017\",\n        \"fermeture-pour-travaux-de-la-mediatheque-de-l-agora-du-15-au-24-decembre\",\n        \"les-cinoches-programme-mois-de-juin\",\n        \"caffin-le-succes-de-fil-en-aiguille\",\n        \"course-solidaire-la-senartaise\",\n        \"les-aap-dessinent-les-arts-du-cirque-a-ris-orangis\",\n        \"un-week-end-en-prehistoire\",\n        \"inscriptions-ouvertes-pour-le-10km-de-lisses\",\n        \"epoussetage-et-nouvelle-jeunesse-pour-l-eglise-du-village\",\n        \"la-grande-borne-a-son-musee-exposition-voyage-au-temps-de-la-mesopotamie\",\n        \"les-cinoches-programmation-des-cinoches-du-28-septembre-au-5-octobre\",\n        \"fermeture-exceptionnelle-de-la-mediatheque-de-l-agora-cet-ete\",\n        \"decouvrez-la-biodiversite-du-jardin-d-essences-le-6-novembre\",\n        \"preparez-les-vacances-a-grand-paris-sud\",\n        \"idees-noel-10-cadeaux-made-in-grand-paris-sud\",\n        \"festival-street-art-roti-un-artiste-passionne-aux-multiples-facettes\",\n        \"qu-est-ce-qu-on-fait-pendant-les-vacances-de-fevrier\",\n        \"evry-games-city-2017-l-innovation-numerique-de-grand-paris-sud-aux-manettes\",\n        \"avec-la-fouille-loury-saintry-prolonge-sa-ceinture-verte\",\n        \"aviron-le-bronze-et-l-argent-pour-l-asce\",\n        \"une-vie-d-artistes-a-l-agglo\",\n        \"les-franciliens-aiment-la-foret\",\n        \"la-semaine-de-la-paix-a-grigny\",\n        \"courses-a-pied-relevez-le-challenge-de-grand-paris-sud\",\n        \"idees-noel-10-les-stages-de-calligraphie-a-corbeil-essonnes\",\n        \"des-mediatheques-high-tech\",\n        \"le-premier-festival-du-film-ecologique\",\n        \"les-coulisses-de-la-piscine-a-ris-orangis\",\n        \"idees-noel-9-les-ateliers-de-planetes-sciences-pour-les-apprentis-scientifiques\",\n        \"le-site-internet-du-marathon-de-senart-fait-peau-neuve\",\n        \"vos-archives-nous-interessent\",\n        \"patinoire-de-l-agora-noel-avant-noel\",\n        \"le-superparc-une-aire-de-jeux-geante-pour-les-enfants\",\n        \"inscriptions-dans-les-conservatoires-de-grand-paris-sud\",\n        \"les-activites-jeunes-publics-des-mediatheques-et-ludotheques-pres-de-chez-vous\",\n        \"decouvrez-les-laureats-des-papilles-d-or-de-grand-paris-sud\",\n        \"nandy-au-naturel\",\n        \"la-chandeleur-est-la-degustez-des-crepes-et-des-nappages-made-in-grand-paris-sud\",\n        \"liste-des-restaurants-de-grand-paris-sud-nomines-aux-papilles-d-or-2018\",\n        \"2-karatekas-de-combs-la-ville-medailles-au-championnat-d-europe-jeunes\",\n        \"les-cinoches-programmation-du-21-decembre-2016-au-3-janvier-2017-22-12-2016\",\n        \"demos-a-grand-paris-sud-un-premier-orchestre-au-diapason\",\n        \"decouvrez-la-programmation-du-reseau-des-conservatoires\",\n        \"allez-decouvrir-les-dernieres-pepites-des-salles-de-spectacles-de-grand-paris-sud\",\n        \"challenge-grand-paris-sud\",\n        \"la-ferme-de-varatre-se-refait-une-beaute\",\n        \"le-championnat-de-france-du-marathon-a-grand-paris-sud-en-2017\",\n        \"un-apres-midi-familial-avec-les-humanophones\",\n        \"culture-numerique-avec-studio-oracle-les-magiciens-de-l-audiovisuel\",\n        \"fete-du-developpement-durable-a-saintry-sur-seine\",\n        \"la-section-roller-de-l-usro-accueille-la-premiere-coupe-d-europe-feminine\",\n        \"bonne-annee-2017\",\n        \"course-solidaire-encouragez-les-senartaises\",\n        \"retrouverez-vous-la-sortie-du-labyrinthe-de-senart\",\n        \"adrienne-ou-les-arts-de-larue\",\n        \"les-inscriptions-de-la-senartaise-sont-ouvertes\",\n        \"idees-noel-6-offrez-des-places-de-spectacles-dans-les-salles-de-grand-paris-sud\",\n        \"les-videastes-ont-leur-salon\",\n        \"patrice-en-concert\",\n        \"patrimoine-go-le-patrimoine-en-realite-virtuelle\",\n        \"la-recette-de-thierry-marx-dans-les-fourneaux-de-grigny\",\n        \"salon-du-tourisme-week-end-d-evasion-a-saint-pierre-du-perray\",\n        \"didier-gustin-a-bondoufle-le-1er-octobre\",\n        \"l-equipe-de-france-espoirs-affronte-l-angleterre-a-bondoufle\",\n        \"les-cinoches-programmation-du-16-au-22-novembre\",\n        \"la-biennale-des-arts-numeriques-a-evry-et-chamarande\",\n        \"visitez-les-coulisses-du-patrimoine\",\n        \"le-salon-de-la-bande-dessinee-vient-buller-a-grand-paris-sud\",\n        \"des-street-artistes-donnent-des-couleurs-aux-armoires-de-fibre-optique-a-evry\",\n        \"promenez-vous-a-grand-paris-sud-avec-le-jeu-mobile-pokemon-go\",\n        \"3eme-festival-sons-meles\",\n        \"les-cinoches-programmation-du-26-octobre-au-02-novembre\",\n        \"forum-des-etudiants-30-12-2016\",\n        \"les-cinoches-programmation-du-19-au-26-octobre\",\n        \"salon-de-la-bande-dessinee-bulle-d-ailleurs\",\n        \"debout-sur-le-zinc-et-dans-la-salle-avec-dslz\",\n        \"les-cinoches-programmation-du-14-au-20-decembre\",\n        \"mecenat-culturel-votre-entreprise-sur-le-devant-de-la-scene\",\n        \"les-randonnees-a-pied-ou-a-velo-une-autre-maniere-de-decouvrir-le-territoire\",\n        \"la-semaine-du-developpement-durable-a-grand-paris-sud\",\n        \"les-cinoches-programmation-des-cinoches-du-5-au-12-octobre\",\n        \"visitez-le-domaine-de-la-grange\",\n        \"enjoy-la-nouvelle-oeuvre-en-street-mapping-a-evry\",\n        \"l-agglo-lance-son-site-100-loisirs\",\n        \"conferences-la-sante-et-notre-environnement\",\n        \"le-village-nanoub-va-vous-faire-du-bien\",\n        \"le-printemps-des-jardiniers-2017\",\n        \"profitez-d-un-week-end-a-rallonge-pour-faire-le-plein-d-activites-a-grand-paris-sud\",\n        \"les-ateliers-nomades-du-quai-branly-a-grand-paris-sud\",\n        \"le-musee-du-quai-branly-continue-son-voyage-a-grand-paris-sud\",\n        \"evry-ville-ouverte-ville-cachee\",\n        \"festival-wall-street-art-2017-retour-sur-une-annee-monumentale-24-10-2017\",\n        \"tintinnabule-le-festival-de-la-chanson-pour-l-enfance-fete-ses-30-ans\",\n        \"les-parcs-de-jeux-indoor-de-grand-paris-sud\",\n        \"jeudi-25-janvier-ouverture-differee-de-certains-equipements\",\n        \"la-saint-valentin-a-grand-paris-sud-05-02-2018\",\n        \"les-cinoches-programmation-du-12-au-19-octobre\",\n        \"le-mois-du-film-documentaire\",\n        \"des-navettes-gratuites-pour-visiter-le-quai-branly\",\n        \"les-journees-jeunesse-a-evry\",\n        \"bienvenue-au-parc-d-attraction-forest-arena\",\n        \"la-renaissance-du-domaine-de-montauger\",\n        \"des-rendez-vous-tres-nature\",\n        \"farewell-ou-le-tres-bon-plan-d-ask-em\",\n        \"vol-en-immersion-avec-le-club-senart-multirotor-racing\",\n        \"8eme-edition-du-salon-lire-a-etiolles-le-19-novembre\",\n        \"les-musees-de-grand-paris-sud\",\n        \"une-creation-theatrale-a-la-marge\",\n        \"atelier-nomade-du-quai-branly-escale-en-polynesie\",\n        \"participez-au-spectacle-incandescences\",\n        \"les-vacances-continuent-a-grand-paris-sud\",\n        \"rencontre-avec-le-president-du-musee-du-quai-branly-stephane-martin\",\n        \"haute-voltige-il-a-fait-un-avion-tout-seul\",\n        \"les-meilleurs-apprentis-de-france-a-grand-paris-sud\",\n        \"voyagez-dans-le-monde-fantastique-du-theatre-avec-les-ateliers-13-15-ans-du-conservatoire-iannis-xenakis\",\n        \"grand-paris-sud-forme-ses-villes-partenaires-de-dakar-bamako-et-nouakchott-pour-le-marathon-cinema\",\n        \"idees-noel-4-cadeaux-vintage-dans-les-ressourceries-de-la-fabrique-a-neuf\",\n        \"idees-noel-3-les-jouets-papo-le-monde-en-miniatures\",\n        \"les-vacances-continuent-a-grand-paris-sud-22-10-2017\",\n        \"vert-saint-denis-du-moyen-age-a-la-ville-nouvelle\",\n        \"les-participants-aux-ateliers-d-ecriture-de-wilfried-n-sonde-montent-sur-scene\",\n        \"jade-albert-championne-de-france-de-tae-kwon-do\",\n        \"portes-ouvertes-a-la-faculte-des-metiers-de-l-essonne\",\n        \"9-food-trucks-pour-dejeuner-a-grand-paris-sud\",\n        \"qu-est-ce-qu-on-fait-pendant-les-vacances-d-hiver-a-grand-paris-sud\",\n        \"des-bonbons-ou-des-sorts-cette-semaine-frissons-garantis-pour-halloween-a-grand-paris-sud\",\n        \"une-nouvelle-bibliotheque-universitaire\",\n        \"la-maison-de-l-ecole-vous-ouvre-ses-portes\",\n        \"demandez-le-programme-c-est-la-rentree-culturelle-a-grand-paris-sud\",\n        \"les-vacances-de-noel-a-grand-paris-sud\",\n        \"au-coeur-du-theatre-senart\",\n        \"corbeil-le-plus-ancien-marche-de-nos-communes\",\n        \"les-virades-de-l-espoir-au-coeur-de-la-recherche\",\n        \"tigery-sur-les-traces-des-premiers-habitants-de-grand-paris-sud\",\n        \"grand-paris-sud-au-sitem\",\n        \"bravo-aux-5-000-senartaises\",\n        \"un-apres-midi-au-jardin-de-l-ellipse-a-grigny\",\n        \"la-nuit-de-l-orientation-a-la-cci-d-evry\",\n        \"vous-aimez-le-jazz-vous-adorerez-la-danse-jazz\",\n        \"lucie-page-expose-a-paris\",\n        \"chanteur-amateur-et-passionne\",\n        \"festival-de-jeux-senlud\",\n        \"idees-noel-5-l-art-de-la-confiture-made-in-corbeil-essonnes\",\n        \"artefacts-les-transformations-du-livre\",\n        \"ana-perez-ventura-peint-la-musique\",\n        \"la-maison-du-silence-a-evry\",\n        \"l-athletisme-brille-a-grand-paris-sud\",\n        \"les-parcs-de-jeux-pres-de-chez-vous\",\n        \"humour-en-seine-2016-qu-attendez-vous-pour-devenir-celebre\",\n        \"sport-bienvenue-a-l-ufolep\",\n        \"amenagement-pour-mieux-jouer-a-la-grande-borne\",\n        \"le-street-workout-fait-des-emules\",\n        \"samedi-3-septembre-ne-manquez-pas-le-depart-de-la-nuit-des-laveuses\",\n        \"nos-rues-ont-une-histoire\",\n        \"rencontre-des-jonglages-en-escale-a-evry\",\n        \"evry-trail-urbain-de-toutes-les-couleurs\",\n        \"les-rendez-vous-de-l-ethique\",\n        \"la-compagnie-du-lac-recrute\",\n        \"bons-plans-coulisses-et-decouvertes-insolites-avec-l-office-de-tourisme\",\n        \"idees-noel-2-faites-vos-courses-chez-les-artisans-locaux\",\n        \"bnf-quai-branly-la-culture-prioritaire-a-grand-paris-sud\",\n        \"wilfried-n-sonde-sur-les-traces-de-nsaku-ne-vunda\",\n        \"le-festival-wall-street-art-arrive-a-lieusaint\",\n        \"decouvrez-les-premiers-concerts-2017-du-plan\",\n        \"idees-noel-7-le-miel-de-tigery\",\n        \"le-sport-a-l-honneur\",\n        \"les-cinoches-programmation-du-mois-de-fevrier-2017\",\n        \"les-journees-europeennes-des-metiers-d-arts\",\n        \"un-ete-d-or-et-d-argent-pour-les-athletes-de-grand-paris-sud\",\n        \"la-ferme-du-bois-briard-une-histoire-de-cultures\",\n        \"course-solidaire-la-senartaise-les-inscriptions-sont-closes\",\n        \"c215-l-appel-de-la-foret-urbaine\",\n        \"au-college-choisissez-la-musique\",\n        \"astro-troue-les-toiles\",\n        \"consommer-local-a-grand-paris-sud\",\n        \"journee-des-droits-des-femmes-2018\",\n        \"la-vigne-en-essonne-toute-une-histoire\",\n        \"4-podiums-pour-l-as-handisport-tennis-de-table-d-evry\",\n        \"demos-projet-phare-de-la-philharmonie-de-paris\",\n        \"a-vous-la-clef-des-champs\",\n        \"et-les-gagnants-du-concours-photo-instagram-sont\",\n        \"un-retour-des-championnats-de-france-d-or-et-d-argent-pour-senart-gym\",\n        \"carre-loisirs-des-loisirs-a-portee-de-main\",\n        \"ouverture-d-une-gratuiterie\",\n        \"les-corsaires-et-les-myrmidons-en-veulent-plus\",\n        \"fete-de-la-musique-2017-a-grand-paris-sud\",\n        \"le-sport-est-a-l-honneur-sur-le-territoire-31-07-2017\",\n        \"en-balade-avec-l-office-de-tourisme-seine-essonne\",\n        \"chassez-les-oeufs-de-paques-a-grand-paris-sud\",\n        \"envie-de-vous-mettre-au-vert\",\n        \"lisses-et-villabe-la-renaissance-du-domaine-de-montauger\",\n        \"les-phenix-de-l-usro-roller-skating-championnes-de-france-2017-de-roller-hockey\",\n        \"retour-en-images-sur-le-1er-instameet-de-grand-paris-sud\",\n        \"les-cinoches-programmation-du-mois-de-mars-2017\",\n        \"les-travaux-de-renovation-de-la-mediatheque-de-l-agora-sont-termines\",\n        \"a-moissy-le-bonnet-se-porte-toute-l-annee\",\n        \"evry-games-city-3e-edition\",\n        \"une-brasserie-a-moissy-l-instant-c-est-pas-d-la-p-tite-biere\",\n        \"art-et-numerique-en-resonnance\",\n        \"journees-des-arts-visuels-numeriques-le-programme-du-22-avril\",\n        \"un-pentagliss-de-25m-au-centre-aquatique-de-moissy-cramayel\",\n        \"qu-est-ce-qu-on-fait-pendant-les-vacances-d-avril-a-grand-paris-sud\",\n        \"memoire-et-patrimoine-vivant-sur-grand-ecran-a-corbeil-essonnes\",\n        \"la-foret-de-rougeau-certifiee-fsc\",\n        \"entreprises-participez-au-10e-defi\",\n        \"patrice-terraz-un-autre-regard-sur-corbeil-essonnes\",\n        \"les-fetes-de-la-nature-de-grand-paris-sud\",\n        \"horaires-d-ete-des-equipements-culturels-de-l-agglo\",\n        \"la-table-de-laurent-ou-le-plaisir-de-la-gastronomie-pres-de-chez-vous\",\n        \"le-street-artiste-anglais-david-walker-rencontre-les-habitants-le-10-juin-prochain\",\n        \"festival-blues-in-senart\",\n        \"evry2-en-mode-gaming\",\n        \"la-natation-enseignee-aux-malentendants\",\n        \"les-soirees-des-grands-eleves-place-aux-jeunes-artistes\",\n        \"ou-fete-t-on-la-nouvelle-annee-a-grand-paris-sud\",\n        \"course-solidaire-la-senartaise-2018\",\n        \"louis-chaumier-de-la-classe-prepa-aux-arts-deco\",\n        \"decouvrez-le-jardin-d-essences-a-courcouronnes\",\n        \"un-nouveau-marche-en-centre-ville-pour-savigny-le-temple\",\n        \"la-photo-du-mois-de-grand-paris-sud-juin-2016\",\n        \"festival-wall-street-art-l-art-contemporain-a-cote-de-son-bureau\",\n        \"les-jours-de-marche-a-grand-paris-sud\",\n        \"street-art-decouvrez-l-oeuvre-darya-de-hendrik-belkirch\",\n        \"programme-marathon-du-cinema\",\n        \"les-jeunes-musiciens-de-demos-sur-la-scene-de-la-philharmonie-19-06-2017\",\n        \"vincent-boury-en-route-vers-les-championnats-d-europe-de-tennis-de-table-handisport\",\n        \"fintan-magee-street-artiste-australien-engage\",\n        \"la-nuit-des-musees-a-grand-paris-sud\",\n        \"lacs-de-grigny-l-enclave-verte\",\n        \"9eme-fete-des-jardins-a-soisy-sur-seine\",\n        \"les-trois-soirees-des-grands-eleves-du-conservatoire-d-evry\",\n        \"familles-a-energie-positive-saison-4\",\n        \"jours-de-marche-africain-a-evry2\",\n        \"ecb-de-koblenz-a-evry\",\n        \"piscines-ouvertes-en-alternance-le-week-end\",\n        \"la-fabrique-a-neuf\",\n        \"les-lavoirs-de-grand-paris-sud\",\n        \"certaines-piscines-de-l-agglo-fermees-le-week-end\",\n        \"clap-de-fin-pour-le-stage-d-orchestre-du-reseau-des-conservatoires\",\n        \"hendrik-beikirch-street-artiste-de-renommee-mondiale-au-wall-street-art-festival-de-grand-paris-sud-jusqu-au-11-juin\",\n        \"le-street-art-passe-a-la-fibre\",\n        \"retour-en-images-sur-la-6e-edition-de-la-senartaise\",\n        \"ris-orangis-bondoufle-un-pole-d-excellence-sportive-a-l-etude\",\n        \"c215-prochain-artiste-invite-du-festival-wall-street-art\",\n        \"centres-nautiques-a-l-eau-il-y-a-quelqu-un\",\n        \"fete-de-la-science-apprendre-est-un-jeu-d-enfant\",\n        \"le-choeur-variatio-recrute-des-chanteurs-dans-tous-les-pupitres\",\n        \"lisses-la-piscine-se-chauffera-ecolo\",\n        \"choisissez-la-zenitude-a-la-pause-meridienne\",\n        \"envie-de-vous-mettre-a-l-eau\",\n        \"alternatiba-le-village-des-possibles\",\n        \"les-journees-europeennes-du-patrimoine-a-grand-paris-sud\",\n        \"inauguration-de-la-fresque-de-ecb-15-06-2017\",\n        \"saith-bautista-a-grand-paris-sud\",\n        \"la-grande-collecte-contribuez-a-la-connaissance-historique-de-votre-territoire\",\n        \"un-ete-beethoven\",\n        \"plongez-dans-les-piscines-de-votre-agglomeration\",\n        \"la-marge-nouveau-terrain-d-experimentation-de-la-compagnie-du-theatre-de-la-mezzanine\",\n        \"le-plan-fait-son-opening\",\n        \"envie-d-une-experience-artistique-unique-venez-danser-pour-l-inauguration-de-la-marge\",\n        \"du-miel-a-l-ecomusee-de-savigny-le-temple\",\n        \"la-maison-des-gourmands-ouverte-a-corbeil-essonnes\",\n        \"chanter-a-plusieurs-c-est-bien-meilleur\",\n        \"le-polar-a-l-honneur-a-la-mediatheque-de-l-agora\",\n        \"virtual-adventure-le-nouvel-escape-game-en-4d-de-locked-up\",\n        \"grand-paris-sud-territoire-intelligent-et-apprenant\",\n        \"case-maclaim-par-dela-le-miroir\",\n        \"un-colloque-scientifique-sur-l-autonomie-de-la-personne\",\n        \"recette-speciale-fin-d-annee-avec-cuisine-mode-d-emploi-s\",\n        \"du-miel-en-essonne-a-la-miellerie-de-tigery\",\n        \"virtual-adventure-au-dela-de-la-realite\",\n        \"l-ecrivain-olivier-truc-invite-de-polar-en-seine\",\n        \"les-soleils-de-grand-paris-sud-premier-volet-d-un-clea-sur-le-territoire\",\n        \"fermeture-des-piscines-de-cesson-et-evry-pour-vidange\",\n        \"saith-bautista-art-passion\",\n        \"don-quichotte-est-a-la-marge\",\n        \"une-fete-de-la-foret-royale-31-08-2017\",\n        \"envie-de-profiter-encore-un-peu-des-vacances-avant-la-rentree\",\n        \"ouverture-des-inscriptions-des-conservatoires-du-reseau-grand-paris-sud-23-08-2017\",\n        \"plus-que-deux-courses-pour-remporter-le-challenge-grand-paris-sud\",\n        \"billy-renoir-artiste-evryen-multi-facettes\",\n        \"polar-en-seine-le-rendez-vous-incontournable-des-amateurs-de-romans-noirs\",\n        \"forums-des-associations-2017\",\n        \"sortez-vos-patins-c-est-la-fete-a-la-patinoire\",\n        \"l-agglo-met-en-valeur-son-patrimoine-industriel\",\n        \"villes-toiles-donne-la-parole-aux-femmes\",\n        \"fondez-pour-les-chocolats-des-artisans-locaux\",\n        \"inscriptions-de-mi-saison-aux-ateliers-d-arts-plastiques-de-grand-paris-sud\",\n        \"patrimoine-go-vivez-l-experience-de-chez-vous\",\n        \"les-journees-de-l-architecture-a-grand-paris-sud\",\n        \"bonnes-resolutions-2018-faites-le-plein-d-idees-pres-de-chez-vous\",\n        \"l-enfant-la-ville-et-le-street-art\",\n        \"histoire-et-patrimoine-il-nous-donne-les-clefs-de-saint-pierre\",\n        \"stages-de-chant-trouve-ta-voix-grand-paris-sud\",\n        \"faites-le-plein-d-activites-pendant-les-vacances-de-la-toussaint\",\n        \"la-piscine-de-lisses-a-fait-peau-neuve-venez-re-decouvrir-vos-bassins\",\n        \"unijam-2017-assister-a-la-creation-d-un-jeu-video-en-48h\",\n        \"concours-50-box-fetes-vous-plaisir-et-leurs-produits-locaux-a-gagner\",\n        \"telethon-2017-soutenez-le-run-bike-de-l-agglo\",\n        \"tennis-de-table-les-filles-de-l-as-corbeil-essonnes-ambassadrices-du-sport\",\n        \"faites-le-plein-de-decouvertes-au-domaine-de-montauger\",\n        \"les-piscines-ouvertes-le-dimanche\",\n        \"paul-wamo-le-poete-slameur-de-nouvelle-caledonie\",\n        \"polar-en-seine-meurtres-en-serie-a-grand-paris-sud\",\n        \"evry-village-la-corbeille-a-confitures-de-brigitte-le-pelletier\",\n        \"du-22-fevrier-au-4-mars-2018-les-vacances-continuent-a-grand-paris-sud\",\n        \"lady-art-car-pour-l-amour-de-l-auto-vintage\",\n        \"14-dec-lancement-de-la-rue-des-lumieres-avec-le-spectacle-pyrotechnique-incandescences\",\n        \"fetes-vous-plaisir-plus-de-20-idees-de-cadeaux-realises-pres-de-chez-vous\",\n        \"marathon-et-10-km-les-inscriptions-sont-ouvertes-pour-le-1er-mai\",\n        \"les-marches-de-noel-de-votre-agglo\",\n        \"kery-james-finance-une-bourse-pour-les-etudiants-de-grand-paris-sud\",\n        \"la-planete-sur-l-ecran-le-2e-ecofestival-du-cinema\",\n        \"la-maison-des-enfants-et-de-la-nature-a-grigny\",\n        \"etablissement-lefeuvre-consommez-local\",\n        \"tennis-club-de-saint-germain-les-corbeil-titouan-droguet-a-l-open-d-australie\",\n        \"les-ateliers-creatifs-du-reseau-des-mediatheques-de-grand-paris-sud\",\n        \"le-chateau-de-nandy-ce-heros-historique-du-cinema\",\n        \"cirque-de-l-essonne-la-balade-de-l-ete\",\n        \"salon-du-tourisme-a-saint-pierre-du-perray-liberez-votre-instinct-voyageur\",\n        \"la-nature-en-fete-au-cirque-de-l-essonne\"\n    ]\n}"}],"_postman_id":"7b4ed050-4c6c-40cc-9e51-0ec74de48f50"},{"name":"Show news","id":"b0305ebf-a3df-4d0e-a486-1e9dfa7bbeee","request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"https://api.publidata.io/v1/{{instance_id}}/news/{{news_id}}","description":"<p>Show d'une actualité</p>\n","urlObject":{"path":["v1","{{instance_id}}","news","{{news_id}}"],"host":["https://api.publidata.io"],"query":[],"variable":[]}},"response":[{"id":"fd635e0e-67e3-4ac2-ac14-92e7bfc49dc1","name":"Show news","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"publidata.io/api/v1/portail-sortir-gps/news/320"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"max-age=0, private, must-revalidate","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 13 Mar 2018 15:21:08 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Etag","value":"W/\"52a532484847e0606b908ccae942fcc3\"","name":"Etag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"Cowboy","name":"Server","description":"A name for the server"},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity."},{"key":"Vary","value":"Origin","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"Via","value":"1.1 vegur","name":"Via","description":"Informs the client of proxies through which the response was sent."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Request-Id","value":"7ee0e32c-12db-4811-8b0e-595c5789c496","name":"X-Request-Id","description":"Custom header"},{"key":"X-Runtime","value":"0.100152","name":"X-Runtime","description":"Custom header"},{"key":"X-Xss-Protection","value":"1; mode=block","name":"X-Xss-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":null,"body":"{\"id\":320,\"name\":\"Le sud francilien a son salon business !\",\"slug\":\"le-sud-francilien-a-son-salon-business\",\"blurb\":\"Entrepreneurs et acteurs économiques du territoire, ne manquez pas l’événement B2B de l’automne ! Rendez-vous à Lieusaint jeudi 17 novembre au Salon Business Sud Francilien. Inscriptions jusqu’au 10 novembre. (Entrée libre)\",\"body\":\"\\u003cp align=\\\"justify\\\"\\u003eC’est chose faite : les acteurs économiques du sud francilien ont leur salon, et notre agglomération est au rendez-vous ! Le 17 novembre, à l’initiative de l’association des Entreprises du Sud Francilien (ESF), 500 dirigeants d’entreprises de notre bassin d’activité, les représentants des collectivités et de nombreux élus seront réunis dans les locaux de l’ICAM Paris Sénart (Lieusaint) pour partager leurs idées et leur expertise. L’objectif d’ESF ? Créer des liens constructifs entre les professionnels et participer aux côtés des acteurs institutionnels au développement économique du territoire. \\u003c/p\\u003e\\u003cp align=\\\"justify\\\"\\u003e\\u003cb\\u003eDévelopper vos réseaux et susciter des opportunités\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp align=\\\"justify\\\"\\u003eAu programme : 65 exposants pour échanger, des conférences thématiques pour s’informer, un pôle dédié aux partenaires du territoire et aux experts (avocats, notaires, experts-comptables)… Aussi arrêtez-vous un moment sur le stand de Grand Paris Sud pour rencontrer nos équipes et en apprendre davantage sur les ressources de notre agglomération. Et parce que la vie professionnelle n’est pas toujours un long fleuve tranquille, testez donc l’espace zen. Vous y apprendrez notamment que, pour mieux rebondir en affaire, il faut aussi développer…une bonne détente. \\u003c/p\\u003e\\u003cp align=\\\"justify\\\"\\u003e\\u003cb\\u003eRéserver votre stand jusqu’au 10 novembre\\u003cbr\\u003e\\u003c/b\\u003e\\u003c/p\\u003e\\u003cp align=\\\"justify\\\"\\u003eLes professionnels de tous les secteurs et d'entreprises de toute taille souhaitant disposer d’un stand pour présenter leurs activités lors du salon sont invités à adresser leur demande d’inscription à l’équipe d’ESF avant le 10 novembre. L’événement se déroulera de 15h à 19h et s’achèvera à l’issue d’un cocktail dinatoire par une soirée conviviale (19h30-22h), pour prendre le temps de partager davantage.\\u003c/p\\u003e\\u003cp align=\\\"justify\\\"\\u003eTarifs, inscriptions et renseignements\\u003c/p\\u003e\\u003cp align=\\\"justify\\\"\\u003eStand + cocktail dinatoire + soirée : 200 € (adhérents) ou 250 € (non-adhérents).\\u003c/p\\u003e\\u003cp align=\\\"justify\\\"\\u003eSoirée seule : 45 € (adhérents) ou 50 € (non-adhérents).\\u003c/p\\u003e\\u003cp style=\\\"\\\" class=\\\"\\\" align=\\\"justify\\\"\\u003e\\u003cbr\\u003e\\u003c/p\\u003e\\u003cp align=\\\"justify\\\"\\u003eInscrivez-vous en ligne ici et consultez le programme de l’événement sur \\u003ca href=\\\"http://esf-asso.org/\\\"\\u003e\\u003cspan data-href=\\\"http://esf-asso.org/\\\" data-auto-link=\\\"true\\\"\\u003ehttp://esf-asso.org/\\u003c/span\\u003e\\u003c/a\\u003e \\u003c/p\\u003e\\u003cp align=\\\"justify\\\"\\u003e\\u003cbr\\u003e\\u003c/p\\u003e\\u003cp align=\\\"justify\\\"\\u003eSe rendre à l’ICAM Paris Sénart : Carré Sénart, 34 Points de vue, 77127 Lieusaint\\u003c/p\\u003e\\u003cp style=\\\"\\\" class=\\\"\\\" align=\\\"justify\\\"\\u003e\\u003cbr\\u003e\\u003c/p\\u003e\\u003cp align=\\\"justify\\\"\\u003e\\u003ci\\u003eESF (ex-Sénart Entreprises) est une des plus importantes associations du sud-est francilien. Créée en 1995, le réseau compte aujourd’hui 220 entreprises adhérentes, des TPE-PME aux structures de plus de 50 salariés, tous secteurs d’activités confondus. Petits déjeuners thématiques, événements sportifs, dîners-débats, speed business meeting et soirées festives… L’association multiplie les rencontres en direction de ses adhérents et des acteurs institutionnels pour fédérer les réseaux de compétences et assoir leur représentativité dans le sud francilien.\\u003c/i\\u003e\\u003c/p\\u003e\\u003cp\\u003e \\u003c/p\\u003e\\u003cp\\u003eContact : Mme Faustine CESCUT – faustine.cescut@esf-asso.org  et 07 60 91 24 03\\u003c/p\\u003e\\u003cp\\u003e \\u003c/p\\u003e\\u003cdiv class=\\\"medium-insert-buttons\\\" style=\\\"left: 45px; top: 436.8px; display: none;\\\" contenteditable=\\\"false\\\"\\u003e\\r\\n    \\u003cbutton class=\\\"medium-insert-buttons-show\\\" type=\\\"button\\\"\\u003e\\u003cspan\\u003e+\\u003c/span\\u003e\\u003c/button\\u003e\\r\\n    \\u003cul class=\\\"medium-insert-buttons-addons\\\" style=\\\"display: none\\\"\\u003e\\r\\n            \\u003cli\\u003e\\u003cbutton style=\\\"\\\" data-addon=\\\"images\\\" data-action=\\\"add\\\" class=\\\"medium-insert-action\\\" type=\\\"button\\\"\\u003e\\u003cspan class=\\\"fa fa-camera\\\"\\u003e\\u003c/span\\u003e\\u003c/button\\u003e\\u003c/li\\u003e\\r\\n            \\u003cli\\u003e\\u003cbutton data-addon=\\\"embeds\\\" data-action=\\\"add\\\" class=\\\"medium-insert-action\\\" type=\\\"button\\\"\\u003e\\u003cspan class=\\\"fa fa-youtube-play\\\"\\u003e\\u003c/span\\u003e\\u003c/button\\u003e\\u003c/li\\u003e\\r\\n    \\u003c/ul\\u003e\\r\\n\\u003c/div\\u003e\",\"release_raw_date\":\"2016-09-30T13:46:00.000+02:00\",\"release_date\":\"30/09/2016\",\"release_hour\":\"13:46:00\",\"cover_picture\":{\"small\":\"https://publidata-prod.s3.amazonaws.com/production/images/images/000/008/609/cover_small/BSF2016_Invitation.jpg?1474890610\",\"small_dimensions\":\"141x300\",\"medium\":\"https://publidata-prod.s3.amazonaws.com/production/images/images/000/008/609/cover_medium/BSF2016_Invitation.jpg?1474890610\",\"medium_dimensions\":\"283x600\",\"large\":\"https://publidata-prod.s3.amazonaws.com/production/images/images/000/008/609/cover_large/BSF2016_Invitation.jpg?1474890610\",\"large_dimensions\":\"471x1000\",\"xlarge\":\"https://publidata-prod.s3.amazonaws.com/production/images/images/000/008/609/cover_xlarge/BSF2016_Invitation.jpg?1474890610\",\"xlarge_dimensions\":\"943x2000\",\"alt\":\"image de couverture de Le sud francilien a son salon business !\",\"name\":\"image de couverture de Le sud francilien a son salon business !\",\"slug\":\"image-de-couverture-de-le-sud-francilien-a-son-salon-business\",\"description\":\"image de couverture de Le sud francilien a son salon business !\",\"copyright\":\"\"},\"contents\":{\"images\":[{\"name\":\"Bulletin d'inscription\",\"slug\":\"bulletin-d-inscription\",\"alt\":\"Bulletin d'inscription\",\"order\":1,\"description\":\"Bulletin d'inscription au salon, à remplir et à retourner à l'association ESF\",\"copyright\":\"\",\"image_small\":\"https://publidata-prod.s3.amazonaws.com/production/images/images/000/008/608/image_small/BSF2016_Inscriptions.jpg?1474890610\",\"image_small_dimensions\":\"189x400\",\"image_medium\":\"https://publidata-prod.s3.amazonaws.com/production/images/images/000/008/608/image_medium/BSF2016_Inscriptions.jpg?1474890610\",\"image_medium_dimensions\":\"377x800\",\"image_large\":\"https://publidata-prod.s3.amazonaws.com/production/images/images/000/008/608/image_large/BSF2016_Inscriptions.jpg?1474890610\",\"image_large_dimensions\":\"604x1280\",\"image_xlarge\":\"https://publidata-prod.s3.amazonaws.com/production/images/images/000/008/608/image_xlarge/BSF2016_Inscriptions.jpg?1474890610\",\"image_xlarge_dimensions\":\"943x2000\"}],\"documents\":[],\"links\":[],\"videos\":[]},\"linked_objects\":{\"cities\":[],\"agglomerations\":[{\"id\":4,\"organization_id\":52,\"name\":\"Grand Paris Sud\",\"slug\":\"grand-paris-sud\"}],\"departments\":[],\"regions\":[],\"events\":[],\"event_groups\":[],\"facilities\":[],\"elects\":[],\"skills\":[]},\"organizations\":[{\"name\":\"Grand Paris Sud\",\"slug\":\"grand-paris-sud\",\"blurb\":\"Une nouvelle agglomération au sud de l'Île-­de-­France qui regroupe 24 communes sur deux départements, l'Essonne et la Seine­-et­-Marne.\\r\\nAvec ses 331 747 habitants, Grand Paris Sud est le cinquième territoire francilien en nombre d'habitants et l'un des moteurs de la croissance démographique de la région Île­-de-France.\",\"address\":\"500, place des Champs Elysées, 91080 Courcouronnes\"}],\"pages\":[{\"id\":1493,\"instance\":{\"slug\":\"portail-institutionnel-gps\"}}]}"}],"_postman_id":"b0305ebf-a3df-4d0e-a486-1e9dfa7bbeee"},{"name":"Search","id":"f69b25bf-71d3-4d42-976d-4ee52b999cf7","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v1/{{instance_id}}/news?q&size=10&page=1&marker=false&instances[]=2&performers[]=Nakht&facilities[]=8&events[]=1&event_groups[]=1&news[]=1&projects[]=1&cities[]=7&departments[]=1&regions[]=1&skills[]=1&elects[]=1&epcis[]=1&bbox[]&themes[]=1","description":"<p>Index des projets</p>\n","urlObject":{"path":["v1","{{instance_id}}","news"],"host":["https://api.publidata.io"],"query":[{"key":"q","value":null},{"key":"size","value":"10"},{"key":"page","value":"1"},{"key":"marker","value":"false"},{"key":"instances[]","value":"2"},{"key":"performers[]","value":"Nakht"},{"key":"facilities[]","value":"8"},{"key":"events[]","value":"1"},{"key":"event_groups[]","value":"1"},{"key":"news[]","value":"1"},{"key":"projects[]","value":"1"},{"key":"cities[]","value":"7"},{"key":"departments[]","value":"1"},{"key":"regions[]","value":"1"},{"key":"skills[]","value":"1"},{"key":"elects[]","value":"1"},{"key":"epcis[]","value":"1"},{"key":"bbox[]","value":null},{"key":"themes[]","value":"1"}],"variable":[]}},"response":[{"id":"f71f2795-775c-49fc-bfd6-df4d14a9e691","name":"Index projects","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"publidata.io/api/v1/portail-projets-gps/projects"},"code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"projects\": [\n        {\n            \"id\": 2,\n            \"name\": \"Projet de territoire\",\n            \"slug\": \"projet-de-territoire\",\n            \"start_date\": \"2016-05-01T00:00:00.000+02:00\",\n            \"end_date\": \"2017-12-31T00:00:00.000+01:00\",\n            \"cover_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/006/651/cover_small/bandeau-projet-territoire-grandparissud.jpg?1513613827\",\n                \"small_dimensions\": \"300x70\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/006/651/cover_medium/bandeau-projet-territoire-grandparissud.jpg?1513613827\",\n                \"medium_dimensions\": \"600x140\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/006/651/cover_large/bandeau-projet-territoire-grandparissud.jpg?1513613827\",\n                \"large_dimensions\": \"1000x233\",\n                \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/006/651/cover_xlarge/bandeau-projet-territoire-grandparissud.jpg?1513613827\",\n                \"xlarge_dimensions\": \"1596x372\",\n                \"alt\": \"image de couverture de Projet de territoire\",\n                \"name\": \"image de couverture de Projet de territoire\",\n                \"slug\": \"image-de-couverture-de-projet-de-territoire-9832a840-c61d-4102-9bbe-a81ee34914fb\",\n                \"description\": \"image de couverture de Projet de territoire\",\n                \"copyright\": \"agglomération Grand Paris Sud\"\n            },\n            \"pages\": [\n                {\n                    \"id\": 1321,\n                    \"instance\": {\n                        \"slug\": \"portail-projets-gps\"\n                    }\n                },\n                {\n                    \"id\": 8381,\n                    \"instance\": {\n                        \"slug\": \"portail-projets-gps\"\n                    }\n                }\n            ],\n            \"sub_projects\": [\n                {\n                    \"id\": 3,\n                    \"name\": \"Concertation élus communautaires \",\n                    \"slug\": \"concertation-elus-communautaires\",\n                    \"start_date\": \"2016-05-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2016-10-15T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/087/cover_small/seminaire-elus-grand-paris-sud%281%29samedi_12_mai.JPG?1473715424\",\n                        \"small_dimensions\": \"300x200\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/087/cover_medium/seminaire-elus-grand-paris-sud%281%29samedi_12_mai.JPG?1473715424\",\n                        \"medium_dimensions\": \"600x400\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/087/cover_large/seminaire-elus-grand-paris-sud%281%29samedi_12_mai.JPG?1473715424\",\n                        \"large_dimensions\": \"1000x667\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/087/cover_xlarge/seminaire-elus-grand-paris-sud%281%29samedi_12_mai.JPG?1473715424\",\n                        \"xlarge_dimensions\": \"1280x854\",\n                        \"alt\": \"image de couverture de Concertation élus communautaires \",\n                        \"name\": \"image de couverture de Concertation élus communautaires \",\n                        \"slug\": \"image-de-couverture-de-concertation-elus-communautaires\",\n                        \"description\": \"image de couverture de Concertation élus communautaires \",\n                        \"copyright\": \"agglomération Grand Paris Sud\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 1322,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 4,\n                    \"name\": \"Concertation élus municipaux\",\n                    \"slug\": \"concertation-elus-municipaux\",\n                    \"start_date\": \"2016-05-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2016-06-30T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/075/cover_small/seminaire-elus-municipaux-grand-paris-sud_%282%29.JPG?1473715036\",\n                        \"small_dimensions\": \"300x200\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/075/cover_medium/seminaire-elus-municipaux-grand-paris-sud_%282%29.JPG?1473715036\",\n                        \"medium_dimensions\": \"600x400\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/075/cover_large/seminaire-elus-municipaux-grand-paris-sud_%282%29.JPG?1473715036\",\n                        \"large_dimensions\": \"1000x666\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/075/cover_xlarge/seminaire-elus-municipaux-grand-paris-sud_%282%29.JPG?1473715036\",\n                        \"xlarge_dimensions\": \"1280x853\",\n                        \"alt\": \"image de couverture de Concertation élus municipaux\",\n                        \"name\": \"image de couverture de Concertation élus municipaux\",\n                        \"slug\": \"image-de-couverture-de-concertation-elus-municipaux\",\n                        \"description\": \"image de couverture de Concertation élus municipaux\",\n                        \"copyright\": \"agglomération Grand Paris Sud\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 1323,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 5,\n                    \"name\": \"Concertation partenaires et associations\",\n                    \"slug\": \"concertation-partenaires-et-associations\",\n                    \"start_date\": \"2016-06-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2016-09-30T00:00:00.000+02:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 1332,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 6,\n                    \"name\": \"Concertation agents\",\n                    \"slug\": \"concertation-agents\",\n                    \"start_date\": \"2016-07-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2016-08-31T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/057/cover_small/projet-territoire-grand-paris-sud-personnel_%282%29_jeudi_21_juillet.jpg?1473713810\",\n                        \"small_dimensions\": \"300x168\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/057/cover_medium/projet-territoire-grand-paris-sud-personnel_%282%29_jeudi_21_juillet.jpg?1473713810\",\n                        \"medium_dimensions\": \"600x336\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/057/cover_large/projet-territoire-grand-paris-sud-personnel_%282%29_jeudi_21_juillet.jpg?1473713810\",\n                        \"large_dimensions\": \"1000x560\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/057/cover_xlarge/projet-territoire-grand-paris-sud-personnel_%282%29_jeudi_21_juillet.jpg?1473713810\",\n                        \"xlarge_dimensions\": \"1280x717\",\n                        \"alt\": \"image de couverture de Concertation agents\",\n                        \"name\": \"image de couverture de Concertation agents\",\n                        \"slug\": \"image-de-couverture-de-concertation-agents\",\n                        \"description\": \"image de couverture de Concertation agents\",\n                        \"copyright\": \"agglomération Grand Paris Sud\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 1328,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 17,\n                    \"name\": \"Concertation CME et CJ\",\n                    \"slug\": \"concertation-cme-et-cj\",\n                    \"start_date\": \"2016-07-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2016-10-15T00:00:00.000+02:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 1408,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 7,\n                    \"name\": \"Concertation des habitants\",\n                    \"slug\": \"concertation-des-habitants\",\n                    \"start_date\": \"2016-09-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2016-11-15T00:00:00.000+01:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 1329,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 8,\n                    \"name\": \"Synthèse de la concertation\",\n                    \"slug\": \"synthese-de-la-concertation\",\n                    \"start_date\": \"2016-10-16T00:00:00.000+02:00\",\n                    \"end_date\": \"2017-03-30T00:00:00.000+02:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 1330,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 9,\n                    \"name\": \"Adoption du projet de territoire\",\n                    \"slug\": \"adoption-du-projet-de-territoire\",\n                    \"start_date\": \"2017-06-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2017-06-30T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/894/cover_small/adoption-projet-territoire-grandparissud.jpg?1474447897\",\n                        \"small_dimensions\": \"300x200\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/894/cover_medium/adoption-projet-territoire-grandparissud.jpg?1474447897\",\n                        \"medium_dimensions\": \"600x400\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/894/cover_large/adoption-projet-territoire-grandparissud.jpg?1474447897\",\n                        \"large_dimensions\": \"1000x667\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/894/cover_xlarge/adoption-projet-territoire-grandparissud.jpg?1474447897\",\n                        \"xlarge_dimensions\": \"2000x1333\",\n                        \"alt\": \"image de couverture de Adoption du projet de territoire\",\n                        \"name\": \"image de couverture de Adoption du projet de territoire\",\n                        \"slug\": \"image-de-couverture-de-adoption-du-projet-de-territoire\",\n                        \"description\": \"image de couverture de Adoption du projet de territoire\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 1331,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                }\n            ]\n        },\n        {\n            \"id\": 26,\n            \"name\": \"Tram 12 express / Requalification du Bois Briard\",\n            \"slug\": \"tram-12-express-requalification-du-bois-briard\",\n            \"start_date\": \"2015-04-01T00:00:00.000+02:00\",\n            \"end_date\": \"2020-06-30T00:00:00.000+02:00\",\n            \"cover_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/168/cover_small/Perspective-tram12.png?1487925596\",\n                \"small_dimensions\": \"300x178\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/168/cover_medium/Perspective-tram12.png?1487925596\",\n                \"medium_dimensions\": \"600x356\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/168/cover_large/Perspective-tram12.png?1487925596\",\n                \"large_dimensions\": \"1000x593\",\n                \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/168/cover_xlarge/Perspective-tram12.png?1487925596\",\n                \"xlarge_dimensions\": \"2000x1186\",\n                \"alt\": \"image de couverture de Tram 12 express / Requalification du Bois Briard\",\n                \"name\": \"image de couverture de Tram 12 express / Requalification du Bois Briard\",\n                \"slug\": \"image-de-couverture-de-tram-12-express-requalification-du-bois-briard\",\n                \"description\": \"image de couverture de Tram 12 express / Requalification du Bois Briard\",\n                \"copyright\": \"\"\n            },\n            \"pages\": [\n                {\n                    \"id\": 4030,\n                    \"instance\": {\n                        \"slug\": \"portail-projets-gps\"\n                    }\n                }\n            ],\n            \"sub_projects\": [\n                {\n                    \"id\": 27,\n                    \"name\": \"Concertation préalable requalification RD 446\",\n                    \"slug\": \"concertation-prealable-requalification-rd-446\",\n                    \"start_date\": \"2015-04-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2015-10-01T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/302/cover_small/Perspective-tram12.png?1488205439\",\n                        \"small_dimensions\": \"300x178\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/302/cover_medium/Perspective-tram12.png?1488205439\",\n                        \"medium_dimensions\": \"600x356\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/302/cover_large/Perspective-tram12.png?1488205439\",\n                        \"large_dimensions\": \"1000x593\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/302/cover_xlarge/Perspective-tram12.png?1488205439\",\n                        \"xlarge_dimensions\": \"2000x1186\",\n                        \"alt\": \"image de couverture de Concertation préalable requalification RD 446\",\n                        \"name\": \"image de couverture de Concertation préalable requalification RD 446\",\n                        \"slug\": \"image-de-couverture-de-concertation-prealable-requalification-rd-446\",\n                        \"description\": \"image de couverture de Concertation préalable requalification RD 446\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 4069,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 28,\n                    \"name\": \"Enquête publique\",\n                    \"slug\": \"enquete-publique\",\n                    \"start_date\": \"2016-02-01T00:00:00.000+01:00\",\n                    \"end_date\": \"2016-07-02T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/312/cover_small/Perspective-tram12.png?1488201990\",\n                        \"small_dimensions\": \"300x178\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/312/cover_medium/Perspective-tram12.png?1488201990\",\n                        \"medium_dimensions\": \"600x356\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/312/cover_large/Perspective-tram12.png?1488201990\",\n                        \"large_dimensions\": \"1000x593\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/312/cover_xlarge/Perspective-tram12.png?1488201990\",\n                        \"xlarge_dimensions\": \"2000x1186\",\n                        \"alt\": \"image de couverture de Enquête publique\",\n                        \"name\": \"image de couverture de Enquête publique\",\n                        \"slug\": \"image-de-couverture-de-enquete-publique\",\n                        \"description\": \"image de couverture de Enquête publique\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 4033,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 29,\n                    \"name\": \"Réunion publique \",\n                    \"slug\": \"reunion-publique\",\n                    \"start_date\": \"2016-11-29T00:00:00.000+01:00\",\n                    \"end_date\": \"2016-11-29T00:00:00.000+01:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/307/cover_small/ANL_5670.jpg?1488201053\",\n                        \"small_dimensions\": \"300x200\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/307/cover_medium/ANL_5670.jpg?1488201053\",\n                        \"medium_dimensions\": \"600x399\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/307/cover_large/ANL_5670.jpg?1488201053\",\n                        \"large_dimensions\": \"1000x666\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/307/cover_xlarge/ANL_5670.jpg?1488201053\",\n                        \"xlarge_dimensions\": \"2000x1331\",\n                        \"alt\": \"image de couverture de Réunion publique \",\n                        \"name\": \"image de couverture de Réunion publique \",\n                        \"slug\": \"image-de-couverture-de-reunion-publique\",\n                        \"description\": \"image de couverture de Réunion publique \",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 4036,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 30,\n                    \"name\": \"Travaux de déboisage \",\n                    \"slug\": \"travaux-de-deboisage\",\n                    \"start_date\": \"2017-02-27T00:00:00.000+01:00\",\n                    \"end_date\": \"2017-03-05T00:00:00.000+01:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/303/cover_small/N.446_DSC3739.jpg?1488200468\",\n                        \"small_dimensions\": \"300x200\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/303/cover_medium/N.446_DSC3739.jpg?1488200468\",\n                        \"medium_dimensions\": \"600x400\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/303/cover_large/N.446_DSC3739.jpg?1488200468\",\n                        \"large_dimensions\": \"1000x667\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/303/cover_xlarge/N.446_DSC3739.jpg?1488200468\",\n                        \"xlarge_dimensions\": \"2000x1335\",\n                        \"alt\": \"image de couverture de Travaux de déboisage \",\n                        \"name\": \"image de couverture de Travaux de déboisage \",\n                        \"slug\": \"image-de-couverture-de-travaux-de-deboisage\",\n                        \"description\": \"image de couverture de Travaux de déboisage \",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 4039,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 31,\n                    \"name\": \"Travaux préparatoires\",\n                    \"slug\": \"travaux-preparatoires\",\n                    \"start_date\": \"2017-03-06T00:00:00.000+01:00\",\n                    \"end_date\": \"2017-03-12T00:00:00.000+01:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/308/cover_small/Am%C3%A9nagement_du_secteur_Delouvrier.png?1488201549\",\n                        \"small_dimensions\": \"300x159\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/308/cover_medium/Am%C3%A9nagement_du_secteur_Delouvrier.png?1488201549\",\n                        \"medium_dimensions\": \"600x318\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/308/cover_large/Am%C3%A9nagement_du_secteur_Delouvrier.png?1488201549\",\n                        \"large_dimensions\": \"1000x529\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/308/cover_xlarge/Am%C3%A9nagement_du_secteur_Delouvrier.png?1488201549\",\n                        \"xlarge_dimensions\": \"2000x1059\",\n                        \"alt\": \"image de couverture de Travaux préparatoires\",\n                        \"name\": \"image de couverture de Travaux préparatoires\",\n                        \"slug\": \"image-de-couverture-de-travaux-preparatoires\",\n                        \"description\": \"image de couverture de Travaux préparatoires\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 4042,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 32,\n                    \"name\": \"Fermeture de l’échangeur Delouvrier\",\n                    \"slug\": \"fermeture-de-l-echangeur-delouvrier\",\n                    \"start_date\": \"2017-03-21T00:00:00.000+01:00\",\n                    \"end_date\": \"2018-06-30T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/299/cover_small/Perspective-_-carrefour_-Delouvrier.jpg?1488199631\",\n                        \"small_dimensions\": \"300x169\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/299/cover_medium/Perspective-_-carrefour_-Delouvrier.jpg?1488199631\",\n                        \"medium_dimensions\": \"600x338\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/299/cover_large/Perspective-_-carrefour_-Delouvrier.jpg?1488199631\",\n                        \"large_dimensions\": \"1000x563\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/299/cover_xlarge/Perspective-_-carrefour_-Delouvrier.jpg?1488199631\",\n                        \"xlarge_dimensions\": \"1210x681\",\n                        \"alt\": \"image de couverture de Fermeture de l’échangeur Delouvrier\",\n                        \"name\": \"image de couverture de Fermeture de l’échangeur Delouvrier\",\n                        \"slug\": \"image-de-couverture-de-fermeture-de-l-echangeur-delouvrier\",\n                        \"description\": \"image de couverture de Fermeture de l’échangeur Delouvrier\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 4026,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 33,\n                    \"name\": \"Requalification de la RD 446\",\n                    \"slug\": \"requalification-de-la-rd-446\",\n                    \"start_date\": \"2017-03-13T00:00:00.000+01:00\",\n                    \"end_date\": \"2018-08-31T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/304/cover_small/carte-travaux-delouvrier-grandparissud.PNG?1490690689\",\n                        \"small_dimensions\": \"300x159\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/304/cover_medium/carte-travaux-delouvrier-grandparissud.PNG?1490690689\",\n                        \"medium_dimensions\": \"600x317\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/304/cover_large/carte-travaux-delouvrier-grandparissud.PNG?1490690689\",\n                        \"large_dimensions\": \"1000x529\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/304/cover_xlarge/carte-travaux-delouvrier-grandparissud.PNG?1490690689\",\n                        \"xlarge_dimensions\": \"1190x629\",\n                        \"alt\": \"image de couverture de Requalification de la RD 446\",\n                        \"name\": \"image de couverture de Requalification de la RD 446\",\n                        \"slug\": \"image-de-couverture-de-requalification-de-la-rd-446\",\n                        \"description\": \"image de couverture de Requalification de la RD 446\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 4045,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 34,\n                    \"name\": \"Début des travaux Tram 12 express\",\n                    \"slug\": \"debut-des-travaux-tram-12-express\",\n                    \"start_date\": \"2018-01-03T00:00:00.000+01:00\",\n                    \"end_date\": \"2018-07-01T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/298/cover_small/Perspective-Evry.png?1488199442\",\n                        \"small_dimensions\": \"300x178\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/298/cover_medium/Perspective-Evry.png?1488199442\",\n                        \"medium_dimensions\": \"600x356\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/298/cover_large/Perspective-Evry.png?1488199442\",\n                        \"large_dimensions\": \"1000x593\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/298/cover_xlarge/Perspective-Evry.png?1488199442\",\n                        \"xlarge_dimensions\": \"1999x1186\",\n                        \"alt\": \"image de couverture de Début des travaux Tram 12 express\",\n                        \"name\": \"image de couverture de Début des travaux Tram 12 express\",\n                        \"slug\": \"image-de-couverture-de-debut-des-travaux-tram-12-express\",\n                        \"description\": \"image de couverture de Début des travaux Tram 12 express\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 4048,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 35,\n                    \"name\": \"Ouverture boulevard urbain\",\n                    \"slug\": \"ouverture-boulevard-urbain\",\n                    \"start_date\": \"2018-07-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2019-06-30T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/305/cover_small/Perspective-Evry.png?1488200796\",\n                        \"small_dimensions\": \"300x178\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/305/cover_medium/Perspective-Evry.png?1488200796\",\n                        \"medium_dimensions\": \"600x356\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/305/cover_large/Perspective-Evry.png?1488200796\",\n                        \"large_dimensions\": \"1000x593\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/305/cover_xlarge/Perspective-Evry.png?1488200796\",\n                        \"xlarge_dimensions\": \"1999x1186\",\n                        \"alt\": \"image de couverture de Ouverture boulevard urbain\",\n                        \"name\": \"image de couverture de Ouverture boulevard urbain\",\n                        \"slug\": \"image-de-couverture-de-ouverture-boulevard-urbain\",\n                        \"description\": \"image de couverture de Ouverture boulevard urbain\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 4051,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 36,\n                    \"name\": \"Fin des travaux d'aménagement\",\n                    \"slug\": \"fin-des-travaux-d-amenagement\",\n                    \"start_date\": \"2019-07-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2020-06-30T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/306/cover_small/Perspective-tram12.png?1488200844\",\n                        \"small_dimensions\": \"300x178\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/306/cover_medium/Perspective-tram12.png?1488200844\",\n                        \"medium_dimensions\": \"600x356\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/306/cover_large/Perspective-tram12.png?1488200844\",\n                        \"large_dimensions\": \"1000x593\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/306/cover_xlarge/Perspective-tram12.png?1488200844\",\n                        \"xlarge_dimensions\": \"2000x1186\",\n                        \"alt\": \"image de couverture de Fin des travaux d'aménagement\",\n                        \"name\": \"image de couverture de Fin des travaux d'aménagement\",\n                        \"slug\": \"image-de-couverture-de-fin-des-travaux-d-amenagement\",\n                        \"description\": \"image de couverture de Fin des travaux d'aménagement\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 4054,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                }\n            ]\n        },\n        {\n            \"id\": 41,\n            \"name\": \"T Zen 4 \",\n            \"slug\": \"t-zen-4\",\n            \"start_date\": \"2016-05-30T00:00:00.000+02:00\",\n            \"end_date\": \"2020-12-31T00:00:00.000+01:00\",\n            \"cover_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/547/cover_small/1-voies-reservees_priorite-aux-feux.jpg?1488460827\",\n                \"small_dimensions\": \"300x168\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/547/cover_medium/1-voies-reservees_priorite-aux-feux.jpg?1488460827\",\n                \"medium_dimensions\": \"600x337\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/547/cover_large/1-voies-reservees_priorite-aux-feux.jpg?1488460827\",\n                \"large_dimensions\": \"900x505\",\n                \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/547/cover_xlarge/1-voies-reservees_priorite-aux-feux.jpg?1488460827\",\n                \"xlarge_dimensions\": \"900x505\",\n                \"alt\": \"image de couverture de T Zen 4 \",\n                \"name\": \"image de couverture de T Zen 4 \",\n                \"slug\": \"image-de-couverture-de-t-zen-4\",\n                \"description\": \"image de couverture de T Zen 4 \",\n                \"copyright\": \"\"\n            },\n            \"pages\": [\n                {\n                    \"id\": 4163,\n                    \"instance\": {\n                        \"slug\": \"portail-projets-gps\"\n                    }\n                }\n            ],\n            \"sub_projects\": [\n                {\n                    \"id\": 42,\n                    \"name\": \"Enquête publique\",\n                    \"slug\": \"enquete-publique-ae33dafd-8be2-48ec-a581-d325aeb364bf\",\n                    \"start_date\": \"2016-05-30T00:00:00.000+02:00\",\n                    \"end_date\": \"2016-07-04T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/558/cover_small/3-station-confortable-accessible.jpg?1488468928\",\n                        \"small_dimensions\": \"300x169\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/558/cover_medium/3-station-confortable-accessible.jpg?1488468928\",\n                        \"medium_dimensions\": \"600x337\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/558/cover_large/3-station-confortable-accessible.jpg?1488468928\",\n                        \"large_dimensions\": \"900x506\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/558/cover_xlarge/3-station-confortable-accessible.jpg?1488468928\",\n                        \"xlarge_dimensions\": \"900x506\",\n                        \"alt\": \"image de couverture de Enquête publique\",\n                        \"name\": \"image de couverture de Enquête publique\",\n                        \"slug\": \"image-de-couverture-de-enquete-publique-2e821b44-25e0-41c6-959e-db1384f855d6\",\n                        \"description\": \"image de couverture de Enquête publique\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 4166,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 43,\n                    \"name\": \"Déclaration de projet et d'utilité publique\",\n                    \"slug\": \"declaration-de-projet-et-d-utilite-publique-5ecff84d-872d-4a15-81ed-d3d70b388e4c\",\n                    \"start_date\": \"2016-10-05T00:00:00.000+02:00\",\n                    \"end_date\": \"2016-12-08T00:00:00.000+01:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/559/cover_small/1-voies-reservees_priorite-aux-feux.jpg?1488468962\",\n                        \"small_dimensions\": \"300x168\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/559/cover_medium/1-voies-reservees_priorite-aux-feux.jpg?1488468962\",\n                        \"medium_dimensions\": \"600x337\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/559/cover_large/1-voies-reservees_priorite-aux-feux.jpg?1488468962\",\n                        \"large_dimensions\": \"900x505\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/559/cover_xlarge/1-voies-reservees_priorite-aux-feux.jpg?1488468962\",\n                        \"xlarge_dimensions\": \"900x505\",\n                        \"alt\": \"image de couverture de Déclaration de projet et d'utilité publique\",\n                        \"name\": \"image de couverture de Déclaration de projet et d'utilité publique\",\n                        \"slug\": \"image-de-couverture-de-declaration-de-projet-et-d-utilite-publique-39c7aac9-83f4-4c8b-95e4-c74564bfddfd\",\n                        \"description\": \"image de couverture de Déclaration de projet et d'utilité publique\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 4169,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 44,\n                    \"name\": \"Début des travaux\",\n                    \"slug\": \"debut-des-travaux\",\n                    \"start_date\": \"2019-01-01T00:00:00.000+01:00\",\n                    \"end_date\": \"2019-12-31T00:00:00.000+01:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/560/cover_small/3-station-confortable-accessible.jpg?1488469031\",\n                        \"small_dimensions\": \"300x169\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/560/cover_medium/3-station-confortable-accessible.jpg?1488469031\",\n                        \"medium_dimensions\": \"600x337\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/560/cover_large/3-station-confortable-accessible.jpg?1488469031\",\n                        \"large_dimensions\": \"900x506\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/560/cover_xlarge/3-station-confortable-accessible.jpg?1488469031\",\n                        \"xlarge_dimensions\": \"900x506\",\n                        \"alt\": \"image de couverture de Début des travaux\",\n                        \"name\": \"image de couverture de Début des travaux\",\n                        \"slug\": \"image-de-couverture-de-debut-des-travaux\",\n                        \"description\": \"image de couverture de Début des travaux\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 4172,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 45,\n                    \"name\": \"Mise en service du T Zen 4\",\n                    \"slug\": \"mise-en-service-du-t-zen-4\",\n                    \"start_date\": \"2020-01-01T00:00:00.000+01:00\",\n                    \"end_date\": \"2020-12-31T00:00:00.000+01:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/561/cover_small/1-voies-reservees_priorite-aux-feux.jpg?1488469076\",\n                        \"small_dimensions\": \"300x168\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/561/cover_medium/1-voies-reservees_priorite-aux-feux.jpg?1488469076\",\n                        \"medium_dimensions\": \"600x337\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/561/cover_large/1-voies-reservees_priorite-aux-feux.jpg?1488469076\",\n                        \"large_dimensions\": \"900x505\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/561/cover_xlarge/1-voies-reservees_priorite-aux-feux.jpg?1488469076\",\n                        \"xlarge_dimensions\": \"900x505\",\n                        \"alt\": \"image de couverture de Mise en service du T Zen 4\",\n                        \"name\": \"image de couverture de Mise en service du T Zen 4\",\n                        \"slug\": \"image-de-couverture-de-mise-en-service-du-t-zen-4\",\n                        \"description\": \"image de couverture de Mise en service du T Zen 4\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 4175,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                }\n            ]\n        },\n        {\n            \"id\": 18,\n            \"name\": \"T Zen 2\",\n            \"slug\": \"t-zen-2\",\n            \"start_date\": \"2013-09-01T00:00:00.000+02:00\",\n            \"end_date\": \"2024-12-31T00:00:00.000+01:00\",\n            \"cover_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/014/520/cover_small/3-station-confortable-accessible.jpg?1486132133\",\n                \"small_dimensions\": \"300x169\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/014/520/cover_medium/3-station-confortable-accessible.jpg?1486132133\",\n                \"medium_dimensions\": \"600x337\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/014/520/cover_large/3-station-confortable-accessible.jpg?1486132133\",\n                \"large_dimensions\": \"900x506\",\n                \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/014/520/cover_xlarge/3-station-confortable-accessible.jpg?1486132133\",\n                \"xlarge_dimensions\": \"900x506\",\n                \"alt\": \"image de couverture de T Zen 2\",\n                \"name\": \"image de couverture de T Zen 2\",\n                \"slug\": \"image-de-couverture-de-t-zen-2\",\n                \"description\": \"image de couverture de T Zen 2\",\n                \"copyright\": \"\"\n            },\n            \"pages\": [\n                {\n                    \"id\": 2184,\n                    \"instance\": {\n                        \"slug\": \"portail-projets-gps\"\n                    }\n                }\n            ],\n            \"sub_projects\": [\n                {\n                    \"id\": 19,\n                    \"name\": \"Enquête publique\",\n                    \"slug\": \"enquete-publique-932eaf28-3be9-4ccb-a2b0-c8e8cd9cce8b\",\n                    \"start_date\": \"2013-09-23T00:00:00.000+02:00\",\n                    \"end_date\": \"2013-10-26T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/551/cover_small/1-voies-reservees_priorite-aux-feux.jpg?1488468068\",\n                        \"small_dimensions\": \"300x168\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/551/cover_medium/1-voies-reservees_priorite-aux-feux.jpg?1488468068\",\n                        \"medium_dimensions\": \"600x337\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/551/cover_large/1-voies-reservees_priorite-aux-feux.jpg?1488468068\",\n                        \"large_dimensions\": \"900x505\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/551/cover_xlarge/1-voies-reservees_priorite-aux-feux.jpg?1488468068\",\n                        \"xlarge_dimensions\": \"900x505\",\n                        \"alt\": \"image de couverture de Enquête publique\",\n                        \"name\": \"image de couverture de Enquête publique\",\n                        \"slug\": \"image-de-couverture-de-enquete-publique-acc85490-4756-4182-a689-c9119e63e7fe\",\n                        \"description\": \"image de couverture de Enquête publique\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 2187,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 20,\n                    \"name\": \"Déclaration de projet et d'utilité publique\",\n                    \"slug\": \"declaration-de-projet-et-d-utilite-publique\",\n                    \"start_date\": \"2014-06-27T00:00:00.000+02:00\",\n                    \"end_date\": \"2014-07-30T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/552/cover_small/3-station-confortable-accessible.jpg?1488468105\",\n                        \"small_dimensions\": \"300x169\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/552/cover_medium/3-station-confortable-accessible.jpg?1488468105\",\n                        \"medium_dimensions\": \"600x337\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/552/cover_large/3-station-confortable-accessible.jpg?1488468105\",\n                        \"large_dimensions\": \"900x506\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/552/cover_xlarge/3-station-confortable-accessible.jpg?1488468105\",\n                        \"xlarge_dimensions\": \"900x506\",\n                        \"alt\": \"image de couverture de Déclaration de projet et d'utilité publique\",\n                        \"name\": \"image de couverture de Déclaration de projet et d'utilité publique\",\n                        \"slug\": \"image-de-couverture-de-declaration-de-projet-et-d-utilite-publique\",\n                        \"description\": \"image de couverture de Déclaration de projet et d'utilité publique\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 2237,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 21,\n                    \"name\": \"Études approfondies et avant-projet\",\n                    \"slug\": \"etudes-approfondies-et-avant-projet\",\n                    \"start_date\": \"2014-08-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2017-03-31T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/553/cover_small/1-voies-reservees_priorite-aux-feux.jpg?1488468141\",\n                        \"small_dimensions\": \"300x168\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/553/cover_medium/1-voies-reservees_priorite-aux-feux.jpg?1488468141\",\n                        \"medium_dimensions\": \"600x337\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/553/cover_large/1-voies-reservees_priorite-aux-feux.jpg?1488468141\",\n                        \"large_dimensions\": \"900x505\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/553/cover_xlarge/1-voies-reservees_priorite-aux-feux.jpg?1488468141\",\n                        \"xlarge_dimensions\": \"900x505\",\n                        \"alt\": \"image de couverture de Études approfondies et avant-projet\",\n                        \"name\": \"image de couverture de Études approfondies et avant-projet\",\n                        \"slug\": \"image-de-couverture-de-etudes-approfondies-et-avant-projet\",\n                        \"description\": \"image de couverture de Études approfondies et avant-projet\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 2236,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 22,\n                    \"name\": \"Travaux d'aménagement\",\n                    \"slug\": \"travaux-d-amenagement\",\n                    \"start_date\": \"2016-10-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2017-05-30T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/554/cover_small/3-station-confortable-accessible.jpg?1488468430\",\n                        \"small_dimensions\": \"300x169\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/554/cover_medium/3-station-confortable-accessible.jpg?1488468430\",\n                        \"medium_dimensions\": \"600x337\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/554/cover_large/3-station-confortable-accessible.jpg?1488468430\",\n                        \"large_dimensions\": \"900x506\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/554/cover_xlarge/3-station-confortable-accessible.jpg?1488468430\",\n                        \"xlarge_dimensions\": \"900x506\",\n                        \"alt\": \"image de couverture de Travaux d'aménagement\",\n                        \"name\": \"image de couverture de Travaux d'aménagement\",\n                        \"slug\": \"image-de-couverture-de-travaux-d-amenagement\",\n                        \"description\": \"image de couverture de Travaux d'aménagement\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 2235,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 23,\n                    \"name\": \"Début prévisonnel des travaux\",\n                    \"slug\": \"debut-previsonnel-des-travaux\",\n                    \"start_date\": \"2017-07-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2018-06-30T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/555/cover_small/1-voies-reservees_priorite-aux-feux.jpg?1488468382\",\n                        \"small_dimensions\": \"300x168\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/555/cover_medium/1-voies-reservees_priorite-aux-feux.jpg?1488468382\",\n                        \"medium_dimensions\": \"600x337\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/555/cover_large/1-voies-reservees_priorite-aux-feux.jpg?1488468382\",\n                        \"large_dimensions\": \"900x505\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/555/cover_xlarge/1-voies-reservees_priorite-aux-feux.jpg?1488468382\",\n                        \"xlarge_dimensions\": \"900x505\",\n                        \"alt\": \"image de couverture de Début prévisonnel des travaux\",\n                        \"name\": \"image de couverture de Début prévisonnel des travaux\",\n                        \"slug\": \"image-de-couverture-de-debut-previsonnel-des-travaux\",\n                        \"description\": \"image de couverture de Début prévisonnel des travaux\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 2234,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 24,\n                    \"name\": \"Travaux et création des stations\",\n                    \"slug\": \"travaux-et-creation-des-stations\",\n                    \"start_date\": \"2018-01-01T00:00:00.000+01:00\",\n                    \"end_date\": \"2023-12-31T00:00:00.000+01:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/556/cover_small/3-station-confortable-accessible.jpg?1488468607\",\n                        \"small_dimensions\": \"300x169\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/556/cover_medium/3-station-confortable-accessible.jpg?1488468607\",\n                        \"medium_dimensions\": \"600x337\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/556/cover_large/3-station-confortable-accessible.jpg?1488468607\",\n                        \"large_dimensions\": \"900x506\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/556/cover_xlarge/3-station-confortable-accessible.jpg?1488468607\",\n                        \"xlarge_dimensions\": \"900x506\",\n                        \"alt\": \"image de couverture de Travaux et création des stations\",\n                        \"name\": \"image de couverture de Travaux et création des stations\",\n                        \"slug\": \"image-de-couverture-de-travaux-et-creation-des-stations\",\n                        \"description\": \"image de couverture de Travaux et création des stations\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 2233,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 25,\n                    \"name\": \"Mise en service du T Zen 2 \",\n                    \"slug\": \"mise-en-service-du-t-zen-2\",\n                    \"start_date\": \"2024-07-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2024-12-31T00:00:00.000+01:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/557/cover_small/1-voies-reservees_priorite-aux-feux.jpg?1488468656\",\n                        \"small_dimensions\": \"300x168\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/557/cover_medium/1-voies-reservees_priorite-aux-feux.jpg?1488468656\",\n                        \"medium_dimensions\": \"600x337\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/557/cover_large/1-voies-reservees_priorite-aux-feux.jpg?1488468656\",\n                        \"large_dimensions\": \"900x505\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/557/cover_xlarge/1-voies-reservees_priorite-aux-feux.jpg?1488468656\",\n                        \"xlarge_dimensions\": \"900x505\",\n                        \"alt\": \"image de couverture de Mise en service du T Zen 2 \",\n                        \"name\": \"image de couverture de Mise en service du T Zen 2 \",\n                        \"slug\": \"image-de-couverture-de-mise-en-service-du-t-zen-2\",\n                        \"description\": \"image de couverture de Mise en service du T Zen 2 \",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 2232,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                }\n            ]\n        },\n        {\n            \"id\": 48,\n            \"name\": \"L'Agora se métamorphose \",\n            \"slug\": \"l-agora-se-metamorphose\",\n            \"start_date\": \"2017-09-01T00:00:00.000+02:00\",\n            \"end_date\": \"2020-12-01T00:00:00.000+01:00\",\n            \"cover_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/489/cover_small/Dossier-Graphique_EVRY_02-10.jpg?1506422665\",\n                \"small_dimensions\": \"300x147\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/489/cover_medium/Dossier-Graphique_EVRY_02-10.jpg?1506422665\",\n                \"medium_dimensions\": \"600x293\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/489/cover_large/Dossier-Graphique_EVRY_02-10.jpg?1506422665\",\n                \"large_dimensions\": \"1000x489\",\n                \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/489/cover_xlarge/Dossier-Graphique_EVRY_02-10.jpg?1506422665\",\n                \"xlarge_dimensions\": \"1854x906\",\n                \"alt\": \"image de couverture de L'Agora se métamorphose \",\n                \"name\": \"image de couverture de L'Agora se métamorphose \",\n                \"slug\": null,\n                \"description\": \"image de couverture de L'Agora se métamorphose \",\n                \"copyright\": \"\"\n            },\n            \"pages\": [\n                {\n                    \"id\": 7560,\n                    \"instance\": {\n                        \"slug\": \"portail-projets-gps\"\n                    }\n                }\n            ],\n            \"sub_projects\": [\n                {\n                    \"id\": 49,\n                    \"name\": \"Démolition du Crédit foncier \",\n                    \"slug\": \"demolition-du-credit-foncier\",\n                    \"start_date\": \"2017-09-15T00:00:00.000+02:00\",\n                    \"end_date\": \"2018-01-30T00:00:00.000+01:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 7563,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 50,\n                    \"name\": \"Espace restauration\",\n                    \"slug\": \"espace-restauration\",\n                    \"start_date\": \"2018-01-01T00:00:00.000+01:00\",\n                    \"end_date\": \"2019-05-01T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/751/cover_small/food_court.jpg?1507107617\",\n                        \"small_dimensions\": \"300x200\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/751/cover_medium/food_court.jpg?1507107617\",\n                        \"medium_dimensions\": \"600x400\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/751/cover_large/food_court.jpg?1507107617\",\n                        \"large_dimensions\": \"1000x667\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/751/cover_xlarge/food_court.jpg?1507107617\",\n                        \"xlarge_dimensions\": \"2000x1333\",\n                        \"alt\": \"image de couverture de Espace restauration\",\n                        \"name\": \"image de couverture de Espace restauration\",\n                        \"slug\": null,\n                        \"description\": \"image de couverture de Espace restauration\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 7735,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 51,\n                    \"name\": \"Place de l'Agora \",\n                    \"slug\": \"place-de-l-agora\",\n                    \"start_date\": \"2018-01-01T00:00:00.000+01:00\",\n                    \"end_date\": \"2018-12-31T00:00:00.000+01:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 7738,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 52,\n                    \"name\": \"Les Arènes\",\n                    \"slug\": \"les-arenes\",\n                    \"start_date\": \"2018-06-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2020-06-01T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/846/cover_small/int%C3%A9rieur_ar%C3%A8nes.JPG?1507300602\",\n                        \"small_dimensions\": \"300x167\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/846/cover_medium/int%C3%A9rieur_ar%C3%A8nes.JPG?1507300602\",\n                        \"medium_dimensions\": \"600x335\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/846/cover_large/int%C3%A9rieur_ar%C3%A8nes.JPG?1507300602\",\n                        \"large_dimensions\": \"956x533\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/846/cover_xlarge/int%C3%A9rieur_ar%C3%A8nes.JPG?1507300602\",\n                        \"xlarge_dimensions\": \"956x533\",\n                        \"alt\": \"image de couverture de Les Arènes\",\n                        \"name\": \"image de couverture de Les Arènes\",\n                        \"slug\": null,\n                        \"description\": \"image de couverture de Les Arènes\",\n                        \"copyright\": \"DVVD/Labtop\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 7741,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 53,\n                    \"name\": \"Place des Terrasses\",\n                    \"slug\": \"place-des-terrasses\",\n                    \"start_date\": \"2019-01-01T00:00:00.000+01:00\",\n                    \"end_date\": \"2020-01-01T00:00:00.000+01:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/757/cover_small/une_dossier_centres_commerciaux.jpg?1507119253\",\n                        \"small_dimensions\": \"233x300\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/757/cover_medium/une_dossier_centres_commerciaux.jpg?1507119253\",\n                        \"medium_dimensions\": \"466x600\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/757/cover_large/une_dossier_centres_commerciaux.jpg?1507119253\",\n                        \"large_dimensions\": \"777x1000\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/757/cover_xlarge/une_dossier_centres_commerciaux.jpg?1507119253\",\n                        \"xlarge_dimensions\": \"993x1278\",\n                        \"alt\": \"image de couverture de Place des Terrasses\",\n                        \"name\": \"image de couverture de Place des Terrasses\",\n                        \"slug\": null,\n                        \"description\": \"image de couverture de Place des Terrasses\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 7744,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                }\n            ]\n        },\n        {\n            \"id\": 46,\n            \"name\": \"Gare TGV\",\n            \"slug\": \"gare-tgv\",\n            \"start_date\": \"2012-01-01T00:00:00.000+01:00\",\n            \"end_date\": \"2030-12-31T00:00:00.000+01:00\",\n            \"cover_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/548/cover_small/gare-moissy-tgv.jpg?1488450325\",\n                \"small_dimensions\": \"300x200\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/548/cover_medium/gare-moissy-tgv.jpg?1488450325\",\n                \"medium_dimensions\": \"600x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/548/cover_large/gare-moissy-tgv.jpg?1488450325\",\n                \"large_dimensions\": \"1000x667\",\n                \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/548/cover_xlarge/gare-moissy-tgv.jpg?1488450325\",\n                \"xlarge_dimensions\": \"2000x1335\",\n                \"alt\": \"image de couverture de Gare TGV\",\n                \"name\": \"image de couverture de Gare TGV\",\n                \"slug\": \"image-de-couverture-de-gare-tgv-d0e33b0d-e356-4151-a846-c642e5e092a2\",\n                \"description\": \"image de couverture de Gare TGV\",\n                \"copyright\": \"\"\n            },\n            \"pages\": [\n                {\n                    \"id\": 4178,\n                    \"instance\": {\n                        \"slug\": \"portail-projets-gps\"\n                    }\n                }\n            ],\n            \"sub_projects\": []\n        },\n        {\n            \"id\": 63,\n            \"name\": \"Création de bassins de rétention à Ris-Orangis\",\n            \"slug\": \"creation-de-bassins-de-retention-a-ris-orangis\",\n            \"start_date\": \"2018-01-22T00:00:00.000+01:00\",\n            \"end_date\": \"2019-05-20T00:00:00.000+02:00\",\n            \"cover_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/526/cover_small/Bassin_Issy_les_moulineaux.JPG?1515765425\",\n                \"small_dimensions\": \"300x146\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/526/cover_medium/Bassin_Issy_les_moulineaux.JPG?1515765425\",\n                \"medium_dimensions\": \"600x292\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/526/cover_large/Bassin_Issy_les_moulineaux.JPG?1515765425\",\n                \"large_dimensions\": \"1000x487\",\n                \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/526/cover_xlarge/Bassin_Issy_les_moulineaux.JPG?1515765425\",\n                \"xlarge_dimensions\": \"2000x973\",\n                \"alt\": \"image de couverture de Création de bassins de rétention à Ris-Orangis\",\n                \"name\": \"image de couverture de Création de bassins de rétention à Ris-Orangis\",\n                \"slug\": null,\n                \"description\": \"image de couverture de Création de bassins de rétention à Ris-Orangis\",\n                \"copyright\": \"Grabd Paris Sud \"\n            },\n            \"pages\": [\n                {\n                    \"id\": 8540,\n                    \"instance\": {\n                        \"slug\": \"portail-projets-gps\"\n                    }\n                }\n            ],\n            \"sub_projects\": [\n                {\n                    \"id\": 64,\n                    \"name\": \"Création du bassin sous le stade Émile-Gagneux\",\n                    \"slug\": \"creation-du-bassin-sous-le-stade-emile-gagneux\",\n                    \"start_date\": \"2018-01-22T00:00:00.000+01:00\",\n                    \"end_date\": \"2019-05-30T00:00:00.000+02:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 8844,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 65,\n                    \"name\": \"Création d'un collecteur (canalisation) \",\n                    \"slug\": \"creation-d-un-collecteur-canalisation\",\n                    \"start_date\": \"2018-05-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2019-03-30T00:00:00.000+01:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 8838,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 66,\n                    \"name\": \"Création second bassin de stockage / restitution\",\n                    \"slug\": \"creation-second-bassin-de-stockage-restitution\",\n                    \"start_date\": \"2018-03-01T00:00:00.000+01:00\",\n                    \"end_date\": \"2019-01-31T00:00:00.000+01:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 8841,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 67,\n                    \"name\": \"Création station anti-crue de Seine\",\n                    \"slug\": \"creation-station-anti-crue-de-seine\",\n                    \"start_date\": \"2018-01-29T00:00:00.000+01:00\",\n                    \"end_date\": \"2018-06-30T00:00:00.000+02:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 8835,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                }\n            ]\n        },\n        {\n            \"id\": 54,\n            \"name\": \"Chauffage urbain \",\n            \"slug\": \"chauffage-urbain\",\n            \"start_date\": \"2017-07-01T00:00:00.000+02:00\",\n            \"end_date\": \"2018-12-31T00:00:00.000+01:00\",\n            \"cover_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/891/cover_small/vert_le_grand.jpg?1507645372\",\n                \"small_dimensions\": \"300x236\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/891/cover_medium/vert_le_grand.jpg?1507645372\",\n                \"medium_dimensions\": \"300x236\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/891/cover_large/vert_le_grand.jpg?1507645372\",\n                \"large_dimensions\": \"300x236\",\n                \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/891/cover_xlarge/vert_le_grand.jpg?1507645372\",\n                \"xlarge_dimensions\": \"300x236\",\n                \"alt\": \"image de couverture de Chauffage urbain \",\n                \"name\": \"image de couverture de Chauffage urbain \",\n                \"slug\": null,\n                \"description\": \"image de couverture de Chauffage urbain \",\n                \"copyright\": \"\"\n            },\n            \"pages\": [\n                {\n                    \"id\": 7816,\n                    \"instance\": {\n                        \"slug\": \"portail-projets-gps\"\n                    }\n                }\n            ],\n            \"sub_projects\": [\n                {\n                    \"id\": 56,\n                    \"name\": \"Modernisation et sécurisation du réseau \",\n                    \"slug\": \"modernisation-et-securisation-du-reseau\",\n                    \"start_date\": \"2017-07-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2018-10-01T00:00:00.000+02:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 7825,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 55,\n                    \"name\": \"Création d'un réseau d'interconnexion\",\n                    \"slug\": \"creation-d-un-reseau-d-interconnexion\",\n                    \"start_date\": \"2017-07-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2017-12-31T00:00:00.000+01:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/936/cover_small/travaux_chauffage_urbain_GPS-11-10-2017_DSC2562.jpg?1507883027\",\n                        \"small_dimensions\": \"300x200\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/936/cover_medium/travaux_chauffage_urbain_GPS-11-10-2017_DSC2562.jpg?1507883027\",\n                        \"medium_dimensions\": \"600x401\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/936/cover_large/travaux_chauffage_urbain_GPS-11-10-2017_DSC2562.jpg?1507883027\",\n                        \"large_dimensions\": \"1000x668\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/936/cover_xlarge/travaux_chauffage_urbain_GPS-11-10-2017_DSC2562.jpg?1507883027\",\n                        \"xlarge_dimensions\": \"2000x1335\",\n                        \"alt\": \"image de couverture de Création d'un réseau d'interconnexion\",\n                        \"name\": \"image de couverture de Création d'un réseau d'interconnexion\",\n                        \"slug\": null,\n                        \"description\": \"image de couverture de Création d'un réseau d'interconnexion\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 7819,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 57,\n                    \"name\": \"Installation d'un système de télégestion \",\n                    \"slug\": \"installation-d-un-systeme-de-telegestion\",\n                    \"start_date\": \"2017-07-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2018-12-31T00:00:00.000+01:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 7828,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                }\n            ]\n        },\n        {\n            \"id\": 58,\n            \"name\": \"Rue des Lumières\",\n            \"slug\": \"rue-des-lumieres\",\n            \"start_date\": \"2017-09-01T00:00:00.000+02:00\",\n            \"end_date\": \"2019-12-01T00:00:00.000+01:00\",\n            \"cover_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/023/652/cover_small/ecran-horizontal.jpg?1511120784\",\n                \"small_dimensions\": \"300x169\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/023/652/cover_medium/ecran-horizontal.jpg?1511120784\",\n                \"medium_dimensions\": \"600x338\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/023/652/cover_large/ecran-horizontal.jpg?1511120784\",\n                \"large_dimensions\": \"1000x563\",\n                \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/023/652/cover_xlarge/ecran-horizontal.jpg?1511120784\",\n                \"xlarge_dimensions\": \"1920x1080\",\n                \"alt\": \"image de couverture de Rue des Lumières\",\n                \"name\": \"image de couverture de Rue des Lumières\",\n                \"slug\": null,\n                \"description\": \"image de couverture de Rue des Lumières\",\n                \"copyright\": \"\"\n            },\n            \"pages\": [\n                {\n                    \"id\": 8127,\n                    \"instance\": {\n                        \"slug\": \"portail-projets-gps\"\n                    }\n                }\n            ],\n            \"sub_projects\": [\n                {\n                    \"id\": 85,\n                    \"name\": \"Les actions de préfiguration\",\n                    \"slug\": \"les-actions-de-prefiguration\",\n                    \"start_date\": \"2017-12-01T00:00:00.000+01:00\",\n                    \"end_date\": \"2018-08-31T00:00:00.000+02:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 9166,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": [\n                        {\n                            \"id\": 59,\n                            \"name\": \"Spectacle Incandescences \",\n                            \"slug\": \"spectacle-incandescences\",\n                            \"start_date\": \"2017-12-14T00:00:00.000+01:00\",\n                            \"end_date\": \"2017-12-14T00:00:00.000+01:00\",\n                            \"cover_picture\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/023/654/cover_small/ecran-horizontal.jpg?1511182171\",\n                                \"small_dimensions\": \"300x169\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/023/654/cover_medium/ecran-horizontal.jpg?1511182171\",\n                                \"medium_dimensions\": \"600x338\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/023/654/cover_large/ecran-horizontal.jpg?1511182171\",\n                                \"large_dimensions\": \"1000x563\",\n                                \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/023/654/cover_xlarge/ecran-horizontal.jpg?1511182171\",\n                                \"xlarge_dimensions\": \"1920x1080\",\n                                \"alt\": \"image de couverture de Spectacle Incandescences \",\n                                \"name\": \"image de couverture de Spectacle Incandescences \",\n                                \"slug\": null,\n                                \"description\": \"image de couverture de Spectacle Incandescences \",\n                                \"copyright\": \"\"\n                            },\n                            \"pages\": [\n                                {\n                                    \"id\": 8133,\n                                    \"instance\": {\n                                        \"slug\": \"portail-projets-gps\"\n                                    }\n                                }\n                            ],\n                            \"sub_projects\": []\n                        }\n                    ]\n                },\n                {\n                    \"id\": 62,\n                    \"name\": \"Phase de candidature \",\n                    \"slug\": \"phase-de-candidature\",\n                    \"start_date\": \"2017-10-03T00:00:00.000+02:00\",\n                    \"end_date\": \"2017-12-20T00:00:00.000+01:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 8146,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 77,\n                    \"name\": \"Dialogue compétitif\",\n                    \"slug\": \"dialogue-competitif\",\n                    \"start_date\": \"2018-01-01T00:00:00.000+01:00\",\n                    \"end_date\": \"2018-08-31T00:00:00.000+02:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 9151,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 86,\n                    \"name\": \"Collaboration avec le candidat retenu pour mise en œuvre des projets\",\n                    \"slug\": \"collaboration-avec-le-candidat-retenu-pour-mise-en-oeuvre-des-projets\",\n                    \"start_date\": \"2018-09-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2019-05-01T00:00:00.000+02:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 9175,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                }\n            ]\n        },\n        {\n            \"id\": 68,\n            \"name\": \"Cirque de l'Essonne\",\n            \"slug\": \"cirque-de-l-essonne\",\n            \"start_date\": \"2018-01-01T00:00:00.000+01:00\",\n            \"end_date\": \"2023-12-31T00:00:00.000+01:00\",\n            \"cover_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/025/389/cover_small/cirque-essonne-grandparissud-bandeau.jpg?1520719604\",\n                \"small_dimensions\": \"300x70\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/025/389/cover_medium/cirque-essonne-grandparissud-bandeau.jpg?1520719604\",\n                \"medium_dimensions\": \"600x140\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/025/389/cover_large/cirque-essonne-grandparissud-bandeau.jpg?1520719604\",\n                \"large_dimensions\": \"1000x234\",\n                \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/025/389/cover_xlarge/cirque-essonne-grandparissud-bandeau.jpg?1520719604\",\n                \"xlarge_dimensions\": \"2000x468\",\n                \"alt\": \"image de couverture de Cirque de l'Essonne\",\n                \"name\": \"image de couverture de Cirque de l'Essonne\",\n                \"slug\": null,\n                \"description\": \"image de couverture de Cirque de l'Essonne\",\n                \"copyright\": \"\"\n            },\n            \"pages\": [\n                {\n                    \"id\": 9043,\n                    \"instance\": {\n                        \"slug\": \"portail-projets-gps\"\n                    }\n                }\n            ],\n            \"sub_projects\": [\n                {\n                    \"id\": 70,\n                    \"name\": \"Études techniques préalables et de conception de l’aménagement\",\n                    \"slug\": \"etudes-techniques-prealables-et-de-conception-de-l-amenagement\",\n                    \"start_date\": \"2017-01-01T00:00:00.000+01:00\",\n                    \"end_date\": \"2019-06-30T00:00:00.000+02:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 9106,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 87,\n                    \"name\": \"Premiers travaux déjà effectués \",\n                    \"slug\": \"premiers-travaux-deja-effectues\",\n                    \"start_date\": \"2017-01-01T00:00:00.000+01:00\",\n                    \"end_date\": \"2018-03-31T00:00:00.000+02:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 9178,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 91,\n                    \"name\": \"Prochains travaux d'urgence\",\n                    \"slug\": \"prochains-travaux-d-urgence\",\n                    \"start_date\": \"2018-01-01T00:00:00.000+01:00\",\n                    \"end_date\": \"2018-12-31T00:00:00.000+01:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 9235,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 90,\n                    \"name\": \"Signature de la convention par les partenaires\",\n                    \"slug\": \"signature-de-la-convention-par-les-partenaires\",\n                    \"start_date\": \"2018-05-26T00:00:00.000+02:00\",\n                    \"end_date\": \"2018-05-26T00:00:00.000+02:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 9232,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 88,\n                    \"name\": \"Grands travaux\",\n                    \"slug\": \"grands-travaux-086fc039-afe3-467d-97cf-a1c6c91f9ba6\",\n                    \"start_date\": \"2019-07-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2023-12-31T00:00:00.000+01:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 9181,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                }\n            ]\n        }\n    ]\n}"}],"_postman_id":"f69b25bf-71d3-4d42-976d-4ee52b999cf7"}],"id":"50ae857b-75c0-470f-b695-2db02cce6476","description":"<p>Endpoints d'API des actualités</p>\n","_postman_id":"50ae857b-75c0-470f-b695-2db02cce6476"},{"name":"Équipements","item":[{"name":"Index","id":"b4cb3614-a332-4bb6-aa11-4ea9dba2951c","request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"https://api.publidata.io/v1/{{instance_id}}/facilities","description":"<p>Index des équipements</p>\n","urlObject":{"path":["v1","{{instance_id}}","facilities"],"host":["https://api.publidata.io"],"query":[],"variable":[]}},"response":[{"id":"1739a4f0-e434-4f66-8fed-d0680673cc57","name":"Index facilities","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"publidata.io/api/v1/portail-sortir-gps/facilities"},"code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":"0","body":"{\n    \"slugs\": [\n        \"maison-des-arts-martiaux-budokan\",\n        \"cinema-arcel\",\n        \"theatre-de-corbeil-essonnes\",\n        \"stade-nautique-gabriel-menut\",\n        \"maison-de-l-environnement-de-grand-paris-sud\",\n        \"theatre-senart\",\n        \"le-silo\",\n        \"parc-intercommunal-des-sports\",\n        \"halle-intercommunale-des-sports\",\n        \"complexe-sportif-louis-lachenal\",\n        \"gymnase-des-montelievres\",\n        \"piscine-intercommunale-georges-et-rolande-hagondokoff\",\n        \"piscine-municipale-de-combs-la-ville\",\n        \"complexe-sportif-et-stade-nautique-jean-bouin\",\n        \"centre-aquatique-nymphea\",\n        \"golf-de-la-croix-des-anges\",\n        \"kartland\",\n        \"golf-greenparc\",\n        \"golf-blue-green-villeray\",\n        \"office-de-tourisme-seine-essonne\",\n        \"pole-culturel-du-grand-veneur\",\n        \"espace-prevert-scene-du-monde\",\n        \"l-empreinte\",\n        \"les-18-marches\",\n        \"theatre-de-la-mezzanine\",\n        \"bowlingstar-carre-senart\",\n        \"koezio\",\n        \"mediatheque-de-combs-la-ville\",\n        \"mediatheque-george-sand\",\n        \"mediatheque-la-rotonde-de-moissy-cramayel\",\n        \"mediatheque-cote-cour\",\n        \"bibliotheque-municipale-marguerite-yourcenar\",\n        \"mediatheque-pierre-seghers\",\n        \"mediatheque-des-cites-unies\",\n        \"mediatheque-jacques-prevert\",\n        \"bibliotheque-gerard-philipe\",\n        \"ecole-intercommunale-de-musique-de-cesson-vert-saint-denis\",\n        \"conservatoire-maurice-ohana\",\n        \"ecole-de-musique-de-moissy-cramayel\",\n        \"conservatoire-de-musique-de-nandy\",\n        \"conservatoire-gabriel-faure\",\n        \"la-musicale\",\n        \"piscine-du-long-rayage\",\n        \"piscine-de-l-agora\",\n        \"piscine-rene-touzin\",\n        \"piscine-jean-taris\",\n        \"patinoire-francois-le-comte\",\n        \"le-reseau-des-conservatoires\",\n        \"service-arts-visuels\",\n        \"centre-culturel-robert-desnos\",\n        \"la-halle-du-rock\",\n        \"le-plan\",\n        \"theatre-de-l-agora\",\n        \"ecole-departementale-de-theatre\",\n        \"mediatheque-de-l-agora\",\n        \"mediatheque-des-aunettes\",\n        \"mediatheque-condorcet\",\n        \"mediatheque-georges-perec\",\n        \"mediatheque-raymond-queneau\",\n        \"mediatheque-elsa-triolet\",\n        \"mediatheque-colette\",\n        \"mediatheque-alain-ramey\",\n        \"mediatheque-albert-camus\",\n        \"ecole-de-musique-crescendo\",\n        \"live-factory\",\n        \"mjc-l-oreille-cassee\",\n        \"ecole-patrice-creveux\",\n        \"mlc-claude-houillon-la-citrouille\",\n        \"mediatheque-municipale-de-tigery\",\n        \"cinema-de-l-espace-prevert\",\n        \"les-arenes-de-l-agora\",\n        \"mediatheque-chantemerle\",\n        \"mediatheque-de-montconseil\",\n        \"mediatheque-municipale-gilles-malet\",\n        \"conservatoire-charles-gounod\",\n        \"conservatoire-olivier-messiaen\",\n        \"conservatoire-de-musique-et-de-danse-claude-debussy\",\n        \"conservatoire-yves-henry\",\n        \"conservatoire-iannis-xenakis\",\n        \"conservatoire-alberic-magnard\",\n        \"conservatoire-de-grigny\",\n        \"les-salles-de-danse-de-grigny\",\n        \"bibliotheque-municipale-du-coudray-montceaux\",\n        \"mediatheque-municipale-de-saint-germain-les-corbeil\",\n        \"la-ferme-des-arts\",\n        \"classe-preparatoire-arts-visuels-site-grand-bourg\",\n        \"mjc-fernand-leger\",\n        \"theatre-du-coin-des-mondes-compagnie-l-eygurande\",\n        \"mjc-cmt-de-ris-orangis\",\n        \"le-jardin-comedien-f025ec15-5ff2-4bdd-aa4c-9cc4b33bef03\",\n        \"maison-des-arts-et-de-la-culture\",\n        \"ecole-d-arts-plastiques-de-lieusaint\",\n        \"la-ferme-neuve-ateliers-d-arts-plastiques-de-grigny\",\n        \"bibliotheque-municipale-de-saintry-sur-seine\",\n        \"ecole-municipale-artistique-ema-de-saint-pierre-du-perray\",\n        \"ecole-municipale-d-arts-plastiques-de-soisy-sur-seine\",\n        \"galerie-guy-michel-boix\",\n        \"les-cinoches-plateau\",\n        \"les-cinoches-rn7\",\n        \"cinema-gaumont-carre-senart\",\n        \"cinema-mega-cgr-d-evry\",\n        \"cinema-la-coupole\",\n        \"le-jardin-d-essences\",\n        \"golf-du-coudray\",\n        \"garden-golf-saint-germain-les-corbeil\",\n        \"golf-d-etiolles\",\n        \"golf-de-val-grand\",\n        \"centre-commercial-carre-senart-et-shopping-parc\",\n        \"comite-departemental-du-tourisme-en-essonne\",\n        \"musee-paul-delouvrier\",\n        \"le-reseau-des-mediatheques\",\n        \"la-coupole\",\n        \"cafe-danse-bobby-sand\",\n        \"conservatoire-national-des-arts-et-metiers-d-evry\",\n        \"bibliotheque-universitaire-d-evry\",\n        \"gymnase-david-douillet\",\n        \"palais-des-sports\",\n        \"complexe-sportif-salle-corot\",\n        \"eglise-saint-vincent\",\n        \"la-rotonde\",\n        \"le-chapiteau-d-adrienne\",\n        \"le-millenaire\",\n        \"chateau-de-la-fresnaye\",\n        \"faisanderie-de-senart\",\n        \"parc-des-sports-alain-mimoun\",\n        \"complexe-sportif-jacques-cartier\",\n        \"stade-robert-dautier\",\n        \"ferme-du-bois-briard\",\n        \"agence-nationale-pour-les-arts-sacres\",\n        \"parc-chantemerle\",\n        \"parc-pompidou\",\n        \"site-archeologique-d-etiolles\",\n        \"salle-polyvalente-montelievres\",\n        \"salle-des-fetes-de-saint-germain-les-corbeil\",\n        \"la-ferme-neuve-salle-d-exposition-de-grigny\",\n        \"parc-du-lac-de-courcouronnes\",\n        \"ludotheque-municipale-de-corbeil-essonnes\",\n        \"ludotheque-abracadajeux\",\n        \"ludotheque-andersen\",\n        \"ludotheque-de-lisses\",\n        \"ludotheque-de-nandy\",\n        \"ludotheque-lud-eveil\",\n        \"ludotheque-florian\",\n        \"ludotheque-croque-jeux\",\n        \"ludotheque-gerard-philipe\",\n        \"ludotheque-municipale-de-bondoufle\",\n        \"ludotheque-de-moissy-cramayel\",\n        \"ludotheque-des-oiseaux\",\n        \"ludotheque-du-plateau\",\n        \"babyland-amiland\",\n        \"parc-de-robinson\",\n        \"block-out\",\n        \"dundee-parc\",\n        \"royal-kids-de-lisses\",\n        \"royal-kids-de-lieusaint\",\n        \"laser-quest\",\n        \"lockedup\",\n        \"le-labyrinthe-de-senart\",\n        \"koony-parc\",\n        \"x-trem-defi\",\n        \"piscine-municipale-de-grigny\",\n        \"eglise-saint-germain-et-saint-vincent-a-lisses\",\n        \"chez-gael-le-superparc\",\n        \"petit-parc\",\n        \"domaine-de-montauger\",\n        \"halle-jeunesse\",\n        \"esplanade-du-14-juillet-1789\",\n        \"gymnase-des-hauldres-iufm\",\n        \"eglise-notre-dame-de-la-nativite\",\n        \"salle-de-cinema-de-l-epnak\",\n        \"eglise-saint-antoine-et-saint-sulpice\",\n        \"maison-du-combattant-et-du-citoyen\",\n        \"musee-aeronautique-et-spatial-safran\",\n        \"reserve-naturelle-du-follet\",\n        \"foret-domaniale-de-senart\",\n        \"foret-de-rougeau\",\n        \"espace-naturel-de-la-motte\",\n        \"parc-des-trois-parts\",\n        \"parc-du-grand-veneur\",\n        \"domaine-de-la-grange-prevote\",\n        \"parc-leonard-de-vinci\",\n        \"parc-du-rondeau\",\n        \"parc-des-loges\",\n        \"parc-henri-fabre\",\n        \"parc-arthur-chaussy\",\n        \"parc-francois-mitterand\",\n        \"les-lacs-de-l-essonne\",\n        \"stade-des-templiers\",\n        \"ludotheque-de-combs-la-ville\",\n        \"stade-jean-miaud\",\n        \"fab-lab-de-planete-sciences\",\n        \"allee-royale\",\n        \"salle-culturelle-decauville\",\n        \"annexe-du-palais-des-sports\",\n        \"centre-culturel-eugene-massillon\",\n        \"dynamique-emploi\",\n        \"stade-d-honneur-jean-bouin\",\n        \"cercle-nautique-de-soisy-sur-seine\",\n        \"asce-aviron-corbeil-essonnes\",\n        \"le-cercle-nautique-d-evry\",\n        \"club-d-aviron-du-coudray-montceaux\",\n        \"cercle-de-voile-de-morsang-sur-seine\",\n        \"base-nautique-de-ris-orangis-union-sportive-de-ris-orangis-usro\",\n        \"asce-voile-corbeil-essonnes\",\n        \"l-esprit-des-vacances-passe-par-la-nature-a-grigny\",\n        \"lavoir-du-hameau-de-saint-leu\",\n        \"lavoir-de-saint-quintien\",\n        \"le-lavoir-communal-de-savigny-le-temple\",\n        \"lavoir-du-hameau-de-pouilly-le-fort-vert-saint-denis-77240\",\n        \"lavoir-de-soisy-sur-seine\",\n        \"lavoir-d-evry\",\n        \"lavoir-de-l-aqueduc-de-la-vanne\",\n        \"lavoir-des-mathurines\",\n        \"lavoir-de-villabe\",\n        \"lavoir-de-grigny\",\n        \"les-lavoirs-de-corbeil-essonnes\",\n        \"la-dame-du-lac\",\n        \"la-fontaine-bulle\",\n        \"la-fontaine-disque-courcouronnes\",\n        \"la-fontaine-wallace\",\n        \"la-goutte-d-eau\",\n        \"paysage-mediterraneen\",\n        \"gulliver-echoue-sur-la-plage\",\n        \"la-fontaine-des-origines\",\n        \"station-de-relevage-des-eaux\",\n        \"fresque-marine\",\n        \"la-fontaine-de-moissy-cramayel\",\n        \"cristaux\",\n        \"la-fontaine-de-la-connaissance\",\n        \"la-sculpture-fontaine\",\n        \"le-requin\",\n        \"les-grands-moulins-de-corbeil\",\n        \"le-port-des-bas-vignons\",\n        \"l-usine-springer\",\n        \"le-chateau-du-parc-des-tourelles\",\n        \"fly-academy-trampoli-park\",\n        \"salle-gerard-philipe-a-lisses\",\n        \"brasserie-l-instant\",\n        \"eglise-du-sacre-coeur\"\n    ]\n}"}],"_postman_id":"b4cb3614-a332-4bb6-aa11-4ea9dba2951c"},{"name":"Show","id":"85217dcb-dda7-449e-8189-32b09c536baf","request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"https://api.publidata.io/v1/{{instance_id}}/facilities/{{facility_id}}","description":"<p>Show d'un équipement</p>\n","urlObject":{"path":["v1","{{instance_id}}","facilities","{{facility_id}}"],"host":["https://api.publidata.io"],"query":[],"variable":[]}},"response":[{"id":"d6715a96-4366-45b3-8a8a-afbf663b0335","name":"Show facility","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"publidata.io/api/v1/portail-sortir-gps/facilities/2"},"code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 2,\n    \"featured\": false,\n    \"name\": \"Maison des Arts Martiaux - Budokan\",\n    \"slug\": \"maison-des-arts-martiaux-budokan\",\n    \"blurb\": \"<p>Créée en 2011, la structure dispose de 1 500m2 de surface (salle de dojo\\r\\n = 264 m2 ; salle polyvalente = 580 m2, bureaux, sanitaires, vestiaires)\\r\\n et accueille une dizaine de clubs (judo, karaté, savate/boxe française,\\r\\n aïkiryu/aïkido, bujinkan). Accès PMR.</p>\",\n    \"address\": \"9 Route de Jarcy, 91450 Étiolles, France\",\n    \"geocode\": {\n        \"lat\": 48.6414572,\n        \"lng\": 2.4639391\n    },\n    \"cover_picture\": {\n        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/222/cover_small/Seine-Essonne-Maison-des-arts-martiaux.jpg?1460533367\",\n        \"small_dimensions\": \"300x200\",\n        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/222/cover_medium/Seine-Essonne-Maison-des-arts-martiaux.jpg?1460533367\",\n        \"medium_dimensions\": \"360x240\",\n        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/222/cover_large/Seine-Essonne-Maison-des-arts-martiaux.jpg?1460533367\",\n        \"large_dimensions\": \"360x240\",\n        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/222/cover_xlarge/Seine-Essonne-Maison-des-arts-martiaux.jpg?1460533367\",\n        \"xlarge_dimensions\": \"360x240\",\n        \"alt\": \"image de couverture de Maison des Arts Martiaux - Budokan\",\n        \"name\": \"image de couverture de Maison des Arts Martiaux - Budokan\",\n        \"slug\": \"image-de-couverture-de-maison-des-arts-martiaux-budokan\",\n        \"description\": \"image de couverture de Maison des Arts Martiaux - Budokan\",\n        \"copyright\": \"\"\n    },\n    \"profile_picture\": {\n        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/220/logo_small/Seine-Essonne-Maison-des-arts-martiaux.jpg?1453973277\",\n        \"small_dimensions\": \"150x100\",\n        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/220/logo_medium/Seine-Essonne-Maison-des-arts-martiaux.jpg?1453973277\",\n        \"medium_dimensions\": \"360x240\",\n        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/220/logo_large/Seine-Essonne-Maison-des-arts-martiaux.jpg?1453973277\",\n        \"large_dimensions\": \"360x240\",\n        \"alt\": \"image de profil de Maison des Arts Martiaux - Budokan\",\n        \"name\": \"image de profil de Maison des Arts Martiaux - Budokan\",\n        \"slug\": \"image-de-profil-de-maison-des-arts-martiaux-budokan\",\n        \"description\": \"image de profil de Maison des Arts Martiaux - Budokan\",\n        \"copyright\": \"\"\n    },\n    \"city\": {\n        \"id\": 27,\n        \"organization_id\": 73,\n        \"name\": \"Étiolles\",\n        \"slug\": \"etiolles\",\n        \"logo\": {\n            \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/121/logo_normal/Logo-Etiolles.png?1453972796\",\n            \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/121/logo_medium/Logo-Etiolles.png?1453972796\",\n            \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/121/logo_large/Logo-Etiolles.png?1453972796\",\n            \"alt\": \"image de profil de Etiolles\"\n        }\n    },\n    \"category\": {\n        \"facility_category_id\": 3,\n        \"name\": \"Sport\",\n        \"slug\": \"sport\",\n        \"picto\": {\n            \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/169/picto_small/PICTO_FOOT-01.png?1460371164\",\n            \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/169/picto_medium/PICTO_FOOT-01.png?1460371164\",\n            \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/169/picto_large/PICTO_FOOT-01.png?1460371164\",\n            \"alt\": \"pictogramme de Sport\"\n        }\n    },\n    \"type\": {\n        \"facility_type_id\": 12,\n        \"name\": \"Complexe sportif\",\n        \"slug\": \"complexe-sportif\",\n        \"thematics\": [\n            {\n                \"id\": 4,\n                \"name\": \"Sport\",\n                \"slug\": \"sport\",\n                \"picto\": {\n                    \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/002/037/picto_small/PICTO_SPORT-01.png?1460048285\",\n                    \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/002/037/picto_medium/PICTO_SPORT-01.png?1460048285\",\n                    \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/002/037/picto_large/PICTO_SPORT-01.png?1460048285\",\n                    \"alt\": \"pictogramme de Sport\"\n                }\n            }\n        ],\n        \"picto\": {\n            \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/168/picto_small/PICTO_STADE-01.png?1453972865\",\n            \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/168/picto_medium/PICTO_STADE-01.png?1453972865\",\n            \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/168/picto_large/PICTO_STADE-01.png?1453972865\",\n            \"alt\": \"pictogramme de Complexe sportif\"\n        }\n    },\n    \"thematics\": [\n        {\n            \"id\": 4,\n            \"name\": \"Sport\",\n            \"slug\": \"sport\",\n            \"picto\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/002/037/picto_small/PICTO_SPORT-01.png?1460048285\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/002/037/picto_medium/PICTO_SPORT-01.png?1460048285\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/002/037/picto_large/PICTO_SPORT-01.png?1460048285\",\n                \"alt\": \"pictogramme de Sport\"\n            }\n        }\n    ],\n    \"theme_categories\": [\n        {\n            \"id\": 4,\n            \"name\": \"Sport\",\n            \"slug\": \"sport\",\n            \"picto\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/002/037/picto_small/PICTO_SPORT-01.png?1460048285\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/002/037/picto_medium/PICTO_SPORT-01.png?1460048285\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/002/037/picto_large/PICTO_SPORT-01.png?1460048285\",\n                \"alt\": \"pictogramme de Sport\"\n            }\n        }\n    ],\n    \"infos\": {\n        \"phone\": \"01 69 89 31 09\",\n        \"email\": \"\",\n        \"contact\": \"\",\n        \"website\": \"\",\n        \"social\": {\n            \"facebook\": \"https://www.facebook.com/sortir.grandparissud/?fref=ts\",\n            \"twitter\": \"https://twitter.com/grandparissud\",\n            \"googleplus\": \"\",\n            \"instagram\": \"https://www.instagram.com/grand_paris_sud/\",\n            \"linkedin\": \"\",\n            \"viadeo\": \"\",\n            \"flickr\": \"\",\n            \"youtube\": \"\",\n            \"dailymotion\": \"\",\n            \"vimeo\": \"\",\n            \"medium\": \"\",\n            \"rss\": \"http://www.publidata.io/agglomerations/grand-paris-sud/rss\",\n            \"snapcode_svg\": \"\",\n            \"messenger\": null,\n            \"allocine\": \"\"\n        }\n    },\n    \"contents\": {\n        \"images\": [],\n        \"documents\": [],\n        \"links\": [],\n        \"videos\": []\n    },\n    \"schedules\": {\n        \"regulars\": [\n            {\n                \"name\": \"\",\n                \"blurb\": \"\",\n                \"start\": \"2016-01-01T00:00:00.000+01:00\",\n                \"end\": \"2018-07-06T00:00:00.000+02:00\",\n                \"mon_m_o\": \"2000-01-01T08:30:00.000Z\",\n                \"mon_m_c\": \"2000-01-01T12:00:00.000Z\",\n                \"mon_a_o\": \"2000-01-01T13:30:00.000Z\",\n                \"mon_a_c\": \"2000-01-01T22:30:00.000Z\",\n                \"tue_m_o\": \"2000-01-01T08:30:00.000Z\",\n                \"tue_m_c\": \"2000-01-01T12:00:00.000Z\",\n                \"tue_a_o\": \"2000-01-01T13:30:00.000Z\",\n                \"tue_a_c\": \"2000-01-01T22:30:00.000Z\",\n                \"wed_m_o\": \"2000-01-01T08:30:00.000Z\",\n                \"wed_m_c\": \"2000-01-01T12:00:00.000Z\",\n                \"wed_a_o\": \"2000-01-01T13:30:00.000Z\",\n                \"wed_a_c\": \"2000-01-01T22:30:00.000Z\",\n                \"thu_m_o\": \"2000-01-01T09:30:00.000Z\",\n                \"thu_m_c\": \"2000-01-01T16:30:00.000Z\",\n                \"thu_a_o\": \"2000-01-01T00:00:00.000Z\",\n                \"thu_a_c\": \"2000-01-01T00:00:00.000Z\",\n                \"fri_m_o\": \"2000-01-01T09:30:00.000Z\",\n                \"fri_m_c\": \"2000-01-01T16:30:00.000Z\",\n                \"fri_a_o\": \"2000-01-01T00:00:00.000Z\",\n                \"fri_a_c\": \"2000-01-01T00:00:00.000Z\",\n                \"sat_m_o\": \"2000-01-01T09:30:00.000Z\",\n                \"sat_m_c\": \"2000-01-01T12:00:00.000Z\",\n                \"sat_a_o\": \"2000-01-01T13:30:00.000Z\",\n                \"sat_a_c\": \"2000-01-01T17:00:00.000Z\",\n                \"sun_m_o\": \"2000-01-01T00:00:00.000Z\",\n                \"sun_m_c\": \"2000-01-01T00:00:00.000Z\",\n                \"sun_a_o\": \"2000-01-01T00:00:00.000Z\",\n                \"sun_a_c\": \"2000-01-01T00:00:00.000Z\"\n            }\n        ],\n        \"closed\": [\n            {\n                \"start\": \"2017-12-25\",\n                \"end\": \"2017-12-25\"\n            },\n            {\n                \"start\": \"2018-01-01\",\n                \"end\": \"2018-01-01\"\n            },\n            {\n                \"start\": \"2018-04-02\",\n                \"end\": \"2018-04-02\"\n            },\n            {\n                \"start\": \"2018-05-01\",\n                \"end\": \"2018-05-01\"\n            },\n            {\n                \"start\": \"2018-05-08\",\n                \"end\": \"2018-05-08\"\n            },\n            {\n                \"start\": \"2018-05-10\",\n                \"end\": \"2018-05-10\"\n            },\n            {\n                \"start\": \"2018-05-21\",\n                \"end\": \"2018-05-21\"\n            },\n            {\n                \"start\": \"2018-07-14\",\n                \"end\": \"2018-07-14\"\n            },\n            {\n                \"start\": \"2018-08-15\",\n                \"end\": \"2018-08-15\"\n            }\n        ],\n        \"exceptions\": [\n            {\n                \"start\": \"2018-01-25\",\n                \"end\": \"2018-01-25\",\n                \"m_o\": \"2000-01-01T09:30:00.000Z\",\n                \"m_c\": \"2000-01-01T11:00:00.000Z\",\n                \"a_o\": \"2000-01-01T15:00:00.000Z\",\n                \"a_c\": \"2000-01-01T16:30:00.000Z\"\n            }\n        ]\n    },\n    \"pages\": [\n        {\n            \"id\": 972,\n            \"instance\": {\n                \"slug\": \"portail-sortir-gps\"\n            }\n        },\n        {\n            \"id\": 17,\n            \"instance\": {\n                \"slug\": \"portail-institutionnel-gps\"\n            }\n        }\n    ]\n}"}],"_postman_id":"85217dcb-dda7-449e-8189-32b09c536baf"},{"name":"Search","id":"7d00af33-fbe6-4ab8-883c-9a75d81d4d9d","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v1/{{instance_id}}/facilities?q=&size=10&page=1&marker=false&instances[]=2&performers[]=Nakht&facilities[]=8&events[]=1&event_groups[]=1&news[]=1&projects[]=1&cities[]=7&epcis[]=1&departments[]=1&regions[]=1&skills[]=1&elects[]=1&bbox[]&facility_types[]=Oeuvre d'art&themes[]=1","description":"<p>Endpoint de recherche des équipements</p>\n","urlObject":{"path":["v1","{{instance_id}}","facilities"],"host":["https://api.publidata.io"],"query":[{"description":{"content":"<p>Recherche (full-text)</p>\n","type":"text/plain"},"key":"q","value":""},{"description":{"content":"<p>Nombre de résultats retournés (defaut: 10)</p>\n","type":"text/plain"},"key":"size","value":"10"},{"description":{"content":"<p>Pagination (defaut: 1)</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>Filtre booléen pour ne retourner que les locations (default: false)</p>\n","type":"text/plain"},"key":"marker","value":"false"},{"description":{"content":"<p>Filtre par instance (array d'id)</p>\n","type":"text/plain"},"key":"instances[]","value":"2"},{"description":{"content":"<p>Filtre par artiste lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"performers[]","value":"Nakht"},{"description":{"content":"<p>Filtre par équipement lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"facilities[]","value":"8"},{"description":{"content":"<p>Filtre par événement lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"events[]","value":"1"},{"description":{"content":"<p>Filtre par groupe d'événements lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"event_groups[]","value":"1"},{"description":{"content":"<p>Filtre par actualité liée (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"news[]","value":"1"},{"description":{"content":"<p>Filtre par projet lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"projects[]","value":"1"},{"description":{"content":"<p>Filtre par ville et location liées (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"cities[]","value":"7"},{"description":{"content":"<p>Filtre par epci liée (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"epcis[]","value":"1"},{"description":{"content":"<p>Filtre par departement lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"departments[]","value":"1"},{"description":{"content":"<p>Filtre par region liée (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"regions[]","value":"1"},{"description":{"content":"<p>Filtre par compétence liée (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"skills[]","value":"1"},{"description":{"content":"<p>Filtre par élu lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"elects[]","value":"1"},{"description":{"content":"<p>Filtre géographique (array de latitudes, longitudes dans l'ordre suivant minX, minY, maxX, maxY)</p>\n","type":"text/plain"},"key":"bbox[]","value":null},{"description":{"content":"<p>Filtre par type d'équipement (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"facility_types[]","value":"Oeuvre d'art"},{"description":{"content":"<p>Filtre par thème (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"themes[]","value":"1"}],"variable":[]}},"response":[{"id":"837ab95f-4cbf-4b1b-aae2-a276320804ae","name":"Search facility","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"https://publidata-backend.herokuapp.com/api/v1/facilities?q=parc&options[geo][top_left][lat]=49.05965195372349&options[geo][top_left][lon]=2.1371613664061897&options[geo][bottom_right][lat]=48.21570798955211&options[geo][bottom_right][lon]=2.7688752335936897&options[paging][from]=0&options[theme_categories][]=Loisirs&options[city]=Combs-la-Ville&options[instances][]=2","protocol":"https","host":["publidata-backend","herokuapp","com"],"path":["api","v1","facilities"],"query":[{"key":"q","value":"parc"},{"key":"options[geo][top_left][lat]","value":"49.05965195372349"},{"key":"options[geo][top_left][lon]","value":"2.1371613664061897"},{"key":"options[geo][bottom_right][lat]","value":"48.21570798955211"},{"key":"options[geo][bottom_right][lon]","value":"2.7688752335936897"},{"key":"options[paging][from]","value":"0"},{"key":"options[theme_categories][]","value":"Loisirs"},{"key":"options[city]","value":"Combs-la-Ville"},{"key":"options[instances][]","value":"2"}]}},"code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"took\": 7,\n    \"timed_out\": false,\n    \"_shards\": {\n        \"total\": 1,\n        \"successful\": 1,\n        \"failed\": 0\n    },\n    \"hits\": {\n        \"total\": 1,\n        \"max_score\": 2.5319426,\n        \"hits\": [\n            {\n                \"_index\": \"facilities\",\n                \"_type\": \"facility\",\n                \"_id\": \"429\",\n                \"_score\": 2.5319426,\n                \"_source\": {\n                    \"id\": 429,\n                    \"name\": \"parc Arthur Chaussy\",\n                    \"slug\": \"parc-arthur-chaussy\",\n                    \"address\": \"rue du chêne 77380 Combs-la-Ville\",\n                    \"status\": \"published\",\n                    \"location\": {\n                        \"lat\": 48.6620226,\n                        \"lon\": 2.5767917\n                    },\n                    \"cover_picture\": {\n                        \"id\": 14523,\n                        \"name\": \"image de couverture de parc Arthur Chaussy\",\n                        \"alt\": \"image de couverture de parc Arthur Chaussy\",\n                        \"description\": \"image de couverture de parc Arthur Chaussy\",\n                        \"slug\": \"image-de-couverture-de-parc-arthur-chaussy\",\n                        \"image_urls_as_json\": {\n                            \"image_original_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/014/523/original/couverture-parc-athur-chaussy-sortir-grand-paris-sud.jpg?1486136542\",\n                            \"image_small_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/014/523/image_small/couverture-parc-athur-chaussy-sortir-grand-paris-sud.jpg?1486136542\",\n                            \"image_medium_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/014/523/image_medium/couverture-parc-athur-chaussy-sortir-grand-paris-sud.jpg?1486136542\",\n                            \"image_large_url\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/014/523/image_large/couverture-parc-athur-chaussy-sortir-grand-paris-sud.jpg?1486136542\"\n                        }\n                    },\n                    \"theme_categories\": [\n                        {\n                            \"id\": 6,\n                            \"name\": \"Loisirs\"\n                        }\n                    ],\n                    \"facility_type\": {\n                        \"id\": 52,\n                        \"name\": \"Parc\"\n                    },\n                    \"instances\": [\n                        {\n                            \"id\": 2,\n                            \"slug\": \"portail-sortir-gps\"\n                        },\n                        {\n                            \"id\": 1,\n                            \"slug\": \"portail-institutionnel-gps\"\n                        }\n                    ],\n                    \"pages\": [\n                        {\n                            \"id\": 3080,\n                            \"instance\": {\n                                \"id\": 2,\n                                \"slug\": \"portail-sortir-gps\"\n                            }\n                        },\n                        {\n                            \"id\": 3077,\n                            \"instance\": {\n                                \"id\": 1,\n                                \"slug\": \"portail-institutionnel-gps\"\n                            }\n                        }\n                    ]\n                }\n            }\n        ]\n    },\n    \"aggregations\": {\n        \"all\": {\n            \"doc_count\": 589,\n            \"published\": {\n                \"doc_count\": 294,\n                \"theme_categories\": {\n                    \"doc_count\": 318,\n                    \"id\": {\n                        \"doc_count_error_upper_bound\": 0,\n                        \"sum_other_doc_count\": 1,\n                        \"buckets\": [\n                            {\n                                \"key\": \"3\",\n                                \"doc_count\": 122,\n                                \"name\": {\n                                    \"doc_count_error_upper_bound\": 0,\n                                    \"sum_other_doc_count\": 0,\n                                    \"buckets\": [\n                                        {\n                                            \"key\": \"Culture\",\n                                            \"doc_count\": 122\n                                        }\n                                    ]\n                                }\n                            },\n                            {\n                                \"key\": \"6\",\n                                \"doc_count\": 44,\n                                \"name\": {\n                                    \"doc_count_error_upper_bound\": 0,\n                                    \"sum_other_doc_count\": 0,\n                                    \"buckets\": [\n                                        {\n                                            \"key\": \"Loisirs\",\n                                            \"doc_count\": 44\n                                        }\n                                    ]\n                                }\n                            },\n                            {\n                                \"key\": \"4\",\n                                \"doc_count\": 42,\n                                \"name\": {\n                                    \"doc_count_error_upper_bound\": 0,\n                                    \"sum_other_doc_count\": 0,\n                                    \"buckets\": [\n                                        {\n                                            \"key\": \"Sport\",\n                                            \"doc_count\": 42\n                                        }\n                                    ]\n                                }\n                            },\n                            {\n                                \"key\": \"10\",\n                                \"doc_count\": 39,\n                                \"name\": {\n                                    \"doc_count_error_upper_bound\": 0,\n                                    \"sum_other_doc_count\": 0,\n                                    \"buckets\": [\n                                        {\n                                            \"key\": \"Patrimoine\",\n                                            \"doc_count\": 39\n                                        }\n                                    ]\n                                }\n                            },\n                            {\n                                \"key\": \"8\",\n                                \"doc_count\": 27,\n                                \"name\": {\n                                    \"doc_count_error_upper_bound\": 0,\n                                    \"sum_other_doc_count\": 0,\n                                    \"buckets\": [\n                                        {\n                                            \"key\": \"Service public\",\n                                            \"doc_count\": 27\n                                        }\n                                    ]\n                                }\n                            },\n                            {\n                                \"key\": \"7\",\n                                \"doc_count\": 18,\n                                \"name\": {\n                                    \"doc_count_error_upper_bound\": 0,\n                                    \"sum_other_doc_count\": 0,\n                                    \"buckets\": [\n                                        {\n                                            \"key\": \"Économie\",\n                                            \"doc_count\": 18\n                                        }\n                                    ]\n                                }\n                            },\n                            {\n                                \"key\": \"2\",\n                                \"doc_count\": 17,\n                                \"name\": {\n                                    \"doc_count_error_upper_bound\": 0,\n                                    \"sum_other_doc_count\": 0,\n                                    \"buckets\": [\n                                        {\n                                            \"key\": \"Enseignement\",\n                                            \"doc_count\": 17\n                                        }\n                                    ]\n                                }\n                            },\n                            {\n                                \"key\": \"5\",\n                                \"doc_count\": 3,\n                                \"name\": {\n                                    \"doc_count_error_upper_bound\": 0,\n                                    \"sum_other_doc_count\": 0,\n                                    \"buckets\": [\n                                        {\n                                            \"key\": \"Environnement\",\n                                            \"doc_count\": 3\n                                        }\n                                    ]\n                                }\n                            },\n                            {\n                                \"key\": \"9\",\n                                \"doc_count\": 3,\n                                \"name\": {\n                                    \"doc_count_error_upper_bound\": 0,\n                                    \"sum_other_doc_count\": 0,\n                                    \"buckets\": [\n                                        {\n                                            \"key\": \"Projet\",\n                                            \"doc_count\": 3\n                                        }\n                                    ]\n                                }\n                            },\n                            {\n                                \"key\": \"1\",\n                                \"doc_count\": 2,\n                                \"name\": {\n                                    \"doc_count_error_upper_bound\": 0,\n                                    \"sum_other_doc_count\": 0,\n                                    \"buckets\": [\n                                        {\n                                            \"key\": \"Tourisme\",\n                                            \"doc_count\": 2\n                                        }\n                                    ]\n                                }\n                            }\n                        ]\n                    }\n                }\n            }\n        },\n        \"facility_type_terms_agg\": {\n            \"doc_count\": 1,\n            \"name\": {\n                \"doc_count_error_upper_bound\": 0,\n                \"sum_other_doc_count\": 0,\n                \"buckets\": [\n                    {\n                        \"key\": \"52\",\n                        \"doc_count\": 1,\n                        \"name\": {\n                            \"doc_count_error_upper_bound\": 0,\n                            \"sum_other_doc_count\": 0,\n                            \"buckets\": [\n                                {\n                                    \"key\": \"Parc\",\n                                    \"doc_count\": 1\n                                }\n                            ]\n                        }\n                    }\n                ]\n            }\n        }\n    }\n}"}],"_postman_id":"7d00af33-fbe6-4ab8-883c-9a75d81d4d9d"}],"id":"d6096536-68b8-4da0-8a74-e506c81995c7","description":"<p>Endpoint d'API des équipements</p>\n","_postman_id":"d6096536-68b8-4da0-8a74-e506c81995c7"},{"name":"Projets","item":[{"name":"Index","id":"9222106d-5775-445c-92fb-f84848878dda","request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"https://api.publidata.io/v1/{{instance_id}}/projects","description":"<p>Index des projets</p>\n","urlObject":{"path":["v1","{{instance_id}}","projects"],"host":["https://api.publidata.io"],"query":[],"variable":[]}},"response":[{"id":"920b0092-7756-4b2d-8a9e-026400414f76","name":"Index projects","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"publidata.io/api/v1/portail-projets-gps/projects"},"code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"projects\": [\n        {\n            \"id\": 2,\n            \"name\": \"Projet de territoire\",\n            \"slug\": \"projet-de-territoire\",\n            \"start_date\": \"2016-05-01T00:00:00.000+02:00\",\n            \"end_date\": \"2017-12-31T00:00:00.000+01:00\",\n            \"cover_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/006/651/cover_small/bandeau-projet-territoire-grandparissud.jpg?1513613827\",\n                \"small_dimensions\": \"300x70\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/006/651/cover_medium/bandeau-projet-territoire-grandparissud.jpg?1513613827\",\n                \"medium_dimensions\": \"600x140\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/006/651/cover_large/bandeau-projet-territoire-grandparissud.jpg?1513613827\",\n                \"large_dimensions\": \"1000x233\",\n                \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/006/651/cover_xlarge/bandeau-projet-territoire-grandparissud.jpg?1513613827\",\n                \"xlarge_dimensions\": \"1596x372\",\n                \"alt\": \"image de couverture de Projet de territoire\",\n                \"name\": \"image de couverture de Projet de territoire\",\n                \"slug\": \"image-de-couverture-de-projet-de-territoire-9832a840-c61d-4102-9bbe-a81ee34914fb\",\n                \"description\": \"image de couverture de Projet de territoire\",\n                \"copyright\": \"agglomération Grand Paris Sud\"\n            },\n            \"pages\": [\n                {\n                    \"id\": 1321,\n                    \"instance\": {\n                        \"slug\": \"portail-projets-gps\"\n                    }\n                },\n                {\n                    \"id\": 8381,\n                    \"instance\": {\n                        \"slug\": \"portail-projets-gps\"\n                    }\n                }\n            ],\n            \"sub_projects\": [\n                {\n                    \"id\": 3,\n                    \"name\": \"Concertation élus communautaires \",\n                    \"slug\": \"concertation-elus-communautaires\",\n                    \"start_date\": \"2016-05-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2016-10-15T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/087/cover_small/seminaire-elus-grand-paris-sud%281%29samedi_12_mai.JPG?1473715424\",\n                        \"small_dimensions\": \"300x200\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/087/cover_medium/seminaire-elus-grand-paris-sud%281%29samedi_12_mai.JPG?1473715424\",\n                        \"medium_dimensions\": \"600x400\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/087/cover_large/seminaire-elus-grand-paris-sud%281%29samedi_12_mai.JPG?1473715424\",\n                        \"large_dimensions\": \"1000x667\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/087/cover_xlarge/seminaire-elus-grand-paris-sud%281%29samedi_12_mai.JPG?1473715424\",\n                        \"xlarge_dimensions\": \"1280x854\",\n                        \"alt\": \"image de couverture de Concertation élus communautaires \",\n                        \"name\": \"image de couverture de Concertation élus communautaires \",\n                        \"slug\": \"image-de-couverture-de-concertation-elus-communautaires\",\n                        \"description\": \"image de couverture de Concertation élus communautaires \",\n                        \"copyright\": \"agglomération Grand Paris Sud\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 1322,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 4,\n                    \"name\": \"Concertation élus municipaux\",\n                    \"slug\": \"concertation-elus-municipaux\",\n                    \"start_date\": \"2016-05-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2016-06-30T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/075/cover_small/seminaire-elus-municipaux-grand-paris-sud_%282%29.JPG?1473715036\",\n                        \"small_dimensions\": \"300x200\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/075/cover_medium/seminaire-elus-municipaux-grand-paris-sud_%282%29.JPG?1473715036\",\n                        \"medium_dimensions\": \"600x400\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/075/cover_large/seminaire-elus-municipaux-grand-paris-sud_%282%29.JPG?1473715036\",\n                        \"large_dimensions\": \"1000x666\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/075/cover_xlarge/seminaire-elus-municipaux-grand-paris-sud_%282%29.JPG?1473715036\",\n                        \"xlarge_dimensions\": \"1280x853\",\n                        \"alt\": \"image de couverture de Concertation élus municipaux\",\n                        \"name\": \"image de couverture de Concertation élus municipaux\",\n                        \"slug\": \"image-de-couverture-de-concertation-elus-municipaux\",\n                        \"description\": \"image de couverture de Concertation élus municipaux\",\n                        \"copyright\": \"agglomération Grand Paris Sud\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 1323,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 5,\n                    \"name\": \"Concertation partenaires et associations\",\n                    \"slug\": \"concertation-partenaires-et-associations\",\n                    \"start_date\": \"2016-06-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2016-09-30T00:00:00.000+02:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 1332,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 6,\n                    \"name\": \"Concertation agents\",\n                    \"slug\": \"concertation-agents\",\n                    \"start_date\": \"2016-07-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2016-08-31T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/057/cover_small/projet-territoire-grand-paris-sud-personnel_%282%29_jeudi_21_juillet.jpg?1473713810\",\n                        \"small_dimensions\": \"300x168\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/057/cover_medium/projet-territoire-grand-paris-sud-personnel_%282%29_jeudi_21_juillet.jpg?1473713810\",\n                        \"medium_dimensions\": \"600x336\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/057/cover_large/projet-territoire-grand-paris-sud-personnel_%282%29_jeudi_21_juillet.jpg?1473713810\",\n                        \"large_dimensions\": \"1000x560\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/057/cover_xlarge/projet-territoire-grand-paris-sud-personnel_%282%29_jeudi_21_juillet.jpg?1473713810\",\n                        \"xlarge_dimensions\": \"1280x717\",\n                        \"alt\": \"image de couverture de Concertation agents\",\n                        \"name\": \"image de couverture de Concertation agents\",\n                        \"slug\": \"image-de-couverture-de-concertation-agents\",\n                        \"description\": \"image de couverture de Concertation agents\",\n                        \"copyright\": \"agglomération Grand Paris Sud\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 1328,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 17,\n                    \"name\": \"Concertation CME et CJ\",\n                    \"slug\": \"concertation-cme-et-cj\",\n                    \"start_date\": \"2016-07-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2016-10-15T00:00:00.000+02:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 1408,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 7,\n                    \"name\": \"Concertation des habitants\",\n                    \"slug\": \"concertation-des-habitants\",\n                    \"start_date\": \"2016-09-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2016-11-15T00:00:00.000+01:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 1329,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 8,\n                    \"name\": \"Synthèse de la concertation\",\n                    \"slug\": \"synthese-de-la-concertation\",\n                    \"start_date\": \"2016-10-16T00:00:00.000+02:00\",\n                    \"end_date\": \"2017-03-30T00:00:00.000+02:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 1330,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 9,\n                    \"name\": \"Adoption du projet de territoire\",\n                    \"slug\": \"adoption-du-projet-de-territoire\",\n                    \"start_date\": \"2017-06-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2017-06-30T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/894/cover_small/adoption-projet-territoire-grandparissud.jpg?1474447897\",\n                        \"small_dimensions\": \"300x200\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/894/cover_medium/adoption-projet-territoire-grandparissud.jpg?1474447897\",\n                        \"medium_dimensions\": \"600x400\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/894/cover_large/adoption-projet-territoire-grandparissud.jpg?1474447897\",\n                        \"large_dimensions\": \"1000x667\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/894/cover_xlarge/adoption-projet-territoire-grandparissud.jpg?1474447897\",\n                        \"xlarge_dimensions\": \"2000x1333\",\n                        \"alt\": \"image de couverture de Adoption du projet de territoire\",\n                        \"name\": \"image de couverture de Adoption du projet de territoire\",\n                        \"slug\": \"image-de-couverture-de-adoption-du-projet-de-territoire\",\n                        \"description\": \"image de couverture de Adoption du projet de territoire\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 1331,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                }\n            ]\n        },\n        {\n            \"id\": 26,\n            \"name\": \"Tram 12 express / Requalification du Bois Briard\",\n            \"slug\": \"tram-12-express-requalification-du-bois-briard\",\n            \"start_date\": \"2015-04-01T00:00:00.000+02:00\",\n            \"end_date\": \"2020-06-30T00:00:00.000+02:00\",\n            \"cover_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/168/cover_small/Perspective-tram12.png?1487925596\",\n                \"small_dimensions\": \"300x178\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/168/cover_medium/Perspective-tram12.png?1487925596\",\n                \"medium_dimensions\": \"600x356\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/168/cover_large/Perspective-tram12.png?1487925596\",\n                \"large_dimensions\": \"1000x593\",\n                \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/168/cover_xlarge/Perspective-tram12.png?1487925596\",\n                \"xlarge_dimensions\": \"2000x1186\",\n                \"alt\": \"image de couverture de Tram 12 express / Requalification du Bois Briard\",\n                \"name\": \"image de couverture de Tram 12 express / Requalification du Bois Briard\",\n                \"slug\": \"image-de-couverture-de-tram-12-express-requalification-du-bois-briard\",\n                \"description\": \"image de couverture de Tram 12 express / Requalification du Bois Briard\",\n                \"copyright\": \"\"\n            },\n            \"pages\": [\n                {\n                    \"id\": 4030,\n                    \"instance\": {\n                        \"slug\": \"portail-projets-gps\"\n                    }\n                }\n            ],\n            \"sub_projects\": [\n                {\n                    \"id\": 27,\n                    \"name\": \"Concertation préalable requalification RD 446\",\n                    \"slug\": \"concertation-prealable-requalification-rd-446\",\n                    \"start_date\": \"2015-04-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2015-10-01T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/302/cover_small/Perspective-tram12.png?1488205439\",\n                        \"small_dimensions\": \"300x178\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/302/cover_medium/Perspective-tram12.png?1488205439\",\n                        \"medium_dimensions\": \"600x356\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/302/cover_large/Perspective-tram12.png?1488205439\",\n                        \"large_dimensions\": \"1000x593\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/302/cover_xlarge/Perspective-tram12.png?1488205439\",\n                        \"xlarge_dimensions\": \"2000x1186\",\n                        \"alt\": \"image de couverture de Concertation préalable requalification RD 446\",\n                        \"name\": \"image de couverture de Concertation préalable requalification RD 446\",\n                        \"slug\": \"image-de-couverture-de-concertation-prealable-requalification-rd-446\",\n                        \"description\": \"image de couverture de Concertation préalable requalification RD 446\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 4069,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 28,\n                    \"name\": \"Enquête publique\",\n                    \"slug\": \"enquete-publique\",\n                    \"start_date\": \"2016-02-01T00:00:00.000+01:00\",\n                    \"end_date\": \"2016-07-02T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/312/cover_small/Perspective-tram12.png?1488201990\",\n                        \"small_dimensions\": \"300x178\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/312/cover_medium/Perspective-tram12.png?1488201990\",\n                        \"medium_dimensions\": \"600x356\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/312/cover_large/Perspective-tram12.png?1488201990\",\n                        \"large_dimensions\": \"1000x593\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/312/cover_xlarge/Perspective-tram12.png?1488201990\",\n                        \"xlarge_dimensions\": \"2000x1186\",\n                        \"alt\": \"image de couverture de Enquête publique\",\n                        \"name\": \"image de couverture de Enquête publique\",\n                        \"slug\": \"image-de-couverture-de-enquete-publique\",\n                        \"description\": \"image de couverture de Enquête publique\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 4033,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 29,\n                    \"name\": \"Réunion publique \",\n                    \"slug\": \"reunion-publique\",\n                    \"start_date\": \"2016-11-29T00:00:00.000+01:00\",\n                    \"end_date\": \"2016-11-29T00:00:00.000+01:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/307/cover_small/ANL_5670.jpg?1488201053\",\n                        \"small_dimensions\": \"300x200\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/307/cover_medium/ANL_5670.jpg?1488201053\",\n                        \"medium_dimensions\": \"600x399\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/307/cover_large/ANL_5670.jpg?1488201053\",\n                        \"large_dimensions\": \"1000x666\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/307/cover_xlarge/ANL_5670.jpg?1488201053\",\n                        \"xlarge_dimensions\": \"2000x1331\",\n                        \"alt\": \"image de couverture de Réunion publique \",\n                        \"name\": \"image de couverture de Réunion publique \",\n                        \"slug\": \"image-de-couverture-de-reunion-publique\",\n                        \"description\": \"image de couverture de Réunion publique \",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 4036,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 30,\n                    \"name\": \"Travaux de déboisage \",\n                    \"slug\": \"travaux-de-deboisage\",\n                    \"start_date\": \"2017-02-27T00:00:00.000+01:00\",\n                    \"end_date\": \"2017-03-05T00:00:00.000+01:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/303/cover_small/N.446_DSC3739.jpg?1488200468\",\n                        \"small_dimensions\": \"300x200\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/303/cover_medium/N.446_DSC3739.jpg?1488200468\",\n                        \"medium_dimensions\": \"600x400\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/303/cover_large/N.446_DSC3739.jpg?1488200468\",\n                        \"large_dimensions\": \"1000x667\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/303/cover_xlarge/N.446_DSC3739.jpg?1488200468\",\n                        \"xlarge_dimensions\": \"2000x1335\",\n                        \"alt\": \"image de couverture de Travaux de déboisage \",\n                        \"name\": \"image de couverture de Travaux de déboisage \",\n                        \"slug\": \"image-de-couverture-de-travaux-de-deboisage\",\n                        \"description\": \"image de couverture de Travaux de déboisage \",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 4039,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 31,\n                    \"name\": \"Travaux préparatoires\",\n                    \"slug\": \"travaux-preparatoires\",\n                    \"start_date\": \"2017-03-06T00:00:00.000+01:00\",\n                    \"end_date\": \"2017-03-12T00:00:00.000+01:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/308/cover_small/Am%C3%A9nagement_du_secteur_Delouvrier.png?1488201549\",\n                        \"small_dimensions\": \"300x159\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/308/cover_medium/Am%C3%A9nagement_du_secteur_Delouvrier.png?1488201549\",\n                        \"medium_dimensions\": \"600x318\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/308/cover_large/Am%C3%A9nagement_du_secteur_Delouvrier.png?1488201549\",\n                        \"large_dimensions\": \"1000x529\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/308/cover_xlarge/Am%C3%A9nagement_du_secteur_Delouvrier.png?1488201549\",\n                        \"xlarge_dimensions\": \"2000x1059\",\n                        \"alt\": \"image de couverture de Travaux préparatoires\",\n                        \"name\": \"image de couverture de Travaux préparatoires\",\n                        \"slug\": \"image-de-couverture-de-travaux-preparatoires\",\n                        \"description\": \"image de couverture de Travaux préparatoires\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 4042,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 32,\n                    \"name\": \"Fermeture de l’échangeur Delouvrier\",\n                    \"slug\": \"fermeture-de-l-echangeur-delouvrier\",\n                    \"start_date\": \"2017-03-21T00:00:00.000+01:00\",\n                    \"end_date\": \"2018-06-30T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/299/cover_small/Perspective-_-carrefour_-Delouvrier.jpg?1488199631\",\n                        \"small_dimensions\": \"300x169\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/299/cover_medium/Perspective-_-carrefour_-Delouvrier.jpg?1488199631\",\n                        \"medium_dimensions\": \"600x338\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/299/cover_large/Perspective-_-carrefour_-Delouvrier.jpg?1488199631\",\n                        \"large_dimensions\": \"1000x563\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/299/cover_xlarge/Perspective-_-carrefour_-Delouvrier.jpg?1488199631\",\n                        \"xlarge_dimensions\": \"1210x681\",\n                        \"alt\": \"image de couverture de Fermeture de l’échangeur Delouvrier\",\n                        \"name\": \"image de couverture de Fermeture de l’échangeur Delouvrier\",\n                        \"slug\": \"image-de-couverture-de-fermeture-de-l-echangeur-delouvrier\",\n                        \"description\": \"image de couverture de Fermeture de l’échangeur Delouvrier\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 4026,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 33,\n                    \"name\": \"Requalification de la RD 446\",\n                    \"slug\": \"requalification-de-la-rd-446\",\n                    \"start_date\": \"2017-03-13T00:00:00.000+01:00\",\n                    \"end_date\": \"2018-08-31T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/304/cover_small/carte-travaux-delouvrier-grandparissud.PNG?1490690689\",\n                        \"small_dimensions\": \"300x159\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/304/cover_medium/carte-travaux-delouvrier-grandparissud.PNG?1490690689\",\n                        \"medium_dimensions\": \"600x317\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/304/cover_large/carte-travaux-delouvrier-grandparissud.PNG?1490690689\",\n                        \"large_dimensions\": \"1000x529\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/304/cover_xlarge/carte-travaux-delouvrier-grandparissud.PNG?1490690689\",\n                        \"xlarge_dimensions\": \"1190x629\",\n                        \"alt\": \"image de couverture de Requalification de la RD 446\",\n                        \"name\": \"image de couverture de Requalification de la RD 446\",\n                        \"slug\": \"image-de-couverture-de-requalification-de-la-rd-446\",\n                        \"description\": \"image de couverture de Requalification de la RD 446\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 4045,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 34,\n                    \"name\": \"Début des travaux Tram 12 express\",\n                    \"slug\": \"debut-des-travaux-tram-12-express\",\n                    \"start_date\": \"2018-01-03T00:00:00.000+01:00\",\n                    \"end_date\": \"2018-07-01T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/298/cover_small/Perspective-Evry.png?1488199442\",\n                        \"small_dimensions\": \"300x178\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/298/cover_medium/Perspective-Evry.png?1488199442\",\n                        \"medium_dimensions\": \"600x356\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/298/cover_large/Perspective-Evry.png?1488199442\",\n                        \"large_dimensions\": \"1000x593\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/298/cover_xlarge/Perspective-Evry.png?1488199442\",\n                        \"xlarge_dimensions\": \"1999x1186\",\n                        \"alt\": \"image de couverture de Début des travaux Tram 12 express\",\n                        \"name\": \"image de couverture de Début des travaux Tram 12 express\",\n                        \"slug\": \"image-de-couverture-de-debut-des-travaux-tram-12-express\",\n                        \"description\": \"image de couverture de Début des travaux Tram 12 express\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 4048,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 35,\n                    \"name\": \"Ouverture boulevard urbain\",\n                    \"slug\": \"ouverture-boulevard-urbain\",\n                    \"start_date\": \"2018-07-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2019-06-30T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/305/cover_small/Perspective-Evry.png?1488200796\",\n                        \"small_dimensions\": \"300x178\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/305/cover_medium/Perspective-Evry.png?1488200796\",\n                        \"medium_dimensions\": \"600x356\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/305/cover_large/Perspective-Evry.png?1488200796\",\n                        \"large_dimensions\": \"1000x593\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/305/cover_xlarge/Perspective-Evry.png?1488200796\",\n                        \"xlarge_dimensions\": \"1999x1186\",\n                        \"alt\": \"image de couverture de Ouverture boulevard urbain\",\n                        \"name\": \"image de couverture de Ouverture boulevard urbain\",\n                        \"slug\": \"image-de-couverture-de-ouverture-boulevard-urbain\",\n                        \"description\": \"image de couverture de Ouverture boulevard urbain\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 4051,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 36,\n                    \"name\": \"Fin des travaux d'aménagement\",\n                    \"slug\": \"fin-des-travaux-d-amenagement\",\n                    \"start_date\": \"2019-07-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2020-06-30T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/306/cover_small/Perspective-tram12.png?1488200844\",\n                        \"small_dimensions\": \"300x178\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/306/cover_medium/Perspective-tram12.png?1488200844\",\n                        \"medium_dimensions\": \"600x356\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/306/cover_large/Perspective-tram12.png?1488200844\",\n                        \"large_dimensions\": \"1000x593\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/306/cover_xlarge/Perspective-tram12.png?1488200844\",\n                        \"xlarge_dimensions\": \"2000x1186\",\n                        \"alt\": \"image de couverture de Fin des travaux d'aménagement\",\n                        \"name\": \"image de couverture de Fin des travaux d'aménagement\",\n                        \"slug\": \"image-de-couverture-de-fin-des-travaux-d-amenagement\",\n                        \"description\": \"image de couverture de Fin des travaux d'aménagement\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 4054,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                }\n            ]\n        },\n        {\n            \"id\": 41,\n            \"name\": \"T Zen 4 \",\n            \"slug\": \"t-zen-4\",\n            \"start_date\": \"2016-05-30T00:00:00.000+02:00\",\n            \"end_date\": \"2020-12-31T00:00:00.000+01:00\",\n            \"cover_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/547/cover_small/1-voies-reservees_priorite-aux-feux.jpg?1488460827\",\n                \"small_dimensions\": \"300x168\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/547/cover_medium/1-voies-reservees_priorite-aux-feux.jpg?1488460827\",\n                \"medium_dimensions\": \"600x337\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/547/cover_large/1-voies-reservees_priorite-aux-feux.jpg?1488460827\",\n                \"large_dimensions\": \"900x505\",\n                \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/547/cover_xlarge/1-voies-reservees_priorite-aux-feux.jpg?1488460827\",\n                \"xlarge_dimensions\": \"900x505\",\n                \"alt\": \"image de couverture de T Zen 4 \",\n                \"name\": \"image de couverture de T Zen 4 \",\n                \"slug\": \"image-de-couverture-de-t-zen-4\",\n                \"description\": \"image de couverture de T Zen 4 \",\n                \"copyright\": \"\"\n            },\n            \"pages\": [\n                {\n                    \"id\": 4163,\n                    \"instance\": {\n                        \"slug\": \"portail-projets-gps\"\n                    }\n                }\n            ],\n            \"sub_projects\": [\n                {\n                    \"id\": 42,\n                    \"name\": \"Enquête publique\",\n                    \"slug\": \"enquete-publique-ae33dafd-8be2-48ec-a581-d325aeb364bf\",\n                    \"start_date\": \"2016-05-30T00:00:00.000+02:00\",\n                    \"end_date\": \"2016-07-04T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/558/cover_small/3-station-confortable-accessible.jpg?1488468928\",\n                        \"small_dimensions\": \"300x169\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/558/cover_medium/3-station-confortable-accessible.jpg?1488468928\",\n                        \"medium_dimensions\": \"600x337\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/558/cover_large/3-station-confortable-accessible.jpg?1488468928\",\n                        \"large_dimensions\": \"900x506\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/558/cover_xlarge/3-station-confortable-accessible.jpg?1488468928\",\n                        \"xlarge_dimensions\": \"900x506\",\n                        \"alt\": \"image de couverture de Enquête publique\",\n                        \"name\": \"image de couverture de Enquête publique\",\n                        \"slug\": \"image-de-couverture-de-enquete-publique-2e821b44-25e0-41c6-959e-db1384f855d6\",\n                        \"description\": \"image de couverture de Enquête publique\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 4166,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 43,\n                    \"name\": \"Déclaration de projet et d'utilité publique\",\n                    \"slug\": \"declaration-de-projet-et-d-utilite-publique-5ecff84d-872d-4a15-81ed-d3d70b388e4c\",\n                    \"start_date\": \"2016-10-05T00:00:00.000+02:00\",\n                    \"end_date\": \"2016-12-08T00:00:00.000+01:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/559/cover_small/1-voies-reservees_priorite-aux-feux.jpg?1488468962\",\n                        \"small_dimensions\": \"300x168\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/559/cover_medium/1-voies-reservees_priorite-aux-feux.jpg?1488468962\",\n                        \"medium_dimensions\": \"600x337\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/559/cover_large/1-voies-reservees_priorite-aux-feux.jpg?1488468962\",\n                        \"large_dimensions\": \"900x505\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/559/cover_xlarge/1-voies-reservees_priorite-aux-feux.jpg?1488468962\",\n                        \"xlarge_dimensions\": \"900x505\",\n                        \"alt\": \"image de couverture de Déclaration de projet et d'utilité publique\",\n                        \"name\": \"image de couverture de Déclaration de projet et d'utilité publique\",\n                        \"slug\": \"image-de-couverture-de-declaration-de-projet-et-d-utilite-publique-39c7aac9-83f4-4c8b-95e4-c74564bfddfd\",\n                        \"description\": \"image de couverture de Déclaration de projet et d'utilité publique\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 4169,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 44,\n                    \"name\": \"Début des travaux\",\n                    \"slug\": \"debut-des-travaux\",\n                    \"start_date\": \"2019-01-01T00:00:00.000+01:00\",\n                    \"end_date\": \"2019-12-31T00:00:00.000+01:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/560/cover_small/3-station-confortable-accessible.jpg?1488469031\",\n                        \"small_dimensions\": \"300x169\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/560/cover_medium/3-station-confortable-accessible.jpg?1488469031\",\n                        \"medium_dimensions\": \"600x337\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/560/cover_large/3-station-confortable-accessible.jpg?1488469031\",\n                        \"large_dimensions\": \"900x506\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/560/cover_xlarge/3-station-confortable-accessible.jpg?1488469031\",\n                        \"xlarge_dimensions\": \"900x506\",\n                        \"alt\": \"image de couverture de Début des travaux\",\n                        \"name\": \"image de couverture de Début des travaux\",\n                        \"slug\": \"image-de-couverture-de-debut-des-travaux\",\n                        \"description\": \"image de couverture de Début des travaux\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 4172,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 45,\n                    \"name\": \"Mise en service du T Zen 4\",\n                    \"slug\": \"mise-en-service-du-t-zen-4\",\n                    \"start_date\": \"2020-01-01T00:00:00.000+01:00\",\n                    \"end_date\": \"2020-12-31T00:00:00.000+01:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/561/cover_small/1-voies-reservees_priorite-aux-feux.jpg?1488469076\",\n                        \"small_dimensions\": \"300x168\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/561/cover_medium/1-voies-reservees_priorite-aux-feux.jpg?1488469076\",\n                        \"medium_dimensions\": \"600x337\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/561/cover_large/1-voies-reservees_priorite-aux-feux.jpg?1488469076\",\n                        \"large_dimensions\": \"900x505\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/561/cover_xlarge/1-voies-reservees_priorite-aux-feux.jpg?1488469076\",\n                        \"xlarge_dimensions\": \"900x505\",\n                        \"alt\": \"image de couverture de Mise en service du T Zen 4\",\n                        \"name\": \"image de couverture de Mise en service du T Zen 4\",\n                        \"slug\": \"image-de-couverture-de-mise-en-service-du-t-zen-4\",\n                        \"description\": \"image de couverture de Mise en service du T Zen 4\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 4175,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                }\n            ]\n        },\n        {\n            \"id\": 18,\n            \"name\": \"T Zen 2\",\n            \"slug\": \"t-zen-2\",\n            \"start_date\": \"2013-09-01T00:00:00.000+02:00\",\n            \"end_date\": \"2024-12-31T00:00:00.000+01:00\",\n            \"cover_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/014/520/cover_small/3-station-confortable-accessible.jpg?1486132133\",\n                \"small_dimensions\": \"300x169\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/014/520/cover_medium/3-station-confortable-accessible.jpg?1486132133\",\n                \"medium_dimensions\": \"600x337\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/014/520/cover_large/3-station-confortable-accessible.jpg?1486132133\",\n                \"large_dimensions\": \"900x506\",\n                \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/014/520/cover_xlarge/3-station-confortable-accessible.jpg?1486132133\",\n                \"xlarge_dimensions\": \"900x506\",\n                \"alt\": \"image de couverture de T Zen 2\",\n                \"name\": \"image de couverture de T Zen 2\",\n                \"slug\": \"image-de-couverture-de-t-zen-2\",\n                \"description\": \"image de couverture de T Zen 2\",\n                \"copyright\": \"\"\n            },\n            \"pages\": [\n                {\n                    \"id\": 2184,\n                    \"instance\": {\n                        \"slug\": \"portail-projets-gps\"\n                    }\n                }\n            ],\n            \"sub_projects\": [\n                {\n                    \"id\": 19,\n                    \"name\": \"Enquête publique\",\n                    \"slug\": \"enquete-publique-932eaf28-3be9-4ccb-a2b0-c8e8cd9cce8b\",\n                    \"start_date\": \"2013-09-23T00:00:00.000+02:00\",\n                    \"end_date\": \"2013-10-26T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/551/cover_small/1-voies-reservees_priorite-aux-feux.jpg?1488468068\",\n                        \"small_dimensions\": \"300x168\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/551/cover_medium/1-voies-reservees_priorite-aux-feux.jpg?1488468068\",\n                        \"medium_dimensions\": \"600x337\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/551/cover_large/1-voies-reservees_priorite-aux-feux.jpg?1488468068\",\n                        \"large_dimensions\": \"900x505\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/551/cover_xlarge/1-voies-reservees_priorite-aux-feux.jpg?1488468068\",\n                        \"xlarge_dimensions\": \"900x505\",\n                        \"alt\": \"image de couverture de Enquête publique\",\n                        \"name\": \"image de couverture de Enquête publique\",\n                        \"slug\": \"image-de-couverture-de-enquete-publique-acc85490-4756-4182-a689-c9119e63e7fe\",\n                        \"description\": \"image de couverture de Enquête publique\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 2187,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 20,\n                    \"name\": \"Déclaration de projet et d'utilité publique\",\n                    \"slug\": \"declaration-de-projet-et-d-utilite-publique\",\n                    \"start_date\": \"2014-06-27T00:00:00.000+02:00\",\n                    \"end_date\": \"2014-07-30T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/552/cover_small/3-station-confortable-accessible.jpg?1488468105\",\n                        \"small_dimensions\": \"300x169\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/552/cover_medium/3-station-confortable-accessible.jpg?1488468105\",\n                        \"medium_dimensions\": \"600x337\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/552/cover_large/3-station-confortable-accessible.jpg?1488468105\",\n                        \"large_dimensions\": \"900x506\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/552/cover_xlarge/3-station-confortable-accessible.jpg?1488468105\",\n                        \"xlarge_dimensions\": \"900x506\",\n                        \"alt\": \"image de couverture de Déclaration de projet et d'utilité publique\",\n                        \"name\": \"image de couverture de Déclaration de projet et d'utilité publique\",\n                        \"slug\": \"image-de-couverture-de-declaration-de-projet-et-d-utilite-publique\",\n                        \"description\": \"image de couverture de Déclaration de projet et d'utilité publique\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 2237,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 21,\n                    \"name\": \"Études approfondies et avant-projet\",\n                    \"slug\": \"etudes-approfondies-et-avant-projet\",\n                    \"start_date\": \"2014-08-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2017-03-31T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/553/cover_small/1-voies-reservees_priorite-aux-feux.jpg?1488468141\",\n                        \"small_dimensions\": \"300x168\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/553/cover_medium/1-voies-reservees_priorite-aux-feux.jpg?1488468141\",\n                        \"medium_dimensions\": \"600x337\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/553/cover_large/1-voies-reservees_priorite-aux-feux.jpg?1488468141\",\n                        \"large_dimensions\": \"900x505\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/553/cover_xlarge/1-voies-reservees_priorite-aux-feux.jpg?1488468141\",\n                        \"xlarge_dimensions\": \"900x505\",\n                        \"alt\": \"image de couverture de Études approfondies et avant-projet\",\n                        \"name\": \"image de couverture de Études approfondies et avant-projet\",\n                        \"slug\": \"image-de-couverture-de-etudes-approfondies-et-avant-projet\",\n                        \"description\": \"image de couverture de Études approfondies et avant-projet\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 2236,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 22,\n                    \"name\": \"Travaux d'aménagement\",\n                    \"slug\": \"travaux-d-amenagement\",\n                    \"start_date\": \"2016-10-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2017-05-30T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/554/cover_small/3-station-confortable-accessible.jpg?1488468430\",\n                        \"small_dimensions\": \"300x169\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/554/cover_medium/3-station-confortable-accessible.jpg?1488468430\",\n                        \"medium_dimensions\": \"600x337\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/554/cover_large/3-station-confortable-accessible.jpg?1488468430\",\n                        \"large_dimensions\": \"900x506\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/554/cover_xlarge/3-station-confortable-accessible.jpg?1488468430\",\n                        \"xlarge_dimensions\": \"900x506\",\n                        \"alt\": \"image de couverture de Travaux d'aménagement\",\n                        \"name\": \"image de couverture de Travaux d'aménagement\",\n                        \"slug\": \"image-de-couverture-de-travaux-d-amenagement\",\n                        \"description\": \"image de couverture de Travaux d'aménagement\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 2235,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 23,\n                    \"name\": \"Début prévisonnel des travaux\",\n                    \"slug\": \"debut-previsonnel-des-travaux\",\n                    \"start_date\": \"2017-07-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2018-06-30T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/555/cover_small/1-voies-reservees_priorite-aux-feux.jpg?1488468382\",\n                        \"small_dimensions\": \"300x168\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/555/cover_medium/1-voies-reservees_priorite-aux-feux.jpg?1488468382\",\n                        \"medium_dimensions\": \"600x337\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/555/cover_large/1-voies-reservees_priorite-aux-feux.jpg?1488468382\",\n                        \"large_dimensions\": \"900x505\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/555/cover_xlarge/1-voies-reservees_priorite-aux-feux.jpg?1488468382\",\n                        \"xlarge_dimensions\": \"900x505\",\n                        \"alt\": \"image de couverture de Début prévisonnel des travaux\",\n                        \"name\": \"image de couverture de Début prévisonnel des travaux\",\n                        \"slug\": \"image-de-couverture-de-debut-previsonnel-des-travaux\",\n                        \"description\": \"image de couverture de Début prévisonnel des travaux\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 2234,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 24,\n                    \"name\": \"Travaux et création des stations\",\n                    \"slug\": \"travaux-et-creation-des-stations\",\n                    \"start_date\": \"2018-01-01T00:00:00.000+01:00\",\n                    \"end_date\": \"2023-12-31T00:00:00.000+01:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/556/cover_small/3-station-confortable-accessible.jpg?1488468607\",\n                        \"small_dimensions\": \"300x169\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/556/cover_medium/3-station-confortable-accessible.jpg?1488468607\",\n                        \"medium_dimensions\": \"600x337\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/556/cover_large/3-station-confortable-accessible.jpg?1488468607\",\n                        \"large_dimensions\": \"900x506\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/556/cover_xlarge/3-station-confortable-accessible.jpg?1488468607\",\n                        \"xlarge_dimensions\": \"900x506\",\n                        \"alt\": \"image de couverture de Travaux et création des stations\",\n                        \"name\": \"image de couverture de Travaux et création des stations\",\n                        \"slug\": \"image-de-couverture-de-travaux-et-creation-des-stations\",\n                        \"description\": \"image de couverture de Travaux et création des stations\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 2233,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 25,\n                    \"name\": \"Mise en service du T Zen 2 \",\n                    \"slug\": \"mise-en-service-du-t-zen-2\",\n                    \"start_date\": \"2024-07-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2024-12-31T00:00:00.000+01:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/557/cover_small/1-voies-reservees_priorite-aux-feux.jpg?1488468656\",\n                        \"small_dimensions\": \"300x168\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/557/cover_medium/1-voies-reservees_priorite-aux-feux.jpg?1488468656\",\n                        \"medium_dimensions\": \"600x337\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/557/cover_large/1-voies-reservees_priorite-aux-feux.jpg?1488468656\",\n                        \"large_dimensions\": \"900x505\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/557/cover_xlarge/1-voies-reservees_priorite-aux-feux.jpg?1488468656\",\n                        \"xlarge_dimensions\": \"900x505\",\n                        \"alt\": \"image de couverture de Mise en service du T Zen 2 \",\n                        \"name\": \"image de couverture de Mise en service du T Zen 2 \",\n                        \"slug\": \"image-de-couverture-de-mise-en-service-du-t-zen-2\",\n                        \"description\": \"image de couverture de Mise en service du T Zen 2 \",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 2232,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                }\n            ]\n        },\n        {\n            \"id\": 48,\n            \"name\": \"L'Agora se métamorphose \",\n            \"slug\": \"l-agora-se-metamorphose\",\n            \"start_date\": \"2017-09-01T00:00:00.000+02:00\",\n            \"end_date\": \"2020-12-01T00:00:00.000+01:00\",\n            \"cover_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/489/cover_small/Dossier-Graphique_EVRY_02-10.jpg?1506422665\",\n                \"small_dimensions\": \"300x147\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/489/cover_medium/Dossier-Graphique_EVRY_02-10.jpg?1506422665\",\n                \"medium_dimensions\": \"600x293\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/489/cover_large/Dossier-Graphique_EVRY_02-10.jpg?1506422665\",\n                \"large_dimensions\": \"1000x489\",\n                \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/489/cover_xlarge/Dossier-Graphique_EVRY_02-10.jpg?1506422665\",\n                \"xlarge_dimensions\": \"1854x906\",\n                \"alt\": \"image de couverture de L'Agora se métamorphose \",\n                \"name\": \"image de couverture de L'Agora se métamorphose \",\n                \"slug\": null,\n                \"description\": \"image de couverture de L'Agora se métamorphose \",\n                \"copyright\": \"\"\n            },\n            \"pages\": [\n                {\n                    \"id\": 7560,\n                    \"instance\": {\n                        \"slug\": \"portail-projets-gps\"\n                    }\n                }\n            ],\n            \"sub_projects\": [\n                {\n                    \"id\": 49,\n                    \"name\": \"Démolition du Crédit foncier \",\n                    \"slug\": \"demolition-du-credit-foncier\",\n                    \"start_date\": \"2017-09-15T00:00:00.000+02:00\",\n                    \"end_date\": \"2018-01-30T00:00:00.000+01:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 7563,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 50,\n                    \"name\": \"Espace restauration\",\n                    \"slug\": \"espace-restauration\",\n                    \"start_date\": \"2018-01-01T00:00:00.000+01:00\",\n                    \"end_date\": \"2019-05-01T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/751/cover_small/food_court.jpg?1507107617\",\n                        \"small_dimensions\": \"300x200\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/751/cover_medium/food_court.jpg?1507107617\",\n                        \"medium_dimensions\": \"600x400\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/751/cover_large/food_court.jpg?1507107617\",\n                        \"large_dimensions\": \"1000x667\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/751/cover_xlarge/food_court.jpg?1507107617\",\n                        \"xlarge_dimensions\": \"2000x1333\",\n                        \"alt\": \"image de couverture de Espace restauration\",\n                        \"name\": \"image de couverture de Espace restauration\",\n                        \"slug\": null,\n                        \"description\": \"image de couverture de Espace restauration\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 7735,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 51,\n                    \"name\": \"Place de l'Agora \",\n                    \"slug\": \"place-de-l-agora\",\n                    \"start_date\": \"2018-01-01T00:00:00.000+01:00\",\n                    \"end_date\": \"2018-12-31T00:00:00.000+01:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 7738,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 52,\n                    \"name\": \"Les Arènes\",\n                    \"slug\": \"les-arenes\",\n                    \"start_date\": \"2018-06-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2020-06-01T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/846/cover_small/int%C3%A9rieur_ar%C3%A8nes.JPG?1507300602\",\n                        \"small_dimensions\": \"300x167\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/846/cover_medium/int%C3%A9rieur_ar%C3%A8nes.JPG?1507300602\",\n                        \"medium_dimensions\": \"600x335\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/846/cover_large/int%C3%A9rieur_ar%C3%A8nes.JPG?1507300602\",\n                        \"large_dimensions\": \"956x533\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/846/cover_xlarge/int%C3%A9rieur_ar%C3%A8nes.JPG?1507300602\",\n                        \"xlarge_dimensions\": \"956x533\",\n                        \"alt\": \"image de couverture de Les Arènes\",\n                        \"name\": \"image de couverture de Les Arènes\",\n                        \"slug\": null,\n                        \"description\": \"image de couverture de Les Arènes\",\n                        \"copyright\": \"DVVD/Labtop\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 7741,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 53,\n                    \"name\": \"Place des Terrasses\",\n                    \"slug\": \"place-des-terrasses\",\n                    \"start_date\": \"2019-01-01T00:00:00.000+01:00\",\n                    \"end_date\": \"2020-01-01T00:00:00.000+01:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/757/cover_small/une_dossier_centres_commerciaux.jpg?1507119253\",\n                        \"small_dimensions\": \"233x300\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/757/cover_medium/une_dossier_centres_commerciaux.jpg?1507119253\",\n                        \"medium_dimensions\": \"466x600\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/757/cover_large/une_dossier_centres_commerciaux.jpg?1507119253\",\n                        \"large_dimensions\": \"777x1000\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/757/cover_xlarge/une_dossier_centres_commerciaux.jpg?1507119253\",\n                        \"xlarge_dimensions\": \"993x1278\",\n                        \"alt\": \"image de couverture de Place des Terrasses\",\n                        \"name\": \"image de couverture de Place des Terrasses\",\n                        \"slug\": null,\n                        \"description\": \"image de couverture de Place des Terrasses\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 7744,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                }\n            ]\n        },\n        {\n            \"id\": 46,\n            \"name\": \"Gare TGV\",\n            \"slug\": \"gare-tgv\",\n            \"start_date\": \"2012-01-01T00:00:00.000+01:00\",\n            \"end_date\": \"2030-12-31T00:00:00.000+01:00\",\n            \"cover_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/548/cover_small/gare-moissy-tgv.jpg?1488450325\",\n                \"small_dimensions\": \"300x200\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/548/cover_medium/gare-moissy-tgv.jpg?1488450325\",\n                \"medium_dimensions\": \"600x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/548/cover_large/gare-moissy-tgv.jpg?1488450325\",\n                \"large_dimensions\": \"1000x667\",\n                \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/548/cover_xlarge/gare-moissy-tgv.jpg?1488450325\",\n                \"xlarge_dimensions\": \"2000x1335\",\n                \"alt\": \"image de couverture de Gare TGV\",\n                \"name\": \"image de couverture de Gare TGV\",\n                \"slug\": \"image-de-couverture-de-gare-tgv-d0e33b0d-e356-4151-a846-c642e5e092a2\",\n                \"description\": \"image de couverture de Gare TGV\",\n                \"copyright\": \"\"\n            },\n            \"pages\": [\n                {\n                    \"id\": 4178,\n                    \"instance\": {\n                        \"slug\": \"portail-projets-gps\"\n                    }\n                }\n            ],\n            \"sub_projects\": []\n        },\n        {\n            \"id\": 63,\n            \"name\": \"Création de bassins de rétention à Ris-Orangis\",\n            \"slug\": \"creation-de-bassins-de-retention-a-ris-orangis\",\n            \"start_date\": \"2018-01-22T00:00:00.000+01:00\",\n            \"end_date\": \"2019-05-20T00:00:00.000+02:00\",\n            \"cover_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/526/cover_small/Bassin_Issy_les_moulineaux.JPG?1515765425\",\n                \"small_dimensions\": \"300x146\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/526/cover_medium/Bassin_Issy_les_moulineaux.JPG?1515765425\",\n                \"medium_dimensions\": \"600x292\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/526/cover_large/Bassin_Issy_les_moulineaux.JPG?1515765425\",\n                \"large_dimensions\": \"1000x487\",\n                \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/526/cover_xlarge/Bassin_Issy_les_moulineaux.JPG?1515765425\",\n                \"xlarge_dimensions\": \"2000x973\",\n                \"alt\": \"image de couverture de Création de bassins de rétention à Ris-Orangis\",\n                \"name\": \"image de couverture de Création de bassins de rétention à Ris-Orangis\",\n                \"slug\": null,\n                \"description\": \"image de couverture de Création de bassins de rétention à Ris-Orangis\",\n                \"copyright\": \"Grabd Paris Sud \"\n            },\n            \"pages\": [\n                {\n                    \"id\": 8540,\n                    \"instance\": {\n                        \"slug\": \"portail-projets-gps\"\n                    }\n                }\n            ],\n            \"sub_projects\": [\n                {\n                    \"id\": 64,\n                    \"name\": \"Création du bassin sous le stade Émile-Gagneux\",\n                    \"slug\": \"creation-du-bassin-sous-le-stade-emile-gagneux\",\n                    \"start_date\": \"2018-01-22T00:00:00.000+01:00\",\n                    \"end_date\": \"2019-05-30T00:00:00.000+02:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 8844,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 65,\n                    \"name\": \"Création d'un collecteur (canalisation) \",\n                    \"slug\": \"creation-d-un-collecteur-canalisation\",\n                    \"start_date\": \"2018-05-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2019-03-30T00:00:00.000+01:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 8838,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 66,\n                    \"name\": \"Création second bassin de stockage / restitution\",\n                    \"slug\": \"creation-second-bassin-de-stockage-restitution\",\n                    \"start_date\": \"2018-03-01T00:00:00.000+01:00\",\n                    \"end_date\": \"2019-01-31T00:00:00.000+01:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 8841,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 67,\n                    \"name\": \"Création station anti-crue de Seine\",\n                    \"slug\": \"creation-station-anti-crue-de-seine\",\n                    \"start_date\": \"2018-01-29T00:00:00.000+01:00\",\n                    \"end_date\": \"2018-06-30T00:00:00.000+02:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 8835,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                }\n            ]\n        },\n        {\n            \"id\": 54,\n            \"name\": \"Chauffage urbain \",\n            \"slug\": \"chauffage-urbain\",\n            \"start_date\": \"2017-07-01T00:00:00.000+02:00\",\n            \"end_date\": \"2018-12-31T00:00:00.000+01:00\",\n            \"cover_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/891/cover_small/vert_le_grand.jpg?1507645372\",\n                \"small_dimensions\": \"300x236\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/891/cover_medium/vert_le_grand.jpg?1507645372\",\n                \"medium_dimensions\": \"300x236\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/891/cover_large/vert_le_grand.jpg?1507645372\",\n                \"large_dimensions\": \"300x236\",\n                \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/891/cover_xlarge/vert_le_grand.jpg?1507645372\",\n                \"xlarge_dimensions\": \"300x236\",\n                \"alt\": \"image de couverture de Chauffage urbain \",\n                \"name\": \"image de couverture de Chauffage urbain \",\n                \"slug\": null,\n                \"description\": \"image de couverture de Chauffage urbain \",\n                \"copyright\": \"\"\n            },\n            \"pages\": [\n                {\n                    \"id\": 7816,\n                    \"instance\": {\n                        \"slug\": \"portail-projets-gps\"\n                    }\n                }\n            ],\n            \"sub_projects\": [\n                {\n                    \"id\": 56,\n                    \"name\": \"Modernisation et sécurisation du réseau \",\n                    \"slug\": \"modernisation-et-securisation-du-reseau\",\n                    \"start_date\": \"2017-07-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2018-10-01T00:00:00.000+02:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 7825,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 55,\n                    \"name\": \"Création d'un réseau d'interconnexion\",\n                    \"slug\": \"creation-d-un-reseau-d-interconnexion\",\n                    \"start_date\": \"2017-07-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2017-12-31T00:00:00.000+01:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/936/cover_small/travaux_chauffage_urbain_GPS-11-10-2017_DSC2562.jpg?1507883027\",\n                        \"small_dimensions\": \"300x200\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/936/cover_medium/travaux_chauffage_urbain_GPS-11-10-2017_DSC2562.jpg?1507883027\",\n                        \"medium_dimensions\": \"600x401\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/936/cover_large/travaux_chauffage_urbain_GPS-11-10-2017_DSC2562.jpg?1507883027\",\n                        \"large_dimensions\": \"1000x668\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/936/cover_xlarge/travaux_chauffage_urbain_GPS-11-10-2017_DSC2562.jpg?1507883027\",\n                        \"xlarge_dimensions\": \"2000x1335\",\n                        \"alt\": \"image de couverture de Création d'un réseau d'interconnexion\",\n                        \"name\": \"image de couverture de Création d'un réseau d'interconnexion\",\n                        \"slug\": null,\n                        \"description\": \"image de couverture de Création d'un réseau d'interconnexion\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 7819,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 57,\n                    \"name\": \"Installation d'un système de télégestion \",\n                    \"slug\": \"installation-d-un-systeme-de-telegestion\",\n                    \"start_date\": \"2017-07-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2018-12-31T00:00:00.000+01:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 7828,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                }\n            ]\n        },\n        {\n            \"id\": 58,\n            \"name\": \"Rue des Lumières\",\n            \"slug\": \"rue-des-lumieres\",\n            \"start_date\": \"2017-09-01T00:00:00.000+02:00\",\n            \"end_date\": \"2019-12-01T00:00:00.000+01:00\",\n            \"cover_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/023/652/cover_small/ecran-horizontal.jpg?1511120784\",\n                \"small_dimensions\": \"300x169\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/023/652/cover_medium/ecran-horizontal.jpg?1511120784\",\n                \"medium_dimensions\": \"600x338\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/023/652/cover_large/ecran-horizontal.jpg?1511120784\",\n                \"large_dimensions\": \"1000x563\",\n                \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/023/652/cover_xlarge/ecran-horizontal.jpg?1511120784\",\n                \"xlarge_dimensions\": \"1920x1080\",\n                \"alt\": \"image de couverture de Rue des Lumières\",\n                \"name\": \"image de couverture de Rue des Lumières\",\n                \"slug\": null,\n                \"description\": \"image de couverture de Rue des Lumières\",\n                \"copyright\": \"\"\n            },\n            \"pages\": [\n                {\n                    \"id\": 8127,\n                    \"instance\": {\n                        \"slug\": \"portail-projets-gps\"\n                    }\n                }\n            ],\n            \"sub_projects\": [\n                {\n                    \"id\": 85,\n                    \"name\": \"Les actions de préfiguration\",\n                    \"slug\": \"les-actions-de-prefiguration\",\n                    \"start_date\": \"2017-12-01T00:00:00.000+01:00\",\n                    \"end_date\": \"2018-08-31T00:00:00.000+02:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 9166,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": [\n                        {\n                            \"id\": 59,\n                            \"name\": \"Spectacle Incandescences \",\n                            \"slug\": \"spectacle-incandescences\",\n                            \"start_date\": \"2017-12-14T00:00:00.000+01:00\",\n                            \"end_date\": \"2017-12-14T00:00:00.000+01:00\",\n                            \"cover_picture\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/023/654/cover_small/ecran-horizontal.jpg?1511182171\",\n                                \"small_dimensions\": \"300x169\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/023/654/cover_medium/ecran-horizontal.jpg?1511182171\",\n                                \"medium_dimensions\": \"600x338\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/023/654/cover_large/ecran-horizontal.jpg?1511182171\",\n                                \"large_dimensions\": \"1000x563\",\n                                \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/023/654/cover_xlarge/ecran-horizontal.jpg?1511182171\",\n                                \"xlarge_dimensions\": \"1920x1080\",\n                                \"alt\": \"image de couverture de Spectacle Incandescences \",\n                                \"name\": \"image de couverture de Spectacle Incandescences \",\n                                \"slug\": null,\n                                \"description\": \"image de couverture de Spectacle Incandescences \",\n                                \"copyright\": \"\"\n                            },\n                            \"pages\": [\n                                {\n                                    \"id\": 8133,\n                                    \"instance\": {\n                                        \"slug\": \"portail-projets-gps\"\n                                    }\n                                }\n                            ],\n                            \"sub_projects\": []\n                        }\n                    ]\n                },\n                {\n                    \"id\": 62,\n                    \"name\": \"Phase de candidature \",\n                    \"slug\": \"phase-de-candidature\",\n                    \"start_date\": \"2017-10-03T00:00:00.000+02:00\",\n                    \"end_date\": \"2017-12-20T00:00:00.000+01:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 8146,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 77,\n                    \"name\": \"Dialogue compétitif\",\n                    \"slug\": \"dialogue-competitif\",\n                    \"start_date\": \"2018-01-01T00:00:00.000+01:00\",\n                    \"end_date\": \"2018-08-31T00:00:00.000+02:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 9151,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 86,\n                    \"name\": \"Collaboration avec le candidat retenu pour mise en œuvre des projets\",\n                    \"slug\": \"collaboration-avec-le-candidat-retenu-pour-mise-en-oeuvre-des-projets\",\n                    \"start_date\": \"2018-09-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2019-05-01T00:00:00.000+02:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 9175,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                }\n            ]\n        },\n        {\n            \"id\": 68,\n            \"name\": \"Cirque de l'Essonne\",\n            \"slug\": \"cirque-de-l-essonne\",\n            \"start_date\": \"2018-01-01T00:00:00.000+01:00\",\n            \"end_date\": \"2023-12-31T00:00:00.000+01:00\",\n            \"cover_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/025/389/cover_small/cirque-essonne-grandparissud-bandeau.jpg?1520719604\",\n                \"small_dimensions\": \"300x70\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/025/389/cover_medium/cirque-essonne-grandparissud-bandeau.jpg?1520719604\",\n                \"medium_dimensions\": \"600x140\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/025/389/cover_large/cirque-essonne-grandparissud-bandeau.jpg?1520719604\",\n                \"large_dimensions\": \"1000x234\",\n                \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/025/389/cover_xlarge/cirque-essonne-grandparissud-bandeau.jpg?1520719604\",\n                \"xlarge_dimensions\": \"2000x468\",\n                \"alt\": \"image de couverture de Cirque de l'Essonne\",\n                \"name\": \"image de couverture de Cirque de l'Essonne\",\n                \"slug\": null,\n                \"description\": \"image de couverture de Cirque de l'Essonne\",\n                \"copyright\": \"\"\n            },\n            \"pages\": [\n                {\n                    \"id\": 9043,\n                    \"instance\": {\n                        \"slug\": \"portail-projets-gps\"\n                    }\n                }\n            ],\n            \"sub_projects\": [\n                {\n                    \"id\": 70,\n                    \"name\": \"Études techniques préalables et de conception de l’aménagement\",\n                    \"slug\": \"etudes-techniques-prealables-et-de-conception-de-l-amenagement\",\n                    \"start_date\": \"2017-01-01T00:00:00.000+01:00\",\n                    \"end_date\": \"2019-06-30T00:00:00.000+02:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 9106,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 87,\n                    \"name\": \"Premiers travaux déjà effectués \",\n                    \"slug\": \"premiers-travaux-deja-effectues\",\n                    \"start_date\": \"2017-01-01T00:00:00.000+01:00\",\n                    \"end_date\": \"2018-03-31T00:00:00.000+02:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 9178,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 91,\n                    \"name\": \"Prochains travaux d'urgence\",\n                    \"slug\": \"prochains-travaux-d-urgence\",\n                    \"start_date\": \"2018-01-01T00:00:00.000+01:00\",\n                    \"end_date\": \"2018-12-31T00:00:00.000+01:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 9235,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 90,\n                    \"name\": \"Signature de la convention par les partenaires\",\n                    \"slug\": \"signature-de-la-convention-par-les-partenaires\",\n                    \"start_date\": \"2018-05-26T00:00:00.000+02:00\",\n                    \"end_date\": \"2018-05-26T00:00:00.000+02:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 9232,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 88,\n                    \"name\": \"Grands travaux\",\n                    \"slug\": \"grands-travaux-086fc039-afe3-467d-97cf-a1c6c91f9ba6\",\n                    \"start_date\": \"2019-07-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2023-12-31T00:00:00.000+01:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 9181,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                }\n            ]\n        }\n    ]\n}"}],"_postman_id":"9222106d-5775-445c-92fb-f84848878dda"},{"name":"Show","id":"2bac6612-52ab-4cef-a7a7-0eff2d733890","request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"https://api.publidata.io/v1/{{instance_id}}/projects/{{project_id}}","description":"<p>Show d'un projet</p>\n","urlObject":{"path":["v1","{{instance_id}}","projects","{{project_id}}"],"host":["https://api.publidata.io"],"query":[],"variable":[]}},"response":[{"id":"f2c33888-8e6a-4de8-aa12-c480c56bf5cb","name":"Show project","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"publidata.io/api/v1/portail-projets-gps/projects/68"},"code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 68,\n    \"name\": \"Cirque de l'Essonne\",\n    \"slug\": \"cirque-de-l-essonne\",\n    \"start_date\": \"2018-01-01T00:00:00.000+01:00\",\n    \"end_date\": \"2023-12-31T00:00:00.000+01:00\",\n    \"cover_picture\": {\n        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/025/389/cover_small/cirque-essonne-grandparissud-bandeau.jpg?1520719604\",\n        \"small_dimensions\": \"300x70\",\n        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/025/389/cover_medium/cirque-essonne-grandparissud-bandeau.jpg?1520719604\",\n        \"medium_dimensions\": \"600x140\",\n        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/025/389/cover_large/cirque-essonne-grandparissud-bandeau.jpg?1520719604\",\n        \"large_dimensions\": \"1000x234\",\n        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/025/389/cover_xlarge/cirque-essonne-grandparissud-bandeau.jpg?1520719604\",\n        \"xlarge_dimensions\": \"2000x468\",\n        \"alt\": \"image de couverture de Cirque de l'Essonne\",\n        \"name\": \"image de couverture de Cirque de l'Essonne\",\n        \"slug\": null,\n        \"description\": \"image de couverture de Cirque de l'Essonne\",\n        \"copyright\": \"\"\n    },\n    \"infos\": {\n        \"phone\": null,\n        \"email\": \"\",\n        \"contact\": \"\",\n        \"website\": \"\",\n        \"social\": {\n            \"facebook\": \"\",\n            \"twitter\": \"\",\n            \"googleplus\": \"\",\n            \"instagram\": \"\",\n            \"linkedin\": \"\",\n            \"viadeo\": \"\",\n            \"flickr\": \"\",\n            \"youtube\": \"\",\n            \"dailymotion\": \"\",\n            \"vimeo\": \"\",\n            \"medium\": \"\",\n            \"rss\": \"\",\n            \"snapcode_svg\": \"\",\n            \"messenger\": \"\",\n            \"allocine\": \"\"\n        }\n    },\n    \"contents\": {\n        \"images\": [\n            {\n                \"name\": \"Cirque de l'Essonne\",\n                \"slug\": null,\n                \"alt\": \"Cirque de l'Essonne\",\n                \"order\": 1,\n                \"description\": \"\",\n                \"copyright\": \"Agglomération Grand Paris Sud\",\n                \"image_small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/025/585/image_small/cirque-essonne-grandparissud-1.jpg?1520720008\",\n                \"image_small_dimensions\": \"400x266\",\n                \"image_medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/025/585/image_medium/cirque-essonne-grandparissud-1.jpg?1520720008\",\n                \"image_medium_dimensions\": \"800x532\",\n                \"image_large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/025/585/image_large/cirque-essonne-grandparissud-1.jpg?1520720008\",\n                \"image_large_dimensions\": \"1280x852\",\n                \"image_xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/025/585/image_xlarge/cirque-essonne-grandparissud-1.jpg?1520720008\",\n                \"image_xlarge_dimensions\": \"2000x1331\"\n            },\n            {\n                \"name\": \"Cirque de l'Essonne\",\n                \"slug\": null,\n                \"alt\": \"Cirque de l'Essonne\",\n                \"order\": 2,\n                \"description\": \"\",\n                \"copyright\": \"Agglomération Grand Paris Sud\",\n                \"image_small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/025/586/image_small/cirque-essonne-grandparissud-3.jpg?1520720008\",\n                \"image_small_dimensions\": \"400x266\",\n                \"image_medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/025/586/image_medium/cirque-essonne-grandparissud-3.jpg?1520720008\",\n                \"image_medium_dimensions\": \"800x532\",\n                \"image_large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/025/586/image_large/cirque-essonne-grandparissud-3.jpg?1520720008\",\n                \"image_large_dimensions\": \"1280x852\",\n                \"image_xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/025/586/image_xlarge/cirque-essonne-grandparissud-3.jpg?1520720008\",\n                \"image_xlarge_dimensions\": \"2000x1331\"\n            },\n            {\n                \"name\": \"Cirque de l'Essonne\",\n                \"slug\": null,\n                \"alt\": \"Cirque de l'Essonne\",\n                \"order\": 3,\n                \"description\": \"\",\n                \"copyright\": \"Agglomération Grand Paris Sud\",\n                \"image_small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/025/587/image_small/cirque-essonne-grandparissud-4.jpg?1520720008\",\n                \"image_small_dimensions\": \"400x266\",\n                \"image_medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/025/587/image_medium/cirque-essonne-grandparissud-4.jpg?1520720008\",\n                \"image_medium_dimensions\": \"800x532\",\n                \"image_large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/025/587/image_large/cirque-essonne-grandparissud-4.jpg?1520720008\",\n                \"image_large_dimensions\": \"1280x852\",\n                \"image_xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/025/587/image_xlarge/cirque-essonne-grandparissud-4.jpg?1520720008\",\n                \"image_xlarge_dimensions\": \"2000x1331\"\n            },\n            {\n                \"name\": \"Cirque de l'Essonne\",\n                \"slug\": null,\n                \"alt\": \"Cirque de l'Essonne\",\n                \"order\": 4,\n                \"description\": \"\",\n                \"copyright\": \"Agglomération Grand Paris Sud\",\n                \"image_small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/025/588/image_small/cirque-essonne-grandparissud-5.jpg?1520720063\",\n                \"image_small_dimensions\": \"400x266\",\n                \"image_medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/025/588/image_medium/cirque-essonne-grandparissud-5.jpg?1520720063\",\n                \"image_medium_dimensions\": \"800x532\",\n                \"image_large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/025/588/image_large/cirque-essonne-grandparissud-5.jpg?1520720063\",\n                \"image_large_dimensions\": \"1280x852\",\n                \"image_xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/025/588/image_xlarge/cirque-essonne-grandparissud-5.jpg?1520720063\",\n                \"image_xlarge_dimensions\": \"2000x1331\"\n            },\n            {\n                \"name\": \"Cirque de l'Essonne\",\n                \"slug\": null,\n                \"alt\": \"Cirque de l'Essonne\",\n                \"order\": 5,\n                \"description\": \"\",\n                \"copyright\": \"Agglomération Grand Paris Sud\",\n                \"image_small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/025/589/image_small/cirque-essonne-grandparissud-6.jpg?1520720063\",\n                \"image_small_dimensions\": \"400x266\",\n                \"image_medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/025/589/image_medium/cirque-essonne-grandparissud-6.jpg?1520720063\",\n                \"image_medium_dimensions\": \"800x532\",\n                \"image_large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/025/589/image_large/cirque-essonne-grandparissud-6.jpg?1520720063\",\n                \"image_large_dimensions\": \"1280x852\",\n                \"image_xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/025/589/image_xlarge/cirque-essonne-grandparissud-6.jpg?1520720063\",\n                \"image_xlarge_dimensions\": \"2000x1331\"\n            }\n        ],\n        \"documents\": [],\n        \"links\": [],\n        \"videos\": []\n    },\n    \"partners\": [\n        {\n            \"entity\": {\n                \"id\": 52,\n                \"position\": 1,\n                \"type\": \"Agglomeration\",\n                \"name\": \"Grand Paris Sud\",\n                \"pages\": [],\n                \"infos\": {\n                    \"phone\": \"01 69 91 58 58\",\n                    \"email\": \"webmaster@grandparissud.fr\",\n                    \"contact\": \"\",\n                    \"website\": \"http://grandparissud.fr\",\n                    \"social\": {\n                        \"facebook\": \"https://www.facebook.com/grandparissud\",\n                        \"twitter\": \"https://twitter.com/grandparissud\",\n                        \"googleplus\": \"\",\n                        \"instagram\": \"https://www.instagram.com/grand_paris_sud/\",\n                        \"linkedin\": \"\",\n                        \"viadeo\": \"\",\n                        \"flickr\": \"\",\n                        \"youtube\": \"\",\n                        \"dailymotion\": \"\",\n                        \"vimeo\": \"https://vimeo.com/grandparissud\",\n                        \"medium\": \"\",\n                        \"rss\": \"http://www.publidata.io/agglomerations/grand-paris-sud/rss\",\n                        \"snapcode_svg\": \"\",\n                        \"messenger\": \"\",\n                        \"allocine\": \"\"\n                    }\n                },\n                \"profile_picture\": {\n                    \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                    \"small_dimensions\": \"150x150\",\n                    \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                    \"medium_dimensions\": \"400x400\",\n                    \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                    \"large_dimensions\": \"500x500\",\n                    \"alt\": \"image de profil de Grand Paris Sud\",\n                    \"name\": \"image de profil de Grand Paris Sud\",\n                    \"slug\": \"image-de-profil-de-grand-paris-sud\",\n                    \"description\": \"image de profil de Grand Paris Sud\",\n                    \"copyright\": \"\"\n                },\n                \"cover_picture\": {\n                    \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/512/cover_small/Grand_Paris_Sud_%280%29.jpg?1456999072\",\n                    \"small_dimensions\": \"300x200\",\n                    \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/512/cover_medium/Grand_Paris_Sud_%280%29.jpg?1456999072\",\n                    \"medium_dimensions\": \"600x399\",\n                    \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/512/cover_large/Grand_Paris_Sud_%280%29.jpg?1456999072\",\n                    \"large_dimensions\": \"1000x665\",\n                    \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/512/cover_xlarge/Grand_Paris_Sud_%280%29.jpg?1456999072\",\n                    \"xlarge_dimensions\": \"1772x1179\",\n                    \"alt\": \"image de couverture de Grand Paris Sud\",\n                    \"name\": \"image de couverture de Grand Paris Sud\",\n                    \"slug\": \"image-de-couverture-de-grand-paris-sud\",\n                    \"description\": \"image de couverture de Grand Paris Sud\",\n                    \"copyright\": \"\"\n                }\n            },\n            \"role\": {\n                \"id\": 8,\n                \"name\": \"Partenaire institutionnel\"\n            },\n            \"blurb\": \"\",\n            \"main\": false\n        },\n        {\n            \"entity\": {\n                \"id\": 229,\n                \"position\": 2,\n                \"type\": \"Link\",\n                \"name\": \"Conseil départemental de l'Essonne\",\n                \"blurb\": \"\",\n                \"external_link\": \"http://www.essonne.fr/\",\n                \"profile_picture\": {\n                    \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/025/505/logo_small/logo-essonne.png?1520349160\",\n                    \"small_dimensions\": \"150x150\",\n                    \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/025/505/logo_medium/logo-essonne.png?1520349160\",\n                    \"medium_dimensions\": \"400x400\",\n                    \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/025/505/logo_large/logo-essonne.png?1520349160\",\n                    \"large_dimensions\": \"500x500\",\n                    \"alt\": \"image de profil de Conseil départemental de l'Essonne\",\n                    \"name\": \"image de profil de Conseil départemental de l'Essonne\",\n                    \"slug\": null,\n                    \"description\": \"image de profil de Conseil départemental de l'Essonne\",\n                    \"copyright\": \"\"\n                }\n            },\n            \"role\": {\n                \"id\": 8,\n                \"name\": \"Partenaire institutionnel\"\n            },\n            \"blurb\": \"\",\n            \"main\": false\n        },\n        {\n            \"entity\": {\n                \"id\": 65,\n                \"position\": 3,\n                \"type\": \"City\",\n                \"name\": \"Lisses\",\n                \"pages\": [\n                    {\n                        \"id\": 288,\n                        \"instance\": {\n                            \"slug\": \"portail-institutionnel-gps\"\n                        }\n                    }\n                ],\n                \"infos\": {\n                    \"phone\": \"01 69 11 40 00\",\n                    \"email\": \"infolisses@ville-lisses.fr\",\n                    \"contact\": \"http://www.ville-lisses.fr/contact\",\n                    \"website\": \"http://www.ville-lisses.fr\",\n                    \"social\": {\n                        \"facebook\": \"https://www.facebook.com/MairiedeLisses\",\n                        \"twitter\": \"\",\n                        \"googleplus\": \"\",\n                        \"instagram\": \"\",\n                        \"linkedin\": \"\",\n                        \"viadeo\": \"\",\n                        \"flickr\": \"\",\n                        \"youtube\": \"\",\n                        \"dailymotion\": \"\",\n                        \"vimeo\": \"\",\n                        \"medium\": \"\",\n                        \"rss\": \"\",\n                        \"snapcode_svg\": \"\",\n                        \"messenger\": \"\",\n                        \"allocine\": \"\"\n                    }\n                },\n                \"profile_picture\": {\n                    \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/097/logo_small/Sans_titre-1.png?1520348930\",\n                    \"small_dimensions\": \"150x150\",\n                    \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/097/logo_medium/Sans_titre-1.png?1520348930\",\n                    \"medium_dimensions\": \"400x400\",\n                    \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/097/logo_large/Sans_titre-1.png?1520348930\",\n                    \"large_dimensions\": \"500x500\",\n                    \"alt\": \"image de profil de Lisses\",\n                    \"name\": \"image de profil de Lisses\",\n                    \"slug\": \"image-de-profil-de-lisses\",\n                    \"description\": \"image de profil de Lisses\",\n                    \"copyright\": \"\"\n                },\n                \"cover_picture\": {\n                    \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/028/cover_small/Lisses_ZA_Vinci_Cr_%C2%AEdit_Lionel_Antoni.jpg?1455543208\",\n                    \"small_dimensions\": \"300x225\",\n                    \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/028/cover_medium/Lisses_ZA_Vinci_Cr_%C2%AEdit_Lionel_Antoni.jpg?1455543208\",\n                    \"medium_dimensions\": \"600x450\",\n                    \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/028/cover_large/Lisses_ZA_Vinci_Cr_%C2%AEdit_Lionel_Antoni.jpg?1455543208\",\n                    \"large_dimensions\": \"1000x750\",\n                    \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/028/cover_xlarge/Lisses_ZA_Vinci_Cr_%C2%AEdit_Lionel_Antoni.jpg?1455543208\",\n                    \"xlarge_dimensions\": \"2000x1500\",\n                    \"alt\": \"image de couverture de Lisses\",\n                    \"name\": \"image de couverture de Lisses\",\n                    \"slug\": \"image-de-couverture-de-lisses\",\n                    \"description\": \"image de couverture de Lisses\",\n                    \"copyright\": \"\"\n                }\n            },\n            \"role\": {\n                \"id\": 8,\n                \"name\": \"Partenaire institutionnel\"\n            },\n            \"blurb\": \"\",\n            \"main\": false\n        },\n        {\n            \"entity\": {\n                \"id\": 71,\n                \"position\": 4,\n                \"type\": \"City\",\n                \"name\": \"Villabé\",\n                \"pages\": [\n                    {\n                        \"id\": 294,\n                        \"instance\": {\n                            \"slug\": \"portail-institutionnel-gps\"\n                        }\n                    }\n                ],\n                \"infos\": {\n                    \"phone\": \"01 69 11 19 75\",\n                    \"email\": \"contact@mairie-villabe.fr\",\n                    \"contact\": \"\",\n                    \"website\": \"http://www.villabe.fr\",\n                    \"social\": {\n                        \"facebook\": \"https://www.facebook.com/mairie.villabe\",\n                        \"twitter\": \"\",\n                        \"googleplus\": \"\",\n                        \"instagram\": \"\",\n                        \"linkedin\": \"\",\n                        \"viadeo\": \"\",\n                        \"flickr\": \"\",\n                        \"youtube\": \"\",\n                        \"dailymotion\": \"\",\n                        \"vimeo\": \"\",\n                        \"medium\": \"\",\n                        \"rss\": \"\",\n                        \"snapcode_svg\": \"\",\n                        \"messenger\": \"\",\n                        \"allocine\": \"\"\n                    }\n                },\n                \"profile_picture\": {\n                    \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/115/logo_small/villabe-grandparissud.png?1520348702\",\n                    \"small_dimensions\": \"150x150\",\n                    \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/115/logo_medium/villabe-grandparissud.png?1520348702\",\n                    \"medium_dimensions\": \"400x400\",\n                    \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/115/logo_large/villabe-grandparissud.png?1520348702\",\n                    \"large_dimensions\": \"500x500\",\n                    \"alt\": \"image de profil de Villabé\",\n                    \"name\": \"image de profil de Villabé\",\n                    \"slug\": \"image-de-profil-de-villabe\",\n                    \"description\": \"image de profil de Villabé\",\n                    \"copyright\": \"\"\n                },\n                \"cover_picture\": {\n                    \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/061/cover_small/Villab_%C2%AE_maisons.jpg?1455889956\",\n                    \"small_dimensions\": \"300x200\",\n                    \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/061/cover_medium/Villab_%C2%AE_maisons.jpg?1455889956\",\n                    \"medium_dimensions\": \"600x399\",\n                    \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/061/cover_large/Villab_%C2%AE_maisons.jpg?1455889956\",\n                    \"large_dimensions\": \"1000x665\",\n                    \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/061/cover_xlarge/Villab_%C2%AE_maisons.jpg?1455889956\",\n                    \"xlarge_dimensions\": \"2000x1331\",\n                    \"alt\": \"image de couverture de Villabé\",\n                    \"name\": \"image de couverture de Villabé\",\n                    \"slug\": \"image-de-couverture-de-villabe\",\n                    \"description\": \"image de couverture de Villabé\",\n                    \"copyright\": \"\"\n                }\n            },\n            \"role\": {\n                \"id\": 8,\n                \"name\": \"Partenaire institutionnel\"\n            },\n            \"blurb\": \"\",\n            \"main\": false\n        },\n        {\n            \"entity\": {\n                \"id\": 54,\n                \"position\": 5,\n                \"type\": \"City\",\n                \"name\": \"Corbeil-Essonnes\",\n                \"pages\": [\n                    {\n                        \"id\": 277,\n                        \"instance\": {\n                            \"slug\": \"portail-institutionnel-gps\"\n                        }\n                    }\n                ],\n                \"infos\": {\n                    \"phone\": \"01 60 89 71 79\",\n                    \"email\": \"\",\n                    \"contact\": \"\",\n                    \"website\": \"http://www.corbeil-essonnes.com/\",\n                    \"social\": {\n                        \"facebook\": \"https://www.facebook.com/Corbeil-Essonnes-117021165048358\",\n                        \"twitter\": \"\",\n                        \"googleplus\": \"\",\n                        \"instagram\": \"\",\n                        \"linkedin\": \"\",\n                        \"viadeo\": \"\",\n                        \"flickr\": \"\",\n                        \"youtube\": \"\",\n                        \"dailymotion\": \"\",\n                        \"vimeo\": \"\",\n                        \"medium\": \"\",\n                        \"rss\": \"\",\n                        \"snapcode_svg\": \"\",\n                        \"messenger\": \"\",\n                        \"allocine\": \"\"\n                    }\n                },\n                \"profile_picture\": {\n                    \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/067/logo_small/corbeil-essonnes-grandparissud.png?1520348885\",\n                    \"small_dimensions\": \"150x150\",\n                    \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/067/logo_medium/corbeil-essonnes-grandparissud.png?1520348885\",\n                    \"medium_dimensions\": \"400x400\",\n                    \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/067/logo_large/corbeil-essonnes-grandparissud.png?1520348885\",\n                    \"large_dimensions\": \"500x500\",\n                    \"alt\": \"image de profil de Corbeil-Essonnes\",\n                    \"name\": \"image de profil de Corbeil-Essonnes\",\n                    \"slug\": \"image-de-profil-de-corbeil-essonnes\",\n                    \"description\": \"image de profil de Corbeil-Essonnes\",\n                    \"copyright\": \"\"\n                },\n                \"cover_picture\": {\n                    \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/203/cover_small/Corbeil-Essonnes_%282%29.jpg?1459256108\",\n                    \"small_dimensions\": \"300x200\",\n                    \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/203/cover_medium/Corbeil-Essonnes_%282%29.jpg?1459256108\",\n                    \"medium_dimensions\": \"600x399\",\n                    \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/203/cover_large/Corbeil-Essonnes_%282%29.jpg?1459256108\",\n                    \"large_dimensions\": \"1000x665\",\n                    \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/203/cover_xlarge/Corbeil-Essonnes_%282%29.jpg?1459256108\",\n                    \"xlarge_dimensions\": \"2000x1331\",\n                    \"alt\": \"image de couverture de Corbeil-Essonnes\",\n                    \"name\": \"image de couverture de Corbeil-Essonnes\",\n                    \"slug\": \"image-de-couverture-de-corbeil-essonnes\",\n                    \"description\": \"image de couverture de Corbeil-Essonnes\",\n                    \"copyright\": \"\"\n                }\n            },\n            \"role\": {\n                \"id\": 8,\n                \"name\": \"Partenaire institutionnel\"\n            },\n            \"blurb\": \"\",\n            \"main\": false\n        },\n        {\n            \"entity\": {\n                \"id\": 230,\n                \"position\": 6,\n                \"type\": \"Link\",\n                \"name\": \"SIARCE\",\n                \"blurb\": \"\",\n                \"external_link\": \"http://www.siarce.fr/\",\n                \"profile_picture\": {\n                    \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/025/506/logo_small/siarce-grandparissud.png?1520349207\",\n                    \"small_dimensions\": \"150x150\",\n                    \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/025/506/logo_medium/siarce-grandparissud.png?1520349207\",\n                    \"medium_dimensions\": \"400x400\",\n                    \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/025/506/logo_large/siarce-grandparissud.png?1520349207\",\n                    \"large_dimensions\": \"500x500\",\n                    \"alt\": \"image de profil de SIARCE\",\n                    \"name\": \"image de profil de SIARCE\",\n                    \"slug\": null,\n                    \"description\": \"image de profil de SIARCE\",\n                    \"copyright\": \"\"\n                }\n            },\n            \"role\": {\n                \"id\": 8,\n                \"name\": \"Partenaire institutionnel\"\n            },\n            \"blurb\": \"\",\n            \"main\": false\n        },\n        {\n            \"entity\": {\n                \"id\": 231,\n                \"position\": 7,\n                \"type\": \"Link\",\n                \"name\": \"CAUE de l'Essonne\",\n                \"blurb\": \"\",\n                \"external_link\": \"http://www.caue91.asso.fr/\",\n                \"profile_picture\": {\n                    \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/025/507/logo_small/caue-essonne-grandparissud.png?1520349244\",\n                    \"small_dimensions\": \"150x150\",\n                    \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/025/507/logo_medium/caue-essonne-grandparissud.png?1520349244\",\n                    \"medium_dimensions\": \"400x400\",\n                    \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/025/507/logo_large/caue-essonne-grandparissud.png?1520349244\",\n                    \"large_dimensions\": \"500x500\",\n                    \"alt\": \"image de profil de CAUE de l'Essonne\",\n                    \"name\": \"image de profil de CAUE de l'Essonne\",\n                    \"slug\": null,\n                    \"description\": \"image de profil de CAUE de l'Essonne\",\n                    \"copyright\": \"\"\n                }\n            },\n            \"role\": {\n                \"id\": 8,\n                \"name\": \"Partenaire institutionnel\"\n            },\n            \"blurb\": \"\",\n            \"main\": false\n        }\n    ],\n    \"pages\": [\n        {\n            \"id\": 9043,\n            \"instance\": {\n                \"slug\": \"portail-projets-gps\"\n            }\n        }\n    ],\n    \"sub_projects\": [\n        {\n            \"id\": 70,\n            \"name\": \"Études techniques préalables et de conception de l’aménagement\",\n            \"slug\": \"etudes-techniques-prealables-et-de-conception-de-l-amenagement\",\n            \"start_date\": \"2017-01-01T00:00:00.000+01:00\",\n            \"end_date\": \"2019-06-30T00:00:00.000+02:00\",\n            \"pages\": [\n                {\n                    \"id\": 9106,\n                    \"instance\": {\n                        \"slug\": \"portail-projets-gps\"\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": 87,\n            \"name\": \"Premiers travaux déjà effectués \",\n            \"slug\": \"premiers-travaux-deja-effectues\",\n            \"start_date\": \"2017-01-01T00:00:00.000+01:00\",\n            \"end_date\": \"2018-03-31T00:00:00.000+02:00\",\n            \"pages\": [\n                {\n                    \"id\": 9178,\n                    \"instance\": {\n                        \"slug\": \"portail-projets-gps\"\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": 91,\n            \"name\": \"Prochains travaux d'urgence\",\n            \"slug\": \"prochains-travaux-d-urgence\",\n            \"start_date\": \"2018-01-01T00:00:00.000+01:00\",\n            \"end_date\": \"2018-12-31T00:00:00.000+01:00\",\n            \"pages\": [\n                {\n                    \"id\": 9235,\n                    \"instance\": {\n                        \"slug\": \"portail-projets-gps\"\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": 90,\n            \"name\": \"Signature de la convention par les partenaires\",\n            \"slug\": \"signature-de-la-convention-par-les-partenaires\",\n            \"start_date\": \"2018-05-26T00:00:00.000+02:00\",\n            \"end_date\": \"2018-05-26T00:00:00.000+02:00\",\n            \"pages\": [\n                {\n                    \"id\": 9232,\n                    \"instance\": {\n                        \"slug\": \"portail-projets-gps\"\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": 88,\n            \"name\": \"Grands travaux\",\n            \"slug\": \"grands-travaux-086fc039-afe3-467d-97cf-a1c6c91f9ba6\",\n            \"start_date\": \"2019-07-01T00:00:00.000+02:00\",\n            \"end_date\": \"2023-12-31T00:00:00.000+01:00\",\n            \"pages\": [\n                {\n                    \"id\": 9181,\n                    \"instance\": {\n                        \"slug\": \"portail-projets-gps\"\n                    }\n                }\n            ]\n        }\n    ],\n    \"sibling_projects\": [\n        {\n            \"id\": 2,\n            \"name\": \"Projet de territoire\",\n            \"slug\": \"projet-de-territoire\",\n            \"start_date\": \"2016-05-01T00:00:00.000+02:00\",\n            \"end_date\": \"2017-12-31T00:00:00.000+01:00\",\n            \"blurb\": \"<br>\",\n            \"cover_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/006/651/cover_small/bandeau-projet-territoire-grandparissud.jpg?1513613827\",\n                \"small_dimensions\": \"300x70\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/006/651/cover_medium/bandeau-projet-territoire-grandparissud.jpg?1513613827\",\n                \"medium_dimensions\": \"600x140\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/006/651/cover_large/bandeau-projet-territoire-grandparissud.jpg?1513613827\",\n                \"large_dimensions\": \"1000x233\",\n                \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/006/651/cover_xlarge/bandeau-projet-territoire-grandparissud.jpg?1513613827\",\n                \"xlarge_dimensions\": \"1596x372\",\n                \"alt\": \"image de couverture de Projet de territoire\",\n                \"name\": \"image de couverture de Projet de territoire\",\n                \"slug\": \"image-de-couverture-de-projet-de-territoire-9832a840-c61d-4102-9bbe-a81ee34914fb\",\n                \"description\": \"image de couverture de Projet de territoire\",\n                \"copyright\": \"agglomération Grand Paris Sud\"\n            },\n            \"pages\": [\n                {\n                    \"id\": 1321,\n                    \"instance\": {\n                        \"slug\": \"portail-projets-gps\"\n                    }\n                },\n                {\n                    \"id\": 8381,\n                    \"instance\": {\n                        \"slug\": \"portail-projets-gps\"\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": 18,\n            \"name\": \"T Zen 2\",\n            \"slug\": \"t-zen-2\",\n            \"start_date\": \"2013-09-01T00:00:00.000+02:00\",\n            \"end_date\": \"2024-12-31T00:00:00.000+01:00\",\n            \"blurb\": \"<p>Après le T Zen 1, qui circule entre les gares de Corbeil-Essonnes et de Lieusaint-Moissy depuis 2011, la ligne T Zen 2 reliera Lieusaint (Carré-Sénart) à Melun à l’horizon 2024. <br></p>\",\n            \"cover_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/014/520/cover_small/3-station-confortable-accessible.jpg?1486132133\",\n                \"small_dimensions\": \"300x169\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/014/520/cover_medium/3-station-confortable-accessible.jpg?1486132133\",\n                \"medium_dimensions\": \"600x337\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/014/520/cover_large/3-station-confortable-accessible.jpg?1486132133\",\n                \"large_dimensions\": \"900x506\",\n                \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/014/520/cover_xlarge/3-station-confortable-accessible.jpg?1486132133\",\n                \"xlarge_dimensions\": \"900x506\",\n                \"alt\": \"image de couverture de T Zen 2\",\n                \"name\": \"image de couverture de T Zen 2\",\n                \"slug\": \"image-de-couverture-de-t-zen-2\",\n                \"description\": \"image de couverture de T Zen 2\",\n                \"copyright\": \"\"\n            },\n            \"pages\": [\n                {\n                    \"id\": 2184,\n                    \"instance\": {\n                        \"slug\": \"portail-projets-gps\"\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": 26,\n            \"name\": \"Tram 12 express / Requalification du Bois Briard\",\n            \"slug\": \"tram-12-express-requalification-du-bois-briard\",\n            \"start_date\": \"2015-04-01T00:00:00.000+02:00\",\n            \"end_date\": \"2020-06-30T00:00:00.000+02:00\",\n            \"blurb\": \"<p>Piloté par le Syndicat des transports d’Ile-de-France et la SNCF, le projet du <b>Tram 12 express</b> s’étendra sur 20,4 km et traversera 13 communes du département de l’<b>Essonne</b>. <br></p>\",\n            \"cover_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/168/cover_small/Perspective-tram12.png?1487925596\",\n                \"small_dimensions\": \"300x178\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/168/cover_medium/Perspective-tram12.png?1487925596\",\n                \"medium_dimensions\": \"600x356\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/168/cover_large/Perspective-tram12.png?1487925596\",\n                \"large_dimensions\": \"1000x593\",\n                \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/168/cover_xlarge/Perspective-tram12.png?1487925596\",\n                \"xlarge_dimensions\": \"2000x1186\",\n                \"alt\": \"image de couverture de Tram 12 express / Requalification du Bois Briard\",\n                \"name\": \"image de couverture de Tram 12 express / Requalification du Bois Briard\",\n                \"slug\": \"image-de-couverture-de-tram-12-express-requalification-du-bois-briard\",\n                \"description\": \"image de couverture de Tram 12 express / Requalification du Bois Briard\",\n                \"copyright\": \"\"\n            },\n            \"pages\": [\n                {\n                    \"id\": 4030,\n                    \"instance\": {\n                        \"slug\": \"portail-projets-gps\"\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": 41,\n            \"name\": \"T Zen 4 \",\n            \"slug\": \"t-zen-4\",\n            \"start_date\": \"2016-05-30T00:00:00.000+02:00\",\n            \"end_date\": \"2020-12-31T00:00:00.000+01:00\",\n            \"blurb\": \"En moins de 45 minutes, la ligne 4 du T Zen desservira 30 stations à travers 5 communes de l’agglomération (Grigny, Ris-Orangis, Courcouronnes, Évry et Corbeil-Essonnes) et Viry-Châtillon.\",\n            \"cover_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/547/cover_small/1-voies-reservees_priorite-aux-feux.jpg?1488460827\",\n                \"small_dimensions\": \"300x168\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/547/cover_medium/1-voies-reservees_priorite-aux-feux.jpg?1488460827\",\n                \"medium_dimensions\": \"600x337\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/547/cover_large/1-voies-reservees_priorite-aux-feux.jpg?1488460827\",\n                \"large_dimensions\": \"900x505\",\n                \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/547/cover_xlarge/1-voies-reservees_priorite-aux-feux.jpg?1488460827\",\n                \"xlarge_dimensions\": \"900x505\",\n                \"alt\": \"image de couverture de T Zen 4 \",\n                \"name\": \"image de couverture de T Zen 4 \",\n                \"slug\": \"image-de-couverture-de-t-zen-4\",\n                \"description\": \"image de couverture de T Zen 4 \",\n                \"copyright\": \"\"\n            },\n            \"pages\": [\n                {\n                    \"id\": 4163,\n                    \"instance\": {\n                        \"slug\": \"portail-projets-gps\"\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": 46,\n            \"name\": \"Gare TGV\",\n            \"slug\": \"gare-tgv\",\n            \"start_date\": \"2012-01-01T00:00:00.000+01:00\",\n            \"end_date\": \"2030-12-31T00:00:00.000+01:00\",\n            \"blurb\": \"Le site de la gare RER de Lieusaint-Moissy a été retenu pour accueillir une gare TGV dans le cadre du projet de Réseau Ferré de France d'interconnexion sud, projet reliant le TGV Atlantique au TGV sud-est.\",\n            \"cover_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/548/cover_small/gare-moissy-tgv.jpg?1488450325\",\n                \"small_dimensions\": \"300x200\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/548/cover_medium/gare-moissy-tgv.jpg?1488450325\",\n                \"medium_dimensions\": \"600x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/548/cover_large/gare-moissy-tgv.jpg?1488450325\",\n                \"large_dimensions\": \"1000x667\",\n                \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/548/cover_xlarge/gare-moissy-tgv.jpg?1488450325\",\n                \"xlarge_dimensions\": \"2000x1335\",\n                \"alt\": \"image de couverture de Gare TGV\",\n                \"name\": \"image de couverture de Gare TGV\",\n                \"slug\": \"image-de-couverture-de-gare-tgv-d0e33b0d-e356-4151-a846-c642e5e092a2\",\n                \"description\": \"image de couverture de Gare TGV\",\n                \"copyright\": \"\"\n            },\n            \"pages\": [\n                {\n                    \"id\": 4178,\n                    \"instance\": {\n                        \"slug\": \"portail-projets-gps\"\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": 48,\n            \"name\": \"L'Agora se métamorphose \",\n            \"slug\": \"l-agora-se-metamorphose\",\n            \"start_date\": \"2017-09-01T00:00:00.000+02:00\",\n            \"end_date\": \"2020-12-01T00:00:00.000+01:00\",\n            \"blurb\": \"<br>\",\n            \"cover_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/489/cover_small/Dossier-Graphique_EVRY_02-10.jpg?1506422665\",\n                \"small_dimensions\": \"300x147\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/489/cover_medium/Dossier-Graphique_EVRY_02-10.jpg?1506422665\",\n                \"medium_dimensions\": \"600x293\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/489/cover_large/Dossier-Graphique_EVRY_02-10.jpg?1506422665\",\n                \"large_dimensions\": \"1000x489\",\n                \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/489/cover_xlarge/Dossier-Graphique_EVRY_02-10.jpg?1506422665\",\n                \"xlarge_dimensions\": \"1854x906\",\n                \"alt\": \"image de couverture de L'Agora se métamorphose \",\n                \"name\": \"image de couverture de L'Agora se métamorphose \",\n                \"slug\": null,\n                \"description\": \"image de couverture de L'Agora se métamorphose \",\n                \"copyright\": \"\"\n            },\n            \"pages\": [\n                {\n                    \"id\": 7560,\n                    \"instance\": {\n                        \"slug\": \"portail-projets-gps\"\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": 54,\n            \"name\": \"Chauffage urbain \",\n            \"slug\": \"chauffage-urbain\",\n            \"start_date\": \"2017-07-01T00:00:00.000+02:00\",\n            \"end_date\": \"2018-12-31T00:00:00.000+01:00\",\n            \"cover_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/891/cover_small/vert_le_grand.jpg?1507645372\",\n                \"small_dimensions\": \"300x236\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/891/cover_medium/vert_le_grand.jpg?1507645372\",\n                \"medium_dimensions\": \"300x236\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/891/cover_large/vert_le_grand.jpg?1507645372\",\n                \"large_dimensions\": \"300x236\",\n                \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/891/cover_xlarge/vert_le_grand.jpg?1507645372\",\n                \"xlarge_dimensions\": \"300x236\",\n                \"alt\": \"image de couverture de Chauffage urbain \",\n                \"name\": \"image de couverture de Chauffage urbain \",\n                \"slug\": null,\n                \"description\": \"image de couverture de Chauffage urbain \",\n                \"copyright\": \"\"\n            },\n            \"pages\": [\n                {\n                    \"id\": 7816,\n                    \"instance\": {\n                        \"slug\": \"portail-projets-gps\"\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": 58,\n            \"name\": \"Rue des Lumières\",\n            \"slug\": \"rue-des-lumieres\",\n            \"start_date\": \"2017-09-01T00:00:00.000+02:00\",\n            \"end_date\": \"2019-12-01T00:00:00.000+01:00\",\n            \"cover_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/023/652/cover_small/ecran-horizontal.jpg?1511120784\",\n                \"small_dimensions\": \"300x169\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/023/652/cover_medium/ecran-horizontal.jpg?1511120784\",\n                \"medium_dimensions\": \"600x338\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/023/652/cover_large/ecran-horizontal.jpg?1511120784\",\n                \"large_dimensions\": \"1000x563\",\n                \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/023/652/cover_xlarge/ecran-horizontal.jpg?1511120784\",\n                \"xlarge_dimensions\": \"1920x1080\",\n                \"alt\": \"image de couverture de Rue des Lumières\",\n                \"name\": \"image de couverture de Rue des Lumières\",\n                \"slug\": null,\n                \"description\": \"image de couverture de Rue des Lumières\",\n                \"copyright\": \"\"\n            },\n            \"pages\": [\n                {\n                    \"id\": 8127,\n                    \"instance\": {\n                        \"slug\": \"portail-projets-gps\"\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": 63,\n            \"name\": \"Création de bassins de rétention à Ris-Orangis\",\n            \"slug\": \"creation-de-bassins-de-retention-a-ris-orangis\",\n            \"start_date\": \"2018-01-22T00:00:00.000+01:00\",\n            \"end_date\": \"2019-05-20T00:00:00.000+02:00\",\n            \"blurb\": \"<p><b>Création d’un réseau d’eaux pluviales et de deux bassins de rétention pour la lutte contre les inondations sur la commune de Ris-Orangis.</b></p>\",\n            \"cover_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/526/cover_small/Bassin_Issy_les_moulineaux.JPG?1515765425\",\n                \"small_dimensions\": \"300x146\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/526/cover_medium/Bassin_Issy_les_moulineaux.JPG?1515765425\",\n                \"medium_dimensions\": \"600x292\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/526/cover_large/Bassin_Issy_les_moulineaux.JPG?1515765425\",\n                \"large_dimensions\": \"1000x487\",\n                \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/526/cover_xlarge/Bassin_Issy_les_moulineaux.JPG?1515765425\",\n                \"xlarge_dimensions\": \"2000x973\",\n                \"alt\": \"image de couverture de Création de bassins de rétention à Ris-Orangis\",\n                \"name\": \"image de couverture de Création de bassins de rétention à Ris-Orangis\",\n                \"slug\": null,\n                \"description\": \"image de couverture de Création de bassins de rétention à Ris-Orangis\",\n                \"copyright\": \"Grabd Paris Sud \"\n            },\n            \"pages\": [\n                {\n                    \"id\": 8540,\n                    \"instance\": {\n                        \"slug\": \"portail-projets-gps\"\n                    }\n                }\n            ]\n        }\n    ]\n}"}],"_postman_id":"2bac6612-52ab-4cef-a7a7-0eff2d733890"},{"name":"Search","id":"d7c3a274-2ba8-4db7-aaaf-e4077ef5d56a","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v1/{{instance_id}}/projects?q&size=10&page=1&marker=false&instances[]=2&performers[]=Nakht&facilities[]=8&events[]=1&event_groups[]=1&news[]=1&projects[]=1&cities[]=7&departments[]=1&regions[]=1&skills[]=1&elects[]=1&epcis[]=1&bbox[]&themes[]=1","description":"<p>Index des projets</p>\n","urlObject":{"path":["v1","{{instance_id}}","projects"],"host":["https://api.publidata.io"],"query":[{"description":{"content":"<p>Recherche (full-text)</p>\n","type":"text/plain"},"key":"q","value":null},{"description":{"content":"<p>Nombre de résultats retournés (defaut: 10)</p>\n","type":"text/plain"},"key":"size","value":"10"},{"description":{"content":"<p>Pagination (defaut: 1)</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>Filtre booléen pour ne retourner que les locations (default: false)</p>\n","type":"text/plain"},"key":"marker","value":"false"},{"description":{"content":"<p>Filtre par instance (array d'id)</p>\n","type":"text/plain"},"key":"instances[]","value":"2"},{"description":{"content":"<p>Filtre par artiste lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"performers[]","value":"Nakht"},{"description":{"content":"<p>Filtre par équipement lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"facilities[]","value":"8"},{"description":{"content":"<p>Filtre par événement lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"events[]","value":"1"},{"description":{"content":"<p>Filtre par groupe d'événements lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"event_groups[]","value":"1"},{"description":{"content":"<p>Filtre par actualité liée (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"news[]","value":"1"},{"description":{"content":"<p>Filtre par projet lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"projects[]","value":"1"},{"description":{"content":"<p>Filtre par ville et location liées (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"cities[]","value":"7"},{"description":{"content":"<p>Filtre par departement lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"departments[]","value":"1"},{"description":{"content":"<p>Filtre par region liée (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"regions[]","value":"1"},{"description":{"content":"<p>Filtre par compétence liée (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"skills[]","value":"1"},{"description":{"content":"<p>Filtre par élu lié (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"elects[]","value":"1"},{"description":{"content":"<p>Filtre par epci liée (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"epcis[]","value":"1"},{"description":{"content":"<p>Filtre géographique (array de latitudes, longitudes dans l'ordre suivant minX, minY, maxX, maxY)</p>\n","type":"text/plain"},"key":"bbox[]","value":null},{"description":{"content":"<p>Filtre par thème (array d'id ou de nom)</p>\n","type":"text/plain"},"key":"themes[]","value":"1"}],"variable":[]}},"response":[{"id":"9c1f9286-cb38-44cb-9600-1d353def73d2","name":"Index projects","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"publidata.io/api/v1/portail-projets-gps/projects"},"code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"projects\": [\n        {\n            \"id\": 2,\n            \"name\": \"Projet de territoire\",\n            \"slug\": \"projet-de-territoire\",\n            \"start_date\": \"2016-05-01T00:00:00.000+02:00\",\n            \"end_date\": \"2017-12-31T00:00:00.000+01:00\",\n            \"cover_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/006/651/cover_small/bandeau-projet-territoire-grandparissud.jpg?1513613827\",\n                \"small_dimensions\": \"300x70\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/006/651/cover_medium/bandeau-projet-territoire-grandparissud.jpg?1513613827\",\n                \"medium_dimensions\": \"600x140\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/006/651/cover_large/bandeau-projet-territoire-grandparissud.jpg?1513613827\",\n                \"large_dimensions\": \"1000x233\",\n                \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/006/651/cover_xlarge/bandeau-projet-territoire-grandparissud.jpg?1513613827\",\n                \"xlarge_dimensions\": \"1596x372\",\n                \"alt\": \"image de couverture de Projet de territoire\",\n                \"name\": \"image de couverture de Projet de territoire\",\n                \"slug\": \"image-de-couverture-de-projet-de-territoire-9832a840-c61d-4102-9bbe-a81ee34914fb\",\n                \"description\": \"image de couverture de Projet de territoire\",\n                \"copyright\": \"agglomération Grand Paris Sud\"\n            },\n            \"pages\": [\n                {\n                    \"id\": 1321,\n                    \"instance\": {\n                        \"slug\": \"portail-projets-gps\"\n                    }\n                },\n                {\n                    \"id\": 8381,\n                    \"instance\": {\n                        \"slug\": \"portail-projets-gps\"\n                    }\n                }\n            ],\n            \"sub_projects\": [\n                {\n                    \"id\": 3,\n                    \"name\": \"Concertation élus communautaires \",\n                    \"slug\": \"concertation-elus-communautaires\",\n                    \"start_date\": \"2016-05-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2016-10-15T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/087/cover_small/seminaire-elus-grand-paris-sud%281%29samedi_12_mai.JPG?1473715424\",\n                        \"small_dimensions\": \"300x200\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/087/cover_medium/seminaire-elus-grand-paris-sud%281%29samedi_12_mai.JPG?1473715424\",\n                        \"medium_dimensions\": \"600x400\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/087/cover_large/seminaire-elus-grand-paris-sud%281%29samedi_12_mai.JPG?1473715424\",\n                        \"large_dimensions\": \"1000x667\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/087/cover_xlarge/seminaire-elus-grand-paris-sud%281%29samedi_12_mai.JPG?1473715424\",\n                        \"xlarge_dimensions\": \"1280x854\",\n                        \"alt\": \"image de couverture de Concertation élus communautaires \",\n                        \"name\": \"image de couverture de Concertation élus communautaires \",\n                        \"slug\": \"image-de-couverture-de-concertation-elus-communautaires\",\n                        \"description\": \"image de couverture de Concertation élus communautaires \",\n                        \"copyright\": \"agglomération Grand Paris Sud\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 1322,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 4,\n                    \"name\": \"Concertation élus municipaux\",\n                    \"slug\": \"concertation-elus-municipaux\",\n                    \"start_date\": \"2016-05-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2016-06-30T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/075/cover_small/seminaire-elus-municipaux-grand-paris-sud_%282%29.JPG?1473715036\",\n                        \"small_dimensions\": \"300x200\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/075/cover_medium/seminaire-elus-municipaux-grand-paris-sud_%282%29.JPG?1473715036\",\n                        \"medium_dimensions\": \"600x400\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/075/cover_large/seminaire-elus-municipaux-grand-paris-sud_%282%29.JPG?1473715036\",\n                        \"large_dimensions\": \"1000x666\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/075/cover_xlarge/seminaire-elus-municipaux-grand-paris-sud_%282%29.JPG?1473715036\",\n                        \"xlarge_dimensions\": \"1280x853\",\n                        \"alt\": \"image de couverture de Concertation élus municipaux\",\n                        \"name\": \"image de couverture de Concertation élus municipaux\",\n                        \"slug\": \"image-de-couverture-de-concertation-elus-municipaux\",\n                        \"description\": \"image de couverture de Concertation élus municipaux\",\n                        \"copyright\": \"agglomération Grand Paris Sud\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 1323,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 5,\n                    \"name\": \"Concertation partenaires et associations\",\n                    \"slug\": \"concertation-partenaires-et-associations\",\n                    \"start_date\": \"2016-06-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2016-09-30T00:00:00.000+02:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 1332,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 6,\n                    \"name\": \"Concertation agents\",\n                    \"slug\": \"concertation-agents\",\n                    \"start_date\": \"2016-07-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2016-08-31T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/057/cover_small/projet-territoire-grand-paris-sud-personnel_%282%29_jeudi_21_juillet.jpg?1473713810\",\n                        \"small_dimensions\": \"300x168\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/057/cover_medium/projet-territoire-grand-paris-sud-personnel_%282%29_jeudi_21_juillet.jpg?1473713810\",\n                        \"medium_dimensions\": \"600x336\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/057/cover_large/projet-territoire-grand-paris-sud-personnel_%282%29_jeudi_21_juillet.jpg?1473713810\",\n                        \"large_dimensions\": \"1000x560\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/057/cover_xlarge/projet-territoire-grand-paris-sud-personnel_%282%29_jeudi_21_juillet.jpg?1473713810\",\n                        \"xlarge_dimensions\": \"1280x717\",\n                        \"alt\": \"image de couverture de Concertation agents\",\n                        \"name\": \"image de couverture de Concertation agents\",\n                        \"slug\": \"image-de-couverture-de-concertation-agents\",\n                        \"description\": \"image de couverture de Concertation agents\",\n                        \"copyright\": \"agglomération Grand Paris Sud\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 1328,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 17,\n                    \"name\": \"Concertation CME et CJ\",\n                    \"slug\": \"concertation-cme-et-cj\",\n                    \"start_date\": \"2016-07-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2016-10-15T00:00:00.000+02:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 1408,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 7,\n                    \"name\": \"Concertation des habitants\",\n                    \"slug\": \"concertation-des-habitants\",\n                    \"start_date\": \"2016-09-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2016-11-15T00:00:00.000+01:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 1329,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 8,\n                    \"name\": \"Synthèse de la concertation\",\n                    \"slug\": \"synthese-de-la-concertation\",\n                    \"start_date\": \"2016-10-16T00:00:00.000+02:00\",\n                    \"end_date\": \"2017-03-30T00:00:00.000+02:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 1330,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 9,\n                    \"name\": \"Adoption du projet de territoire\",\n                    \"slug\": \"adoption-du-projet-de-territoire\",\n                    \"start_date\": \"2017-06-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2017-06-30T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/894/cover_small/adoption-projet-territoire-grandparissud.jpg?1474447897\",\n                        \"small_dimensions\": \"300x200\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/894/cover_medium/adoption-projet-territoire-grandparissud.jpg?1474447897\",\n                        \"medium_dimensions\": \"600x400\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/894/cover_large/adoption-projet-territoire-grandparissud.jpg?1474447897\",\n                        \"large_dimensions\": \"1000x667\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/894/cover_xlarge/adoption-projet-territoire-grandparissud.jpg?1474447897\",\n                        \"xlarge_dimensions\": \"2000x1333\",\n                        \"alt\": \"image de couverture de Adoption du projet de territoire\",\n                        \"name\": \"image de couverture de Adoption du projet de territoire\",\n                        \"slug\": \"image-de-couverture-de-adoption-du-projet-de-territoire\",\n                        \"description\": \"image de couverture de Adoption du projet de territoire\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 1331,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                }\n            ]\n        },\n        {\n            \"id\": 26,\n            \"name\": \"Tram 12 express / Requalification du Bois Briard\",\n            \"slug\": \"tram-12-express-requalification-du-bois-briard\",\n            \"start_date\": \"2015-04-01T00:00:00.000+02:00\",\n            \"end_date\": \"2020-06-30T00:00:00.000+02:00\",\n            \"cover_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/168/cover_small/Perspective-tram12.png?1487925596\",\n                \"small_dimensions\": \"300x178\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/168/cover_medium/Perspective-tram12.png?1487925596\",\n                \"medium_dimensions\": \"600x356\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/168/cover_large/Perspective-tram12.png?1487925596\",\n                \"large_dimensions\": \"1000x593\",\n                \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/168/cover_xlarge/Perspective-tram12.png?1487925596\",\n                \"xlarge_dimensions\": \"2000x1186\",\n                \"alt\": \"image de couverture de Tram 12 express / Requalification du Bois Briard\",\n                \"name\": \"image de couverture de Tram 12 express / Requalification du Bois Briard\",\n                \"slug\": \"image-de-couverture-de-tram-12-express-requalification-du-bois-briard\",\n                \"description\": \"image de couverture de Tram 12 express / Requalification du Bois Briard\",\n                \"copyright\": \"\"\n            },\n            \"pages\": [\n                {\n                    \"id\": 4030,\n                    \"instance\": {\n                        \"slug\": \"portail-projets-gps\"\n                    }\n                }\n            ],\n            \"sub_projects\": [\n                {\n                    \"id\": 27,\n                    \"name\": \"Concertation préalable requalification RD 446\",\n                    \"slug\": \"concertation-prealable-requalification-rd-446\",\n                    \"start_date\": \"2015-04-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2015-10-01T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/302/cover_small/Perspective-tram12.png?1488205439\",\n                        \"small_dimensions\": \"300x178\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/302/cover_medium/Perspective-tram12.png?1488205439\",\n                        \"medium_dimensions\": \"600x356\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/302/cover_large/Perspective-tram12.png?1488205439\",\n                        \"large_dimensions\": \"1000x593\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/302/cover_xlarge/Perspective-tram12.png?1488205439\",\n                        \"xlarge_dimensions\": \"2000x1186\",\n                        \"alt\": \"image de couverture de Concertation préalable requalification RD 446\",\n                        \"name\": \"image de couverture de Concertation préalable requalification RD 446\",\n                        \"slug\": \"image-de-couverture-de-concertation-prealable-requalification-rd-446\",\n                        \"description\": \"image de couverture de Concertation préalable requalification RD 446\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 4069,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 28,\n                    \"name\": \"Enquête publique\",\n                    \"slug\": \"enquete-publique\",\n                    \"start_date\": \"2016-02-01T00:00:00.000+01:00\",\n                    \"end_date\": \"2016-07-02T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/312/cover_small/Perspective-tram12.png?1488201990\",\n                        \"small_dimensions\": \"300x178\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/312/cover_medium/Perspective-tram12.png?1488201990\",\n                        \"medium_dimensions\": \"600x356\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/312/cover_large/Perspective-tram12.png?1488201990\",\n                        \"large_dimensions\": \"1000x593\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/312/cover_xlarge/Perspective-tram12.png?1488201990\",\n                        \"xlarge_dimensions\": \"2000x1186\",\n                        \"alt\": \"image de couverture de Enquête publique\",\n                        \"name\": \"image de couverture de Enquête publique\",\n                        \"slug\": \"image-de-couverture-de-enquete-publique\",\n                        \"description\": \"image de couverture de Enquête publique\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 4033,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 29,\n                    \"name\": \"Réunion publique \",\n                    \"slug\": \"reunion-publique\",\n                    \"start_date\": \"2016-11-29T00:00:00.000+01:00\",\n                    \"end_date\": \"2016-11-29T00:00:00.000+01:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/307/cover_small/ANL_5670.jpg?1488201053\",\n                        \"small_dimensions\": \"300x200\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/307/cover_medium/ANL_5670.jpg?1488201053\",\n                        \"medium_dimensions\": \"600x399\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/307/cover_large/ANL_5670.jpg?1488201053\",\n                        \"large_dimensions\": \"1000x666\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/307/cover_xlarge/ANL_5670.jpg?1488201053\",\n                        \"xlarge_dimensions\": \"2000x1331\",\n                        \"alt\": \"image de couverture de Réunion publique \",\n                        \"name\": \"image de couverture de Réunion publique \",\n                        \"slug\": \"image-de-couverture-de-reunion-publique\",\n                        \"description\": \"image de couverture de Réunion publique \",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 4036,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 30,\n                    \"name\": \"Travaux de déboisage \",\n                    \"slug\": \"travaux-de-deboisage\",\n                    \"start_date\": \"2017-02-27T00:00:00.000+01:00\",\n                    \"end_date\": \"2017-03-05T00:00:00.000+01:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/303/cover_small/N.446_DSC3739.jpg?1488200468\",\n                        \"small_dimensions\": \"300x200\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/303/cover_medium/N.446_DSC3739.jpg?1488200468\",\n                        \"medium_dimensions\": \"600x400\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/303/cover_large/N.446_DSC3739.jpg?1488200468\",\n                        \"large_dimensions\": \"1000x667\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/303/cover_xlarge/N.446_DSC3739.jpg?1488200468\",\n                        \"xlarge_dimensions\": \"2000x1335\",\n                        \"alt\": \"image de couverture de Travaux de déboisage \",\n                        \"name\": \"image de couverture de Travaux de déboisage \",\n                        \"slug\": \"image-de-couverture-de-travaux-de-deboisage\",\n                        \"description\": \"image de couverture de Travaux de déboisage \",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 4039,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 31,\n                    \"name\": \"Travaux préparatoires\",\n                    \"slug\": \"travaux-preparatoires\",\n                    \"start_date\": \"2017-03-06T00:00:00.000+01:00\",\n                    \"end_date\": \"2017-03-12T00:00:00.000+01:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/308/cover_small/Am%C3%A9nagement_du_secteur_Delouvrier.png?1488201549\",\n                        \"small_dimensions\": \"300x159\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/308/cover_medium/Am%C3%A9nagement_du_secteur_Delouvrier.png?1488201549\",\n                        \"medium_dimensions\": \"600x318\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/308/cover_large/Am%C3%A9nagement_du_secteur_Delouvrier.png?1488201549\",\n                        \"large_dimensions\": \"1000x529\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/308/cover_xlarge/Am%C3%A9nagement_du_secteur_Delouvrier.png?1488201549\",\n                        \"xlarge_dimensions\": \"2000x1059\",\n                        \"alt\": \"image de couverture de Travaux préparatoires\",\n                        \"name\": \"image de couverture de Travaux préparatoires\",\n                        \"slug\": \"image-de-couverture-de-travaux-preparatoires\",\n                        \"description\": \"image de couverture de Travaux préparatoires\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 4042,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 32,\n                    \"name\": \"Fermeture de l’échangeur Delouvrier\",\n                    \"slug\": \"fermeture-de-l-echangeur-delouvrier\",\n                    \"start_date\": \"2017-03-21T00:00:00.000+01:00\",\n                    \"end_date\": \"2018-06-30T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/299/cover_small/Perspective-_-carrefour_-Delouvrier.jpg?1488199631\",\n                        \"small_dimensions\": \"300x169\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/299/cover_medium/Perspective-_-carrefour_-Delouvrier.jpg?1488199631\",\n                        \"medium_dimensions\": \"600x338\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/299/cover_large/Perspective-_-carrefour_-Delouvrier.jpg?1488199631\",\n                        \"large_dimensions\": \"1000x563\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/299/cover_xlarge/Perspective-_-carrefour_-Delouvrier.jpg?1488199631\",\n                        \"xlarge_dimensions\": \"1210x681\",\n                        \"alt\": \"image de couverture de Fermeture de l’échangeur Delouvrier\",\n                        \"name\": \"image de couverture de Fermeture de l’échangeur Delouvrier\",\n                        \"slug\": \"image-de-couverture-de-fermeture-de-l-echangeur-delouvrier\",\n                        \"description\": \"image de couverture de Fermeture de l’échangeur Delouvrier\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 4026,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 33,\n                    \"name\": \"Requalification de la RD 446\",\n                    \"slug\": \"requalification-de-la-rd-446\",\n                    \"start_date\": \"2017-03-13T00:00:00.000+01:00\",\n                    \"end_date\": \"2018-08-31T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/304/cover_small/carte-travaux-delouvrier-grandparissud.PNG?1490690689\",\n                        \"small_dimensions\": \"300x159\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/304/cover_medium/carte-travaux-delouvrier-grandparissud.PNG?1490690689\",\n                        \"medium_dimensions\": \"600x317\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/304/cover_large/carte-travaux-delouvrier-grandparissud.PNG?1490690689\",\n                        \"large_dimensions\": \"1000x529\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/304/cover_xlarge/carte-travaux-delouvrier-grandparissud.PNG?1490690689\",\n                        \"xlarge_dimensions\": \"1190x629\",\n                        \"alt\": \"image de couverture de Requalification de la RD 446\",\n                        \"name\": \"image de couverture de Requalification de la RD 446\",\n                        \"slug\": \"image-de-couverture-de-requalification-de-la-rd-446\",\n                        \"description\": \"image de couverture de Requalification de la RD 446\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 4045,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 34,\n                    \"name\": \"Début des travaux Tram 12 express\",\n                    \"slug\": \"debut-des-travaux-tram-12-express\",\n                    \"start_date\": \"2018-01-03T00:00:00.000+01:00\",\n                    \"end_date\": \"2018-07-01T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/298/cover_small/Perspective-Evry.png?1488199442\",\n                        \"small_dimensions\": \"300x178\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/298/cover_medium/Perspective-Evry.png?1488199442\",\n                        \"medium_dimensions\": \"600x356\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/298/cover_large/Perspective-Evry.png?1488199442\",\n                        \"large_dimensions\": \"1000x593\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/298/cover_xlarge/Perspective-Evry.png?1488199442\",\n                        \"xlarge_dimensions\": \"1999x1186\",\n                        \"alt\": \"image de couverture de Début des travaux Tram 12 express\",\n                        \"name\": \"image de couverture de Début des travaux Tram 12 express\",\n                        \"slug\": \"image-de-couverture-de-debut-des-travaux-tram-12-express\",\n                        \"description\": \"image de couverture de Début des travaux Tram 12 express\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 4048,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 35,\n                    \"name\": \"Ouverture boulevard urbain\",\n                    \"slug\": \"ouverture-boulevard-urbain\",\n                    \"start_date\": \"2018-07-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2019-06-30T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/305/cover_small/Perspective-Evry.png?1488200796\",\n                        \"small_dimensions\": \"300x178\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/305/cover_medium/Perspective-Evry.png?1488200796\",\n                        \"medium_dimensions\": \"600x356\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/305/cover_large/Perspective-Evry.png?1488200796\",\n                        \"large_dimensions\": \"1000x593\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/305/cover_xlarge/Perspective-Evry.png?1488200796\",\n                        \"xlarge_dimensions\": \"1999x1186\",\n                        \"alt\": \"image de couverture de Ouverture boulevard urbain\",\n                        \"name\": \"image de couverture de Ouverture boulevard urbain\",\n                        \"slug\": \"image-de-couverture-de-ouverture-boulevard-urbain\",\n                        \"description\": \"image de couverture de Ouverture boulevard urbain\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 4051,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 36,\n                    \"name\": \"Fin des travaux d'aménagement\",\n                    \"slug\": \"fin-des-travaux-d-amenagement\",\n                    \"start_date\": \"2019-07-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2020-06-30T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/306/cover_small/Perspective-tram12.png?1488200844\",\n                        \"small_dimensions\": \"300x178\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/306/cover_medium/Perspective-tram12.png?1488200844\",\n                        \"medium_dimensions\": \"600x356\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/306/cover_large/Perspective-tram12.png?1488200844\",\n                        \"large_dimensions\": \"1000x593\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/306/cover_xlarge/Perspective-tram12.png?1488200844\",\n                        \"xlarge_dimensions\": \"2000x1186\",\n                        \"alt\": \"image de couverture de Fin des travaux d'aménagement\",\n                        \"name\": \"image de couverture de Fin des travaux d'aménagement\",\n                        \"slug\": \"image-de-couverture-de-fin-des-travaux-d-amenagement\",\n                        \"description\": \"image de couverture de Fin des travaux d'aménagement\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 4054,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                }\n            ]\n        },\n        {\n            \"id\": 41,\n            \"name\": \"T Zen 4 \",\n            \"slug\": \"t-zen-4\",\n            \"start_date\": \"2016-05-30T00:00:00.000+02:00\",\n            \"end_date\": \"2020-12-31T00:00:00.000+01:00\",\n            \"cover_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/547/cover_small/1-voies-reservees_priorite-aux-feux.jpg?1488460827\",\n                \"small_dimensions\": \"300x168\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/547/cover_medium/1-voies-reservees_priorite-aux-feux.jpg?1488460827\",\n                \"medium_dimensions\": \"600x337\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/547/cover_large/1-voies-reservees_priorite-aux-feux.jpg?1488460827\",\n                \"large_dimensions\": \"900x505\",\n                \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/547/cover_xlarge/1-voies-reservees_priorite-aux-feux.jpg?1488460827\",\n                \"xlarge_dimensions\": \"900x505\",\n                \"alt\": \"image de couverture de T Zen 4 \",\n                \"name\": \"image de couverture de T Zen 4 \",\n                \"slug\": \"image-de-couverture-de-t-zen-4\",\n                \"description\": \"image de couverture de T Zen 4 \",\n                \"copyright\": \"\"\n            },\n            \"pages\": [\n                {\n                    \"id\": 4163,\n                    \"instance\": {\n                        \"slug\": \"portail-projets-gps\"\n                    }\n                }\n            ],\n            \"sub_projects\": [\n                {\n                    \"id\": 42,\n                    \"name\": \"Enquête publique\",\n                    \"slug\": \"enquete-publique-ae33dafd-8be2-48ec-a581-d325aeb364bf\",\n                    \"start_date\": \"2016-05-30T00:00:00.000+02:00\",\n                    \"end_date\": \"2016-07-04T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/558/cover_small/3-station-confortable-accessible.jpg?1488468928\",\n                        \"small_dimensions\": \"300x169\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/558/cover_medium/3-station-confortable-accessible.jpg?1488468928\",\n                        \"medium_dimensions\": \"600x337\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/558/cover_large/3-station-confortable-accessible.jpg?1488468928\",\n                        \"large_dimensions\": \"900x506\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/558/cover_xlarge/3-station-confortable-accessible.jpg?1488468928\",\n                        \"xlarge_dimensions\": \"900x506\",\n                        \"alt\": \"image de couverture de Enquête publique\",\n                        \"name\": \"image de couverture de Enquête publique\",\n                        \"slug\": \"image-de-couverture-de-enquete-publique-2e821b44-25e0-41c6-959e-db1384f855d6\",\n                        \"description\": \"image de couverture de Enquête publique\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 4166,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 43,\n                    \"name\": \"Déclaration de projet et d'utilité publique\",\n                    \"slug\": \"declaration-de-projet-et-d-utilite-publique-5ecff84d-872d-4a15-81ed-d3d70b388e4c\",\n                    \"start_date\": \"2016-10-05T00:00:00.000+02:00\",\n                    \"end_date\": \"2016-12-08T00:00:00.000+01:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/559/cover_small/1-voies-reservees_priorite-aux-feux.jpg?1488468962\",\n                        \"small_dimensions\": \"300x168\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/559/cover_medium/1-voies-reservees_priorite-aux-feux.jpg?1488468962\",\n                        \"medium_dimensions\": \"600x337\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/559/cover_large/1-voies-reservees_priorite-aux-feux.jpg?1488468962\",\n                        \"large_dimensions\": \"900x505\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/559/cover_xlarge/1-voies-reservees_priorite-aux-feux.jpg?1488468962\",\n                        \"xlarge_dimensions\": \"900x505\",\n                        \"alt\": \"image de couverture de Déclaration de projet et d'utilité publique\",\n                        \"name\": \"image de couverture de Déclaration de projet et d'utilité publique\",\n                        \"slug\": \"image-de-couverture-de-declaration-de-projet-et-d-utilite-publique-39c7aac9-83f4-4c8b-95e4-c74564bfddfd\",\n                        \"description\": \"image de couverture de Déclaration de projet et d'utilité publique\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 4169,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 44,\n                    \"name\": \"Début des travaux\",\n                    \"slug\": \"debut-des-travaux\",\n                    \"start_date\": \"2019-01-01T00:00:00.000+01:00\",\n                    \"end_date\": \"2019-12-31T00:00:00.000+01:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/560/cover_small/3-station-confortable-accessible.jpg?1488469031\",\n                        \"small_dimensions\": \"300x169\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/560/cover_medium/3-station-confortable-accessible.jpg?1488469031\",\n                        \"medium_dimensions\": \"600x337\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/560/cover_large/3-station-confortable-accessible.jpg?1488469031\",\n                        \"large_dimensions\": \"900x506\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/560/cover_xlarge/3-station-confortable-accessible.jpg?1488469031\",\n                        \"xlarge_dimensions\": \"900x506\",\n                        \"alt\": \"image de couverture de Début des travaux\",\n                        \"name\": \"image de couverture de Début des travaux\",\n                        \"slug\": \"image-de-couverture-de-debut-des-travaux\",\n                        \"description\": \"image de couverture de Début des travaux\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 4172,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 45,\n                    \"name\": \"Mise en service du T Zen 4\",\n                    \"slug\": \"mise-en-service-du-t-zen-4\",\n                    \"start_date\": \"2020-01-01T00:00:00.000+01:00\",\n                    \"end_date\": \"2020-12-31T00:00:00.000+01:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/561/cover_small/1-voies-reservees_priorite-aux-feux.jpg?1488469076\",\n                        \"small_dimensions\": \"300x168\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/561/cover_medium/1-voies-reservees_priorite-aux-feux.jpg?1488469076\",\n                        \"medium_dimensions\": \"600x337\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/561/cover_large/1-voies-reservees_priorite-aux-feux.jpg?1488469076\",\n                        \"large_dimensions\": \"900x505\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/561/cover_xlarge/1-voies-reservees_priorite-aux-feux.jpg?1488469076\",\n                        \"xlarge_dimensions\": \"900x505\",\n                        \"alt\": \"image de couverture de Mise en service du T Zen 4\",\n                        \"name\": \"image de couverture de Mise en service du T Zen 4\",\n                        \"slug\": \"image-de-couverture-de-mise-en-service-du-t-zen-4\",\n                        \"description\": \"image de couverture de Mise en service du T Zen 4\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 4175,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                }\n            ]\n        },\n        {\n            \"id\": 18,\n            \"name\": \"T Zen 2\",\n            \"slug\": \"t-zen-2\",\n            \"start_date\": \"2013-09-01T00:00:00.000+02:00\",\n            \"end_date\": \"2024-12-31T00:00:00.000+01:00\",\n            \"cover_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/014/520/cover_small/3-station-confortable-accessible.jpg?1486132133\",\n                \"small_dimensions\": \"300x169\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/014/520/cover_medium/3-station-confortable-accessible.jpg?1486132133\",\n                \"medium_dimensions\": \"600x337\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/014/520/cover_large/3-station-confortable-accessible.jpg?1486132133\",\n                \"large_dimensions\": \"900x506\",\n                \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/014/520/cover_xlarge/3-station-confortable-accessible.jpg?1486132133\",\n                \"xlarge_dimensions\": \"900x506\",\n                \"alt\": \"image de couverture de T Zen 2\",\n                \"name\": \"image de couverture de T Zen 2\",\n                \"slug\": \"image-de-couverture-de-t-zen-2\",\n                \"description\": \"image de couverture de T Zen 2\",\n                \"copyright\": \"\"\n            },\n            \"pages\": [\n                {\n                    \"id\": 2184,\n                    \"instance\": {\n                        \"slug\": \"portail-projets-gps\"\n                    }\n                }\n            ],\n            \"sub_projects\": [\n                {\n                    \"id\": 19,\n                    \"name\": \"Enquête publique\",\n                    \"slug\": \"enquete-publique-932eaf28-3be9-4ccb-a2b0-c8e8cd9cce8b\",\n                    \"start_date\": \"2013-09-23T00:00:00.000+02:00\",\n                    \"end_date\": \"2013-10-26T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/551/cover_small/1-voies-reservees_priorite-aux-feux.jpg?1488468068\",\n                        \"small_dimensions\": \"300x168\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/551/cover_medium/1-voies-reservees_priorite-aux-feux.jpg?1488468068\",\n                        \"medium_dimensions\": \"600x337\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/551/cover_large/1-voies-reservees_priorite-aux-feux.jpg?1488468068\",\n                        \"large_dimensions\": \"900x505\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/551/cover_xlarge/1-voies-reservees_priorite-aux-feux.jpg?1488468068\",\n                        \"xlarge_dimensions\": \"900x505\",\n                        \"alt\": \"image de couverture de Enquête publique\",\n                        \"name\": \"image de couverture de Enquête publique\",\n                        \"slug\": \"image-de-couverture-de-enquete-publique-acc85490-4756-4182-a689-c9119e63e7fe\",\n                        \"description\": \"image de couverture de Enquête publique\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 2187,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 20,\n                    \"name\": \"Déclaration de projet et d'utilité publique\",\n                    \"slug\": \"declaration-de-projet-et-d-utilite-publique\",\n                    \"start_date\": \"2014-06-27T00:00:00.000+02:00\",\n                    \"end_date\": \"2014-07-30T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/552/cover_small/3-station-confortable-accessible.jpg?1488468105\",\n                        \"small_dimensions\": \"300x169\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/552/cover_medium/3-station-confortable-accessible.jpg?1488468105\",\n                        \"medium_dimensions\": \"600x337\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/552/cover_large/3-station-confortable-accessible.jpg?1488468105\",\n                        \"large_dimensions\": \"900x506\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/552/cover_xlarge/3-station-confortable-accessible.jpg?1488468105\",\n                        \"xlarge_dimensions\": \"900x506\",\n                        \"alt\": \"image de couverture de Déclaration de projet et d'utilité publique\",\n                        \"name\": \"image de couverture de Déclaration de projet et d'utilité publique\",\n                        \"slug\": \"image-de-couverture-de-declaration-de-projet-et-d-utilite-publique\",\n                        \"description\": \"image de couverture de Déclaration de projet et d'utilité publique\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 2237,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 21,\n                    \"name\": \"Études approfondies et avant-projet\",\n                    \"slug\": \"etudes-approfondies-et-avant-projet\",\n                    \"start_date\": \"2014-08-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2017-03-31T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/553/cover_small/1-voies-reservees_priorite-aux-feux.jpg?1488468141\",\n                        \"small_dimensions\": \"300x168\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/553/cover_medium/1-voies-reservees_priorite-aux-feux.jpg?1488468141\",\n                        \"medium_dimensions\": \"600x337\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/553/cover_large/1-voies-reservees_priorite-aux-feux.jpg?1488468141\",\n                        \"large_dimensions\": \"900x505\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/553/cover_xlarge/1-voies-reservees_priorite-aux-feux.jpg?1488468141\",\n                        \"xlarge_dimensions\": \"900x505\",\n                        \"alt\": \"image de couverture de Études approfondies et avant-projet\",\n                        \"name\": \"image de couverture de Études approfondies et avant-projet\",\n                        \"slug\": \"image-de-couverture-de-etudes-approfondies-et-avant-projet\",\n                        \"description\": \"image de couverture de Études approfondies et avant-projet\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 2236,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 22,\n                    \"name\": \"Travaux d'aménagement\",\n                    \"slug\": \"travaux-d-amenagement\",\n                    \"start_date\": \"2016-10-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2017-05-30T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/554/cover_small/3-station-confortable-accessible.jpg?1488468430\",\n                        \"small_dimensions\": \"300x169\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/554/cover_medium/3-station-confortable-accessible.jpg?1488468430\",\n                        \"medium_dimensions\": \"600x337\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/554/cover_large/3-station-confortable-accessible.jpg?1488468430\",\n                        \"large_dimensions\": \"900x506\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/554/cover_xlarge/3-station-confortable-accessible.jpg?1488468430\",\n                        \"xlarge_dimensions\": \"900x506\",\n                        \"alt\": \"image de couverture de Travaux d'aménagement\",\n                        \"name\": \"image de couverture de Travaux d'aménagement\",\n                        \"slug\": \"image-de-couverture-de-travaux-d-amenagement\",\n                        \"description\": \"image de couverture de Travaux d'aménagement\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 2235,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 23,\n                    \"name\": \"Début prévisonnel des travaux\",\n                    \"slug\": \"debut-previsonnel-des-travaux\",\n                    \"start_date\": \"2017-07-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2018-06-30T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/555/cover_small/1-voies-reservees_priorite-aux-feux.jpg?1488468382\",\n                        \"small_dimensions\": \"300x168\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/555/cover_medium/1-voies-reservees_priorite-aux-feux.jpg?1488468382\",\n                        \"medium_dimensions\": \"600x337\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/555/cover_large/1-voies-reservees_priorite-aux-feux.jpg?1488468382\",\n                        \"large_dimensions\": \"900x505\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/555/cover_xlarge/1-voies-reservees_priorite-aux-feux.jpg?1488468382\",\n                        \"xlarge_dimensions\": \"900x505\",\n                        \"alt\": \"image de couverture de Début prévisonnel des travaux\",\n                        \"name\": \"image de couverture de Début prévisonnel des travaux\",\n                        \"slug\": \"image-de-couverture-de-debut-previsonnel-des-travaux\",\n                        \"description\": \"image de couverture de Début prévisonnel des travaux\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 2234,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 24,\n                    \"name\": \"Travaux et création des stations\",\n                    \"slug\": \"travaux-et-creation-des-stations\",\n                    \"start_date\": \"2018-01-01T00:00:00.000+01:00\",\n                    \"end_date\": \"2023-12-31T00:00:00.000+01:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/556/cover_small/3-station-confortable-accessible.jpg?1488468607\",\n                        \"small_dimensions\": \"300x169\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/556/cover_medium/3-station-confortable-accessible.jpg?1488468607\",\n                        \"medium_dimensions\": \"600x337\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/556/cover_large/3-station-confortable-accessible.jpg?1488468607\",\n                        \"large_dimensions\": \"900x506\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/556/cover_xlarge/3-station-confortable-accessible.jpg?1488468607\",\n                        \"xlarge_dimensions\": \"900x506\",\n                        \"alt\": \"image de couverture de Travaux et création des stations\",\n                        \"name\": \"image de couverture de Travaux et création des stations\",\n                        \"slug\": \"image-de-couverture-de-travaux-et-creation-des-stations\",\n                        \"description\": \"image de couverture de Travaux et création des stations\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 2233,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 25,\n                    \"name\": \"Mise en service du T Zen 2 \",\n                    \"slug\": \"mise-en-service-du-t-zen-2\",\n                    \"start_date\": \"2024-07-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2024-12-31T00:00:00.000+01:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/557/cover_small/1-voies-reservees_priorite-aux-feux.jpg?1488468656\",\n                        \"small_dimensions\": \"300x168\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/557/cover_medium/1-voies-reservees_priorite-aux-feux.jpg?1488468656\",\n                        \"medium_dimensions\": \"600x337\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/557/cover_large/1-voies-reservees_priorite-aux-feux.jpg?1488468656\",\n                        \"large_dimensions\": \"900x505\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/557/cover_xlarge/1-voies-reservees_priorite-aux-feux.jpg?1488468656\",\n                        \"xlarge_dimensions\": \"900x505\",\n                        \"alt\": \"image de couverture de Mise en service du T Zen 2 \",\n                        \"name\": \"image de couverture de Mise en service du T Zen 2 \",\n                        \"slug\": \"image-de-couverture-de-mise-en-service-du-t-zen-2\",\n                        \"description\": \"image de couverture de Mise en service du T Zen 2 \",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 2232,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                }\n            ]\n        },\n        {\n            \"id\": 48,\n            \"name\": \"L'Agora se métamorphose \",\n            \"slug\": \"l-agora-se-metamorphose\",\n            \"start_date\": \"2017-09-01T00:00:00.000+02:00\",\n            \"end_date\": \"2020-12-01T00:00:00.000+01:00\",\n            \"cover_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/489/cover_small/Dossier-Graphique_EVRY_02-10.jpg?1506422665\",\n                \"small_dimensions\": \"300x147\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/489/cover_medium/Dossier-Graphique_EVRY_02-10.jpg?1506422665\",\n                \"medium_dimensions\": \"600x293\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/489/cover_large/Dossier-Graphique_EVRY_02-10.jpg?1506422665\",\n                \"large_dimensions\": \"1000x489\",\n                \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/489/cover_xlarge/Dossier-Graphique_EVRY_02-10.jpg?1506422665\",\n                \"xlarge_dimensions\": \"1854x906\",\n                \"alt\": \"image de couverture de L'Agora se métamorphose \",\n                \"name\": \"image de couverture de L'Agora se métamorphose \",\n                \"slug\": null,\n                \"description\": \"image de couverture de L'Agora se métamorphose \",\n                \"copyright\": \"\"\n            },\n            \"pages\": [\n                {\n                    \"id\": 7560,\n                    \"instance\": {\n                        \"slug\": \"portail-projets-gps\"\n                    }\n                }\n            ],\n            \"sub_projects\": [\n                {\n                    \"id\": 49,\n                    \"name\": \"Démolition du Crédit foncier \",\n                    \"slug\": \"demolition-du-credit-foncier\",\n                    \"start_date\": \"2017-09-15T00:00:00.000+02:00\",\n                    \"end_date\": \"2018-01-30T00:00:00.000+01:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 7563,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 50,\n                    \"name\": \"Espace restauration\",\n                    \"slug\": \"espace-restauration\",\n                    \"start_date\": \"2018-01-01T00:00:00.000+01:00\",\n                    \"end_date\": \"2019-05-01T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/751/cover_small/food_court.jpg?1507107617\",\n                        \"small_dimensions\": \"300x200\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/751/cover_medium/food_court.jpg?1507107617\",\n                        \"medium_dimensions\": \"600x400\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/751/cover_large/food_court.jpg?1507107617\",\n                        \"large_dimensions\": \"1000x667\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/751/cover_xlarge/food_court.jpg?1507107617\",\n                        \"xlarge_dimensions\": \"2000x1333\",\n                        \"alt\": \"image de couverture de Espace restauration\",\n                        \"name\": \"image de couverture de Espace restauration\",\n                        \"slug\": null,\n                        \"description\": \"image de couverture de Espace restauration\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 7735,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 51,\n                    \"name\": \"Place de l'Agora \",\n                    \"slug\": \"place-de-l-agora\",\n                    \"start_date\": \"2018-01-01T00:00:00.000+01:00\",\n                    \"end_date\": \"2018-12-31T00:00:00.000+01:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 7738,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 52,\n                    \"name\": \"Les Arènes\",\n                    \"slug\": \"les-arenes\",\n                    \"start_date\": \"2018-06-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2020-06-01T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/846/cover_small/int%C3%A9rieur_ar%C3%A8nes.JPG?1507300602\",\n                        \"small_dimensions\": \"300x167\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/846/cover_medium/int%C3%A9rieur_ar%C3%A8nes.JPG?1507300602\",\n                        \"medium_dimensions\": \"600x335\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/846/cover_large/int%C3%A9rieur_ar%C3%A8nes.JPG?1507300602\",\n                        \"large_dimensions\": \"956x533\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/846/cover_xlarge/int%C3%A9rieur_ar%C3%A8nes.JPG?1507300602\",\n                        \"xlarge_dimensions\": \"956x533\",\n                        \"alt\": \"image de couverture de Les Arènes\",\n                        \"name\": \"image de couverture de Les Arènes\",\n                        \"slug\": null,\n                        \"description\": \"image de couverture de Les Arènes\",\n                        \"copyright\": \"DVVD/Labtop\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 7741,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 53,\n                    \"name\": \"Place des Terrasses\",\n                    \"slug\": \"place-des-terrasses\",\n                    \"start_date\": \"2019-01-01T00:00:00.000+01:00\",\n                    \"end_date\": \"2020-01-01T00:00:00.000+01:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/757/cover_small/une_dossier_centres_commerciaux.jpg?1507119253\",\n                        \"small_dimensions\": \"233x300\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/757/cover_medium/une_dossier_centres_commerciaux.jpg?1507119253\",\n                        \"medium_dimensions\": \"466x600\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/757/cover_large/une_dossier_centres_commerciaux.jpg?1507119253\",\n                        \"large_dimensions\": \"777x1000\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/757/cover_xlarge/une_dossier_centres_commerciaux.jpg?1507119253\",\n                        \"xlarge_dimensions\": \"993x1278\",\n                        \"alt\": \"image de couverture de Place des Terrasses\",\n                        \"name\": \"image de couverture de Place des Terrasses\",\n                        \"slug\": null,\n                        \"description\": \"image de couverture de Place des Terrasses\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 7744,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                }\n            ]\n        },\n        {\n            \"id\": 46,\n            \"name\": \"Gare TGV\",\n            \"slug\": \"gare-tgv\",\n            \"start_date\": \"2012-01-01T00:00:00.000+01:00\",\n            \"end_date\": \"2030-12-31T00:00:00.000+01:00\",\n            \"cover_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/548/cover_small/gare-moissy-tgv.jpg?1488450325\",\n                \"small_dimensions\": \"300x200\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/548/cover_medium/gare-moissy-tgv.jpg?1488450325\",\n                \"medium_dimensions\": \"600x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/548/cover_large/gare-moissy-tgv.jpg?1488450325\",\n                \"large_dimensions\": \"1000x667\",\n                \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/548/cover_xlarge/gare-moissy-tgv.jpg?1488450325\",\n                \"xlarge_dimensions\": \"2000x1335\",\n                \"alt\": \"image de couverture de Gare TGV\",\n                \"name\": \"image de couverture de Gare TGV\",\n                \"slug\": \"image-de-couverture-de-gare-tgv-d0e33b0d-e356-4151-a846-c642e5e092a2\",\n                \"description\": \"image de couverture de Gare TGV\",\n                \"copyright\": \"\"\n            },\n            \"pages\": [\n                {\n                    \"id\": 4178,\n                    \"instance\": {\n                        \"slug\": \"portail-projets-gps\"\n                    }\n                }\n            ],\n            \"sub_projects\": []\n        },\n        {\n            \"id\": 63,\n            \"name\": \"Création de bassins de rétention à Ris-Orangis\",\n            \"slug\": \"creation-de-bassins-de-retention-a-ris-orangis\",\n            \"start_date\": \"2018-01-22T00:00:00.000+01:00\",\n            \"end_date\": \"2019-05-20T00:00:00.000+02:00\",\n            \"cover_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/526/cover_small/Bassin_Issy_les_moulineaux.JPG?1515765425\",\n                \"small_dimensions\": \"300x146\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/526/cover_medium/Bassin_Issy_les_moulineaux.JPG?1515765425\",\n                \"medium_dimensions\": \"600x292\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/526/cover_large/Bassin_Issy_les_moulineaux.JPG?1515765425\",\n                \"large_dimensions\": \"1000x487\",\n                \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/526/cover_xlarge/Bassin_Issy_les_moulineaux.JPG?1515765425\",\n                \"xlarge_dimensions\": \"2000x973\",\n                \"alt\": \"image de couverture de Création de bassins de rétention à Ris-Orangis\",\n                \"name\": \"image de couverture de Création de bassins de rétention à Ris-Orangis\",\n                \"slug\": null,\n                \"description\": \"image de couverture de Création de bassins de rétention à Ris-Orangis\",\n                \"copyright\": \"Grabd Paris Sud \"\n            },\n            \"pages\": [\n                {\n                    \"id\": 8540,\n                    \"instance\": {\n                        \"slug\": \"portail-projets-gps\"\n                    }\n                }\n            ],\n            \"sub_projects\": [\n                {\n                    \"id\": 64,\n                    \"name\": \"Création du bassin sous le stade Émile-Gagneux\",\n                    \"slug\": \"creation-du-bassin-sous-le-stade-emile-gagneux\",\n                    \"start_date\": \"2018-01-22T00:00:00.000+01:00\",\n                    \"end_date\": \"2019-05-30T00:00:00.000+02:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 8844,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 65,\n                    \"name\": \"Création d'un collecteur (canalisation) \",\n                    \"slug\": \"creation-d-un-collecteur-canalisation\",\n                    \"start_date\": \"2018-05-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2019-03-30T00:00:00.000+01:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 8838,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 66,\n                    \"name\": \"Création second bassin de stockage / restitution\",\n                    \"slug\": \"creation-second-bassin-de-stockage-restitution\",\n                    \"start_date\": \"2018-03-01T00:00:00.000+01:00\",\n                    \"end_date\": \"2019-01-31T00:00:00.000+01:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 8841,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 67,\n                    \"name\": \"Création station anti-crue de Seine\",\n                    \"slug\": \"creation-station-anti-crue-de-seine\",\n                    \"start_date\": \"2018-01-29T00:00:00.000+01:00\",\n                    \"end_date\": \"2018-06-30T00:00:00.000+02:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 8835,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                }\n            ]\n        },\n        {\n            \"id\": 54,\n            \"name\": \"Chauffage urbain \",\n            \"slug\": \"chauffage-urbain\",\n            \"start_date\": \"2017-07-01T00:00:00.000+02:00\",\n            \"end_date\": \"2018-12-31T00:00:00.000+01:00\",\n            \"cover_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/891/cover_small/vert_le_grand.jpg?1507645372\",\n                \"small_dimensions\": \"300x236\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/891/cover_medium/vert_le_grand.jpg?1507645372\",\n                \"medium_dimensions\": \"300x236\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/891/cover_large/vert_le_grand.jpg?1507645372\",\n                \"large_dimensions\": \"300x236\",\n                \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/891/cover_xlarge/vert_le_grand.jpg?1507645372\",\n                \"xlarge_dimensions\": \"300x236\",\n                \"alt\": \"image de couverture de Chauffage urbain \",\n                \"name\": \"image de couverture de Chauffage urbain \",\n                \"slug\": null,\n                \"description\": \"image de couverture de Chauffage urbain \",\n                \"copyright\": \"\"\n            },\n            \"pages\": [\n                {\n                    \"id\": 7816,\n                    \"instance\": {\n                        \"slug\": \"portail-projets-gps\"\n                    }\n                }\n            ],\n            \"sub_projects\": [\n                {\n                    \"id\": 56,\n                    \"name\": \"Modernisation et sécurisation du réseau \",\n                    \"slug\": \"modernisation-et-securisation-du-reseau\",\n                    \"start_date\": \"2017-07-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2018-10-01T00:00:00.000+02:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 7825,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 55,\n                    \"name\": \"Création d'un réseau d'interconnexion\",\n                    \"slug\": \"creation-d-un-reseau-d-interconnexion\",\n                    \"start_date\": \"2017-07-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2017-12-31T00:00:00.000+01:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/936/cover_small/travaux_chauffage_urbain_GPS-11-10-2017_DSC2562.jpg?1507883027\",\n                        \"small_dimensions\": \"300x200\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/936/cover_medium/travaux_chauffage_urbain_GPS-11-10-2017_DSC2562.jpg?1507883027\",\n                        \"medium_dimensions\": \"600x401\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/936/cover_large/travaux_chauffage_urbain_GPS-11-10-2017_DSC2562.jpg?1507883027\",\n                        \"large_dimensions\": \"1000x668\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/936/cover_xlarge/travaux_chauffage_urbain_GPS-11-10-2017_DSC2562.jpg?1507883027\",\n                        \"xlarge_dimensions\": \"2000x1335\",\n                        \"alt\": \"image de couverture de Création d'un réseau d'interconnexion\",\n                        \"name\": \"image de couverture de Création d'un réseau d'interconnexion\",\n                        \"slug\": null,\n                        \"description\": \"image de couverture de Création d'un réseau d'interconnexion\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 7819,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 57,\n                    \"name\": \"Installation d'un système de télégestion \",\n                    \"slug\": \"installation-d-un-systeme-de-telegestion\",\n                    \"start_date\": \"2017-07-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2018-12-31T00:00:00.000+01:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 7828,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                }\n            ]\n        },\n        {\n            \"id\": 58,\n            \"name\": \"Rue des Lumières\",\n            \"slug\": \"rue-des-lumieres\",\n            \"start_date\": \"2017-09-01T00:00:00.000+02:00\",\n            \"end_date\": \"2019-12-01T00:00:00.000+01:00\",\n            \"cover_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/023/652/cover_small/ecran-horizontal.jpg?1511120784\",\n                \"small_dimensions\": \"300x169\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/023/652/cover_medium/ecran-horizontal.jpg?1511120784\",\n                \"medium_dimensions\": \"600x338\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/023/652/cover_large/ecran-horizontal.jpg?1511120784\",\n                \"large_dimensions\": \"1000x563\",\n                \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/023/652/cover_xlarge/ecran-horizontal.jpg?1511120784\",\n                \"xlarge_dimensions\": \"1920x1080\",\n                \"alt\": \"image de couverture de Rue des Lumières\",\n                \"name\": \"image de couverture de Rue des Lumières\",\n                \"slug\": null,\n                \"description\": \"image de couverture de Rue des Lumières\",\n                \"copyright\": \"\"\n            },\n            \"pages\": [\n                {\n                    \"id\": 8127,\n                    \"instance\": {\n                        \"slug\": \"portail-projets-gps\"\n                    }\n                }\n            ],\n            \"sub_projects\": [\n                {\n                    \"id\": 85,\n                    \"name\": \"Les actions de préfiguration\",\n                    \"slug\": \"les-actions-de-prefiguration\",\n                    \"start_date\": \"2017-12-01T00:00:00.000+01:00\",\n                    \"end_date\": \"2018-08-31T00:00:00.000+02:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 9166,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": [\n                        {\n                            \"id\": 59,\n                            \"name\": \"Spectacle Incandescences \",\n                            \"slug\": \"spectacle-incandescences\",\n                            \"start_date\": \"2017-12-14T00:00:00.000+01:00\",\n                            \"end_date\": \"2017-12-14T00:00:00.000+01:00\",\n                            \"cover_picture\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/023/654/cover_small/ecran-horizontal.jpg?1511182171\",\n                                \"small_dimensions\": \"300x169\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/023/654/cover_medium/ecran-horizontal.jpg?1511182171\",\n                                \"medium_dimensions\": \"600x338\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/023/654/cover_large/ecran-horizontal.jpg?1511182171\",\n                                \"large_dimensions\": \"1000x563\",\n                                \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/023/654/cover_xlarge/ecran-horizontal.jpg?1511182171\",\n                                \"xlarge_dimensions\": \"1920x1080\",\n                                \"alt\": \"image de couverture de Spectacle Incandescences \",\n                                \"name\": \"image de couverture de Spectacle Incandescences \",\n                                \"slug\": null,\n                                \"description\": \"image de couverture de Spectacle Incandescences \",\n                                \"copyright\": \"\"\n                            },\n                            \"pages\": [\n                                {\n                                    \"id\": 8133,\n                                    \"instance\": {\n                                        \"slug\": \"portail-projets-gps\"\n                                    }\n                                }\n                            ],\n                            \"sub_projects\": []\n                        }\n                    ]\n                },\n                {\n                    \"id\": 62,\n                    \"name\": \"Phase de candidature \",\n                    \"slug\": \"phase-de-candidature\",\n                    \"start_date\": \"2017-10-03T00:00:00.000+02:00\",\n                    \"end_date\": \"2017-12-20T00:00:00.000+01:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 8146,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 77,\n                    \"name\": \"Dialogue compétitif\",\n                    \"slug\": \"dialogue-competitif\",\n                    \"start_date\": \"2018-01-01T00:00:00.000+01:00\",\n                    \"end_date\": \"2018-08-31T00:00:00.000+02:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 9151,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 86,\n                    \"name\": \"Collaboration avec le candidat retenu pour mise en œuvre des projets\",\n                    \"slug\": \"collaboration-avec-le-candidat-retenu-pour-mise-en-oeuvre-des-projets\",\n                    \"start_date\": \"2018-09-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2019-05-01T00:00:00.000+02:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 9175,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                }\n            ]\n        },\n        {\n            \"id\": 68,\n            \"name\": \"Cirque de l'Essonne\",\n            \"slug\": \"cirque-de-l-essonne\",\n            \"start_date\": \"2018-01-01T00:00:00.000+01:00\",\n            \"end_date\": \"2023-12-31T00:00:00.000+01:00\",\n            \"cover_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/025/389/cover_small/cirque-essonne-grandparissud-bandeau.jpg?1520719604\",\n                \"small_dimensions\": \"300x70\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/025/389/cover_medium/cirque-essonne-grandparissud-bandeau.jpg?1520719604\",\n                \"medium_dimensions\": \"600x140\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/025/389/cover_large/cirque-essonne-grandparissud-bandeau.jpg?1520719604\",\n                \"large_dimensions\": \"1000x234\",\n                \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/025/389/cover_xlarge/cirque-essonne-grandparissud-bandeau.jpg?1520719604\",\n                \"xlarge_dimensions\": \"2000x468\",\n                \"alt\": \"image de couverture de Cirque de l'Essonne\",\n                \"name\": \"image de couverture de Cirque de l'Essonne\",\n                \"slug\": null,\n                \"description\": \"image de couverture de Cirque de l'Essonne\",\n                \"copyright\": \"\"\n            },\n            \"pages\": [\n                {\n                    \"id\": 9043,\n                    \"instance\": {\n                        \"slug\": \"portail-projets-gps\"\n                    }\n                }\n            ],\n            \"sub_projects\": [\n                {\n                    \"id\": 70,\n                    \"name\": \"Études techniques préalables et de conception de l’aménagement\",\n                    \"slug\": \"etudes-techniques-prealables-et-de-conception-de-l-amenagement\",\n                    \"start_date\": \"2017-01-01T00:00:00.000+01:00\",\n                    \"end_date\": \"2019-06-30T00:00:00.000+02:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 9106,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 87,\n                    \"name\": \"Premiers travaux déjà effectués \",\n                    \"slug\": \"premiers-travaux-deja-effectues\",\n                    \"start_date\": \"2017-01-01T00:00:00.000+01:00\",\n                    \"end_date\": \"2018-03-31T00:00:00.000+02:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 9178,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 91,\n                    \"name\": \"Prochains travaux d'urgence\",\n                    \"slug\": \"prochains-travaux-d-urgence\",\n                    \"start_date\": \"2018-01-01T00:00:00.000+01:00\",\n                    \"end_date\": \"2018-12-31T00:00:00.000+01:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 9235,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 90,\n                    \"name\": \"Signature de la convention par les partenaires\",\n                    \"slug\": \"signature-de-la-convention-par-les-partenaires\",\n                    \"start_date\": \"2018-05-26T00:00:00.000+02:00\",\n                    \"end_date\": \"2018-05-26T00:00:00.000+02:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 9232,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 88,\n                    \"name\": \"Grands travaux\",\n                    \"slug\": \"grands-travaux-086fc039-afe3-467d-97cf-a1c6c91f9ba6\",\n                    \"start_date\": \"2019-07-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2023-12-31T00:00:00.000+01:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 9181,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                }\n            ]\n        }\n    ]\n}"}],"_postman_id":"d7c3a274-2ba8-4db7-aaaf-e4077ef5d56a"}],"id":"21392d1f-3691-4084-b868-941f76e7894f","description":"<p>Endpoint d'API des projets</p>\n","_postman_id":"21392d1f-3691-4084-b868-941f76e7894f"},{"name":"Compétences des organisations","item":[{"name":"Index","id":"4a9db81a-dd65-476e-b322-4f53871f36b1","request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"https://api.publidata.io/v1/{{instance_id}}/skills","description":"<p>Index des compétences</p>\n","urlObject":{"path":["v1","{{instance_id}}","skills"],"host":["https://api.publidata.io"],"query":[],"variable":[]}},"response":[{"id":"fc456177-6b20-48aa-964b-87078c344a02","name":"Index skills","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"publidata.io/api/v1/portail-institutionnel-gps/skills"},"code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"skills\": {\n        \"mandatory\": [\n            16,\n            17,\n            15,\n            21,\n            14,\n            22\n        ],\n        \"optional\": [\n            19,\n            20,\n            26,\n            28,\n            25,\n            24,\n            29,\n            30,\n            27\n        ]\n    }\n}"}],"_postman_id":"4a9db81a-dd65-476e-b322-4f53871f36b1"},{"name":"Show","id":"456db255-3098-46d8-a397-90ed5d49456b","request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"https://api.publidata.io/v1/{{instance_id}}/skills/{{skill_id}}","description":"<p>Show d'une compétence</p>\n","urlObject":{"path":["v1","{{instance_id}}","skills","{{skill_id}}"],"host":["https://api.publidata.io"],"query":[],"variable":[]}},"response":[{"id":"dfec292a-eb58-4369-9b5f-9c430ad890a5","name":"Show skill","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"publidata.io/api/v1/portail-institutionnel-gps/skills/16"},"code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"author\": {\n        \"id\": 52,\n        \"name\": \"Grand Paris Sud\",\n        \"slug\": \"grand-paris-sud\",\n        \"type\": \"Agglomeration\",\n        \"type_id\": 4,\n        \"skill_type\": \"mandatory\"\n    },\n    \"skill\": {\n        \"id\": 16,\n        \"name\": \"Équilibre social de l'habitat\",\n        \"blurb\": \"PLH, politique du logement d’intérêt communautaire; actions et aides financières en faveur du logement social, réserves foncières, actions en faveur du logement des personnes défavorisées, amélioration du parc immobilier bâti.\",\n        \"profile_picture\": {\n            \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/301/logo_small/HABITAT-500x500_DEFONCE-01.png?1457376845\",\n            \"small_dimensions\": \"150x150\",\n            \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/301/logo_medium/HABITAT-500x500_DEFONCE-01.png?1457376845\",\n            \"medium_dimensions\": \"400x400\",\n            \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/301/logo_large/HABITAT-500x500_DEFONCE-01.png?1457376845\",\n            \"large_dimensions\": \"500x500\",\n            \"alt\": \"pictogramme de Équilibre social de l'habitat\",\n            \"name\": \"pictogramme de Équilibre social de l'habitat\",\n            \"slug\": \"pictogramme-de-equilibre-social-de-l-habitat\",\n            \"description\": \"pictogramme de Équilibre social de l'habitat\",\n            \"copyright\": \"\"\n        },\n        \"pages\": [\n            {\n                \"id\": 302,\n                \"instance\": {\n                    \"slug\": \"portail-institutionnel-gps\"\n                }\n            }\n        ],\n        \"skill_type\": {\n            \"id\": 7,\n            \"name\": \"Équilibre social de l'habitat\",\n            \"blurb\": \"Définition et mise en œuvre d’un plan local de l’habitat (PLH),constitution de  réserves foncières pour mettre en œuvre la politique communautaire d'équilibre social de l'habitat, actions et aides financières en faveur du logement social d'intérêt communautaire, actions en faveur de la mixité sociale, actions en faveur du logement des personnes défavorisées,  amélioration du parc immobilier bâti d'intérêt communautaire…\"\n        },\n        \"thematics\": [],\n        \"contents\": {\n            \"images\": [],\n            \"documents\": [],\n            \"links\": []\n        }\n    }\n}"}],"_postman_id":"456db255-3098-46d8-a397-90ed5d49456b"},{"name":"Search","id":"e09a3ea5-e6fd-4afc-853f-d03aaaaa2fce","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v1/{{instance_id}}/skills?q&size=10&page=1&marker=false&instances[]=2&performers[]=Nakht&facilities[]=8&events[]=1&event_groups[]=1&news[]=1&projects[]=1&cities[]=7&departments[]=1&regions[]=1&skills[]=1&elects[]=1&epcis[]=1&bbox[]&themes[]=1","description":"<p>Index des projets</p>\n","urlObject":{"path":["v1","{{instance_id}}","skills"],"host":["https://api.publidata.io"],"query":[{"key":"q","value":null},{"key":"size","value":"10"},{"key":"page","value":"1"},{"key":"marker","value":"false"},{"key":"instances[]","value":"2"},{"key":"performers[]","value":"Nakht"},{"key":"facilities[]","value":"8"},{"key":"events[]","value":"1"},{"key":"event_groups[]","value":"1"},{"key":"news[]","value":"1"},{"key":"projects[]","value":"1"},{"key":"cities[]","value":"7"},{"key":"departments[]","value":"1"},{"key":"regions[]","value":"1"},{"key":"skills[]","value":"1"},{"key":"elects[]","value":"1"},{"key":"epcis[]","value":"1"},{"key":"bbox[]","value":null},{"key":"themes[]","value":"1"}],"variable":[]}},"response":[{"id":"7ab2a5e2-6cc6-45fa-9e82-bce02b3d4068","name":"Index projects","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"publidata.io/api/v1/portail-projets-gps/projects"},"code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"projects\": [\n        {\n            \"id\": 2,\n            \"name\": \"Projet de territoire\",\n            \"slug\": \"projet-de-territoire\",\n            \"start_date\": \"2016-05-01T00:00:00.000+02:00\",\n            \"end_date\": \"2017-12-31T00:00:00.000+01:00\",\n            \"cover_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/006/651/cover_small/bandeau-projet-territoire-grandparissud.jpg?1513613827\",\n                \"small_dimensions\": \"300x70\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/006/651/cover_medium/bandeau-projet-territoire-grandparissud.jpg?1513613827\",\n                \"medium_dimensions\": \"600x140\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/006/651/cover_large/bandeau-projet-territoire-grandparissud.jpg?1513613827\",\n                \"large_dimensions\": \"1000x233\",\n                \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/006/651/cover_xlarge/bandeau-projet-territoire-grandparissud.jpg?1513613827\",\n                \"xlarge_dimensions\": \"1596x372\",\n                \"alt\": \"image de couverture de Projet de territoire\",\n                \"name\": \"image de couverture de Projet de territoire\",\n                \"slug\": \"image-de-couverture-de-projet-de-territoire-9832a840-c61d-4102-9bbe-a81ee34914fb\",\n                \"description\": \"image de couverture de Projet de territoire\",\n                \"copyright\": \"agglomération Grand Paris Sud\"\n            },\n            \"pages\": [\n                {\n                    \"id\": 1321,\n                    \"instance\": {\n                        \"slug\": \"portail-projets-gps\"\n                    }\n                },\n                {\n                    \"id\": 8381,\n                    \"instance\": {\n                        \"slug\": \"portail-projets-gps\"\n                    }\n                }\n            ],\n            \"sub_projects\": [\n                {\n                    \"id\": 3,\n                    \"name\": \"Concertation élus communautaires \",\n                    \"slug\": \"concertation-elus-communautaires\",\n                    \"start_date\": \"2016-05-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2016-10-15T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/087/cover_small/seminaire-elus-grand-paris-sud%281%29samedi_12_mai.JPG?1473715424\",\n                        \"small_dimensions\": \"300x200\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/087/cover_medium/seminaire-elus-grand-paris-sud%281%29samedi_12_mai.JPG?1473715424\",\n                        \"medium_dimensions\": \"600x400\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/087/cover_large/seminaire-elus-grand-paris-sud%281%29samedi_12_mai.JPG?1473715424\",\n                        \"large_dimensions\": \"1000x667\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/087/cover_xlarge/seminaire-elus-grand-paris-sud%281%29samedi_12_mai.JPG?1473715424\",\n                        \"xlarge_dimensions\": \"1280x854\",\n                        \"alt\": \"image de couverture de Concertation élus communautaires \",\n                        \"name\": \"image de couverture de Concertation élus communautaires \",\n                        \"slug\": \"image-de-couverture-de-concertation-elus-communautaires\",\n                        \"description\": \"image de couverture de Concertation élus communautaires \",\n                        \"copyright\": \"agglomération Grand Paris Sud\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 1322,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 4,\n                    \"name\": \"Concertation élus municipaux\",\n                    \"slug\": \"concertation-elus-municipaux\",\n                    \"start_date\": \"2016-05-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2016-06-30T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/075/cover_small/seminaire-elus-municipaux-grand-paris-sud_%282%29.JPG?1473715036\",\n                        \"small_dimensions\": \"300x200\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/075/cover_medium/seminaire-elus-municipaux-grand-paris-sud_%282%29.JPG?1473715036\",\n                        \"medium_dimensions\": \"600x400\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/075/cover_large/seminaire-elus-municipaux-grand-paris-sud_%282%29.JPG?1473715036\",\n                        \"large_dimensions\": \"1000x666\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/075/cover_xlarge/seminaire-elus-municipaux-grand-paris-sud_%282%29.JPG?1473715036\",\n                        \"xlarge_dimensions\": \"1280x853\",\n                        \"alt\": \"image de couverture de Concertation élus municipaux\",\n                        \"name\": \"image de couverture de Concertation élus municipaux\",\n                        \"slug\": \"image-de-couverture-de-concertation-elus-municipaux\",\n                        \"description\": \"image de couverture de Concertation élus municipaux\",\n                        \"copyright\": \"agglomération Grand Paris Sud\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 1323,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 5,\n                    \"name\": \"Concertation partenaires et associations\",\n                    \"slug\": \"concertation-partenaires-et-associations\",\n                    \"start_date\": \"2016-06-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2016-09-30T00:00:00.000+02:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 1332,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 6,\n                    \"name\": \"Concertation agents\",\n                    \"slug\": \"concertation-agents\",\n                    \"start_date\": \"2016-07-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2016-08-31T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/057/cover_small/projet-territoire-grand-paris-sud-personnel_%282%29_jeudi_21_juillet.jpg?1473713810\",\n                        \"small_dimensions\": \"300x168\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/057/cover_medium/projet-territoire-grand-paris-sud-personnel_%282%29_jeudi_21_juillet.jpg?1473713810\",\n                        \"medium_dimensions\": \"600x336\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/057/cover_large/projet-territoire-grand-paris-sud-personnel_%282%29_jeudi_21_juillet.jpg?1473713810\",\n                        \"large_dimensions\": \"1000x560\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/057/cover_xlarge/projet-territoire-grand-paris-sud-personnel_%282%29_jeudi_21_juillet.jpg?1473713810\",\n                        \"xlarge_dimensions\": \"1280x717\",\n                        \"alt\": \"image de couverture de Concertation agents\",\n                        \"name\": \"image de couverture de Concertation agents\",\n                        \"slug\": \"image-de-couverture-de-concertation-agents\",\n                        \"description\": \"image de couverture de Concertation agents\",\n                        \"copyright\": \"agglomération Grand Paris Sud\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 1328,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 17,\n                    \"name\": \"Concertation CME et CJ\",\n                    \"slug\": \"concertation-cme-et-cj\",\n                    \"start_date\": \"2016-07-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2016-10-15T00:00:00.000+02:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 1408,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 7,\n                    \"name\": \"Concertation des habitants\",\n                    \"slug\": \"concertation-des-habitants\",\n                    \"start_date\": \"2016-09-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2016-11-15T00:00:00.000+01:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 1329,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 8,\n                    \"name\": \"Synthèse de la concertation\",\n                    \"slug\": \"synthese-de-la-concertation\",\n                    \"start_date\": \"2016-10-16T00:00:00.000+02:00\",\n                    \"end_date\": \"2017-03-30T00:00:00.000+02:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 1330,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 9,\n                    \"name\": \"Adoption du projet de territoire\",\n                    \"slug\": \"adoption-du-projet-de-territoire\",\n                    \"start_date\": \"2017-06-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2017-06-30T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/894/cover_small/adoption-projet-territoire-grandparissud.jpg?1474447897\",\n                        \"small_dimensions\": \"300x200\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/894/cover_medium/adoption-projet-territoire-grandparissud.jpg?1474447897\",\n                        \"medium_dimensions\": \"600x400\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/894/cover_large/adoption-projet-territoire-grandparissud.jpg?1474447897\",\n                        \"large_dimensions\": \"1000x667\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/894/cover_xlarge/adoption-projet-territoire-grandparissud.jpg?1474447897\",\n                        \"xlarge_dimensions\": \"2000x1333\",\n                        \"alt\": \"image de couverture de Adoption du projet de territoire\",\n                        \"name\": \"image de couverture de Adoption du projet de territoire\",\n                        \"slug\": \"image-de-couverture-de-adoption-du-projet-de-territoire\",\n                        \"description\": \"image de couverture de Adoption du projet de territoire\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 1331,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                }\n            ]\n        },\n        {\n            \"id\": 26,\n            \"name\": \"Tram 12 express / Requalification du Bois Briard\",\n            \"slug\": \"tram-12-express-requalification-du-bois-briard\",\n            \"start_date\": \"2015-04-01T00:00:00.000+02:00\",\n            \"end_date\": \"2020-06-30T00:00:00.000+02:00\",\n            \"cover_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/168/cover_small/Perspective-tram12.png?1487925596\",\n                \"small_dimensions\": \"300x178\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/168/cover_medium/Perspective-tram12.png?1487925596\",\n                \"medium_dimensions\": \"600x356\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/168/cover_large/Perspective-tram12.png?1487925596\",\n                \"large_dimensions\": \"1000x593\",\n                \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/168/cover_xlarge/Perspective-tram12.png?1487925596\",\n                \"xlarge_dimensions\": \"2000x1186\",\n                \"alt\": \"image de couverture de Tram 12 express / Requalification du Bois Briard\",\n                \"name\": \"image de couverture de Tram 12 express / Requalification du Bois Briard\",\n                \"slug\": \"image-de-couverture-de-tram-12-express-requalification-du-bois-briard\",\n                \"description\": \"image de couverture de Tram 12 express / Requalification du Bois Briard\",\n                \"copyright\": \"\"\n            },\n            \"pages\": [\n                {\n                    \"id\": 4030,\n                    \"instance\": {\n                        \"slug\": \"portail-projets-gps\"\n                    }\n                }\n            ],\n            \"sub_projects\": [\n                {\n                    \"id\": 27,\n                    \"name\": \"Concertation préalable requalification RD 446\",\n                    \"slug\": \"concertation-prealable-requalification-rd-446\",\n                    \"start_date\": \"2015-04-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2015-10-01T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/302/cover_small/Perspective-tram12.png?1488205439\",\n                        \"small_dimensions\": \"300x178\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/302/cover_medium/Perspective-tram12.png?1488205439\",\n                        \"medium_dimensions\": \"600x356\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/302/cover_large/Perspective-tram12.png?1488205439\",\n                        \"large_dimensions\": \"1000x593\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/302/cover_xlarge/Perspective-tram12.png?1488205439\",\n                        \"xlarge_dimensions\": \"2000x1186\",\n                        \"alt\": \"image de couverture de Concertation préalable requalification RD 446\",\n                        \"name\": \"image de couverture de Concertation préalable requalification RD 446\",\n                        \"slug\": \"image-de-couverture-de-concertation-prealable-requalification-rd-446\",\n                        \"description\": \"image de couverture de Concertation préalable requalification RD 446\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 4069,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 28,\n                    \"name\": \"Enquête publique\",\n                    \"slug\": \"enquete-publique\",\n                    \"start_date\": \"2016-02-01T00:00:00.000+01:00\",\n                    \"end_date\": \"2016-07-02T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/312/cover_small/Perspective-tram12.png?1488201990\",\n                        \"small_dimensions\": \"300x178\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/312/cover_medium/Perspective-tram12.png?1488201990\",\n                        \"medium_dimensions\": \"600x356\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/312/cover_large/Perspective-tram12.png?1488201990\",\n                        \"large_dimensions\": \"1000x593\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/312/cover_xlarge/Perspective-tram12.png?1488201990\",\n                        \"xlarge_dimensions\": \"2000x1186\",\n                        \"alt\": \"image de couverture de Enquête publique\",\n                        \"name\": \"image de couverture de Enquête publique\",\n                        \"slug\": \"image-de-couverture-de-enquete-publique\",\n                        \"description\": \"image de couverture de Enquête publique\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 4033,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 29,\n                    \"name\": \"Réunion publique \",\n                    \"slug\": \"reunion-publique\",\n                    \"start_date\": \"2016-11-29T00:00:00.000+01:00\",\n                    \"end_date\": \"2016-11-29T00:00:00.000+01:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/307/cover_small/ANL_5670.jpg?1488201053\",\n                        \"small_dimensions\": \"300x200\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/307/cover_medium/ANL_5670.jpg?1488201053\",\n                        \"medium_dimensions\": \"600x399\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/307/cover_large/ANL_5670.jpg?1488201053\",\n                        \"large_dimensions\": \"1000x666\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/307/cover_xlarge/ANL_5670.jpg?1488201053\",\n                        \"xlarge_dimensions\": \"2000x1331\",\n                        \"alt\": \"image de couverture de Réunion publique \",\n                        \"name\": \"image de couverture de Réunion publique \",\n                        \"slug\": \"image-de-couverture-de-reunion-publique\",\n                        \"description\": \"image de couverture de Réunion publique \",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 4036,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 30,\n                    \"name\": \"Travaux de déboisage \",\n                    \"slug\": \"travaux-de-deboisage\",\n                    \"start_date\": \"2017-02-27T00:00:00.000+01:00\",\n                    \"end_date\": \"2017-03-05T00:00:00.000+01:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/303/cover_small/N.446_DSC3739.jpg?1488200468\",\n                        \"small_dimensions\": \"300x200\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/303/cover_medium/N.446_DSC3739.jpg?1488200468\",\n                        \"medium_dimensions\": \"600x400\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/303/cover_large/N.446_DSC3739.jpg?1488200468\",\n                        \"large_dimensions\": \"1000x667\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/303/cover_xlarge/N.446_DSC3739.jpg?1488200468\",\n                        \"xlarge_dimensions\": \"2000x1335\",\n                        \"alt\": \"image de couverture de Travaux de déboisage \",\n                        \"name\": \"image de couverture de Travaux de déboisage \",\n                        \"slug\": \"image-de-couverture-de-travaux-de-deboisage\",\n                        \"description\": \"image de couverture de Travaux de déboisage \",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 4039,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 31,\n                    \"name\": \"Travaux préparatoires\",\n                    \"slug\": \"travaux-preparatoires\",\n                    \"start_date\": \"2017-03-06T00:00:00.000+01:00\",\n                    \"end_date\": \"2017-03-12T00:00:00.000+01:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/308/cover_small/Am%C3%A9nagement_du_secteur_Delouvrier.png?1488201549\",\n                        \"small_dimensions\": \"300x159\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/308/cover_medium/Am%C3%A9nagement_du_secteur_Delouvrier.png?1488201549\",\n                        \"medium_dimensions\": \"600x318\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/308/cover_large/Am%C3%A9nagement_du_secteur_Delouvrier.png?1488201549\",\n                        \"large_dimensions\": \"1000x529\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/308/cover_xlarge/Am%C3%A9nagement_du_secteur_Delouvrier.png?1488201549\",\n                        \"xlarge_dimensions\": \"2000x1059\",\n                        \"alt\": \"image de couverture de Travaux préparatoires\",\n                        \"name\": \"image de couverture de Travaux préparatoires\",\n                        \"slug\": \"image-de-couverture-de-travaux-preparatoires\",\n                        \"description\": \"image de couverture de Travaux préparatoires\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 4042,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 32,\n                    \"name\": \"Fermeture de l’échangeur Delouvrier\",\n                    \"slug\": \"fermeture-de-l-echangeur-delouvrier\",\n                    \"start_date\": \"2017-03-21T00:00:00.000+01:00\",\n                    \"end_date\": \"2018-06-30T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/299/cover_small/Perspective-_-carrefour_-Delouvrier.jpg?1488199631\",\n                        \"small_dimensions\": \"300x169\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/299/cover_medium/Perspective-_-carrefour_-Delouvrier.jpg?1488199631\",\n                        \"medium_dimensions\": \"600x338\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/299/cover_large/Perspective-_-carrefour_-Delouvrier.jpg?1488199631\",\n                        \"large_dimensions\": \"1000x563\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/299/cover_xlarge/Perspective-_-carrefour_-Delouvrier.jpg?1488199631\",\n                        \"xlarge_dimensions\": \"1210x681\",\n                        \"alt\": \"image de couverture de Fermeture de l’échangeur Delouvrier\",\n                        \"name\": \"image de couverture de Fermeture de l’échangeur Delouvrier\",\n                        \"slug\": \"image-de-couverture-de-fermeture-de-l-echangeur-delouvrier\",\n                        \"description\": \"image de couverture de Fermeture de l’échangeur Delouvrier\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 4026,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 33,\n                    \"name\": \"Requalification de la RD 446\",\n                    \"slug\": \"requalification-de-la-rd-446\",\n                    \"start_date\": \"2017-03-13T00:00:00.000+01:00\",\n                    \"end_date\": \"2018-08-31T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/304/cover_small/carte-travaux-delouvrier-grandparissud.PNG?1490690689\",\n                        \"small_dimensions\": \"300x159\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/304/cover_medium/carte-travaux-delouvrier-grandparissud.PNG?1490690689\",\n                        \"medium_dimensions\": \"600x317\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/304/cover_large/carte-travaux-delouvrier-grandparissud.PNG?1490690689\",\n                        \"large_dimensions\": \"1000x529\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/304/cover_xlarge/carte-travaux-delouvrier-grandparissud.PNG?1490690689\",\n                        \"xlarge_dimensions\": \"1190x629\",\n                        \"alt\": \"image de couverture de Requalification de la RD 446\",\n                        \"name\": \"image de couverture de Requalification de la RD 446\",\n                        \"slug\": \"image-de-couverture-de-requalification-de-la-rd-446\",\n                        \"description\": \"image de couverture de Requalification de la RD 446\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 4045,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 34,\n                    \"name\": \"Début des travaux Tram 12 express\",\n                    \"slug\": \"debut-des-travaux-tram-12-express\",\n                    \"start_date\": \"2018-01-03T00:00:00.000+01:00\",\n                    \"end_date\": \"2018-07-01T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/298/cover_small/Perspective-Evry.png?1488199442\",\n                        \"small_dimensions\": \"300x178\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/298/cover_medium/Perspective-Evry.png?1488199442\",\n                        \"medium_dimensions\": \"600x356\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/298/cover_large/Perspective-Evry.png?1488199442\",\n                        \"large_dimensions\": \"1000x593\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/298/cover_xlarge/Perspective-Evry.png?1488199442\",\n                        \"xlarge_dimensions\": \"1999x1186\",\n                        \"alt\": \"image de couverture de Début des travaux Tram 12 express\",\n                        \"name\": \"image de couverture de Début des travaux Tram 12 express\",\n                        \"slug\": \"image-de-couverture-de-debut-des-travaux-tram-12-express\",\n                        \"description\": \"image de couverture de Début des travaux Tram 12 express\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 4048,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 35,\n                    \"name\": \"Ouverture boulevard urbain\",\n                    \"slug\": \"ouverture-boulevard-urbain\",\n                    \"start_date\": \"2018-07-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2019-06-30T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/305/cover_small/Perspective-Evry.png?1488200796\",\n                        \"small_dimensions\": \"300x178\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/305/cover_medium/Perspective-Evry.png?1488200796\",\n                        \"medium_dimensions\": \"600x356\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/305/cover_large/Perspective-Evry.png?1488200796\",\n                        \"large_dimensions\": \"1000x593\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/305/cover_xlarge/Perspective-Evry.png?1488200796\",\n                        \"xlarge_dimensions\": \"1999x1186\",\n                        \"alt\": \"image de couverture de Ouverture boulevard urbain\",\n                        \"name\": \"image de couverture de Ouverture boulevard urbain\",\n                        \"slug\": \"image-de-couverture-de-ouverture-boulevard-urbain\",\n                        \"description\": \"image de couverture de Ouverture boulevard urbain\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 4051,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 36,\n                    \"name\": \"Fin des travaux d'aménagement\",\n                    \"slug\": \"fin-des-travaux-d-amenagement\",\n                    \"start_date\": \"2019-07-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2020-06-30T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/306/cover_small/Perspective-tram12.png?1488200844\",\n                        \"small_dimensions\": \"300x178\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/306/cover_medium/Perspective-tram12.png?1488200844\",\n                        \"medium_dimensions\": \"600x356\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/306/cover_large/Perspective-tram12.png?1488200844\",\n                        \"large_dimensions\": \"1000x593\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/306/cover_xlarge/Perspective-tram12.png?1488200844\",\n                        \"xlarge_dimensions\": \"2000x1186\",\n                        \"alt\": \"image de couverture de Fin des travaux d'aménagement\",\n                        \"name\": \"image de couverture de Fin des travaux d'aménagement\",\n                        \"slug\": \"image-de-couverture-de-fin-des-travaux-d-amenagement\",\n                        \"description\": \"image de couverture de Fin des travaux d'aménagement\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 4054,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                }\n            ]\n        },\n        {\n            \"id\": 41,\n            \"name\": \"T Zen 4 \",\n            \"slug\": \"t-zen-4\",\n            \"start_date\": \"2016-05-30T00:00:00.000+02:00\",\n            \"end_date\": \"2020-12-31T00:00:00.000+01:00\",\n            \"cover_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/547/cover_small/1-voies-reservees_priorite-aux-feux.jpg?1488460827\",\n                \"small_dimensions\": \"300x168\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/547/cover_medium/1-voies-reservees_priorite-aux-feux.jpg?1488460827\",\n                \"medium_dimensions\": \"600x337\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/547/cover_large/1-voies-reservees_priorite-aux-feux.jpg?1488460827\",\n                \"large_dimensions\": \"900x505\",\n                \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/547/cover_xlarge/1-voies-reservees_priorite-aux-feux.jpg?1488460827\",\n                \"xlarge_dimensions\": \"900x505\",\n                \"alt\": \"image de couverture de T Zen 4 \",\n                \"name\": \"image de couverture de T Zen 4 \",\n                \"slug\": \"image-de-couverture-de-t-zen-4\",\n                \"description\": \"image de couverture de T Zen 4 \",\n                \"copyright\": \"\"\n            },\n            \"pages\": [\n                {\n                    \"id\": 4163,\n                    \"instance\": {\n                        \"slug\": \"portail-projets-gps\"\n                    }\n                }\n            ],\n            \"sub_projects\": [\n                {\n                    \"id\": 42,\n                    \"name\": \"Enquête publique\",\n                    \"slug\": \"enquete-publique-ae33dafd-8be2-48ec-a581-d325aeb364bf\",\n                    \"start_date\": \"2016-05-30T00:00:00.000+02:00\",\n                    \"end_date\": \"2016-07-04T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/558/cover_small/3-station-confortable-accessible.jpg?1488468928\",\n                        \"small_dimensions\": \"300x169\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/558/cover_medium/3-station-confortable-accessible.jpg?1488468928\",\n                        \"medium_dimensions\": \"600x337\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/558/cover_large/3-station-confortable-accessible.jpg?1488468928\",\n                        \"large_dimensions\": \"900x506\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/558/cover_xlarge/3-station-confortable-accessible.jpg?1488468928\",\n                        \"xlarge_dimensions\": \"900x506\",\n                        \"alt\": \"image de couverture de Enquête publique\",\n                        \"name\": \"image de couverture de Enquête publique\",\n                        \"slug\": \"image-de-couverture-de-enquete-publique-2e821b44-25e0-41c6-959e-db1384f855d6\",\n                        \"description\": \"image de couverture de Enquête publique\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 4166,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 43,\n                    \"name\": \"Déclaration de projet et d'utilité publique\",\n                    \"slug\": \"declaration-de-projet-et-d-utilite-publique-5ecff84d-872d-4a15-81ed-d3d70b388e4c\",\n                    \"start_date\": \"2016-10-05T00:00:00.000+02:00\",\n                    \"end_date\": \"2016-12-08T00:00:00.000+01:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/559/cover_small/1-voies-reservees_priorite-aux-feux.jpg?1488468962\",\n                        \"small_dimensions\": \"300x168\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/559/cover_medium/1-voies-reservees_priorite-aux-feux.jpg?1488468962\",\n                        \"medium_dimensions\": \"600x337\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/559/cover_large/1-voies-reservees_priorite-aux-feux.jpg?1488468962\",\n                        \"large_dimensions\": \"900x505\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/559/cover_xlarge/1-voies-reservees_priorite-aux-feux.jpg?1488468962\",\n                        \"xlarge_dimensions\": \"900x505\",\n                        \"alt\": \"image de couverture de Déclaration de projet et d'utilité publique\",\n                        \"name\": \"image de couverture de Déclaration de projet et d'utilité publique\",\n                        \"slug\": \"image-de-couverture-de-declaration-de-projet-et-d-utilite-publique-39c7aac9-83f4-4c8b-95e4-c74564bfddfd\",\n                        \"description\": \"image de couverture de Déclaration de projet et d'utilité publique\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 4169,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 44,\n                    \"name\": \"Début des travaux\",\n                    \"slug\": \"debut-des-travaux\",\n                    \"start_date\": \"2019-01-01T00:00:00.000+01:00\",\n                    \"end_date\": \"2019-12-31T00:00:00.000+01:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/560/cover_small/3-station-confortable-accessible.jpg?1488469031\",\n                        \"small_dimensions\": \"300x169\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/560/cover_medium/3-station-confortable-accessible.jpg?1488469031\",\n                        \"medium_dimensions\": \"600x337\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/560/cover_large/3-station-confortable-accessible.jpg?1488469031\",\n                        \"large_dimensions\": \"900x506\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/560/cover_xlarge/3-station-confortable-accessible.jpg?1488469031\",\n                        \"xlarge_dimensions\": \"900x506\",\n                        \"alt\": \"image de couverture de Début des travaux\",\n                        \"name\": \"image de couverture de Début des travaux\",\n                        \"slug\": \"image-de-couverture-de-debut-des-travaux\",\n                        \"description\": \"image de couverture de Début des travaux\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 4172,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 45,\n                    \"name\": \"Mise en service du T Zen 4\",\n                    \"slug\": \"mise-en-service-du-t-zen-4\",\n                    \"start_date\": \"2020-01-01T00:00:00.000+01:00\",\n                    \"end_date\": \"2020-12-31T00:00:00.000+01:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/561/cover_small/1-voies-reservees_priorite-aux-feux.jpg?1488469076\",\n                        \"small_dimensions\": \"300x168\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/561/cover_medium/1-voies-reservees_priorite-aux-feux.jpg?1488469076\",\n                        \"medium_dimensions\": \"600x337\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/561/cover_large/1-voies-reservees_priorite-aux-feux.jpg?1488469076\",\n                        \"large_dimensions\": \"900x505\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/561/cover_xlarge/1-voies-reservees_priorite-aux-feux.jpg?1488469076\",\n                        \"xlarge_dimensions\": \"900x505\",\n                        \"alt\": \"image de couverture de Mise en service du T Zen 4\",\n                        \"name\": \"image de couverture de Mise en service du T Zen 4\",\n                        \"slug\": \"image-de-couverture-de-mise-en-service-du-t-zen-4\",\n                        \"description\": \"image de couverture de Mise en service du T Zen 4\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 4175,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                }\n            ]\n        },\n        {\n            \"id\": 18,\n            \"name\": \"T Zen 2\",\n            \"slug\": \"t-zen-2\",\n            \"start_date\": \"2013-09-01T00:00:00.000+02:00\",\n            \"end_date\": \"2024-12-31T00:00:00.000+01:00\",\n            \"cover_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/014/520/cover_small/3-station-confortable-accessible.jpg?1486132133\",\n                \"small_dimensions\": \"300x169\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/014/520/cover_medium/3-station-confortable-accessible.jpg?1486132133\",\n                \"medium_dimensions\": \"600x337\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/014/520/cover_large/3-station-confortable-accessible.jpg?1486132133\",\n                \"large_dimensions\": \"900x506\",\n                \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/014/520/cover_xlarge/3-station-confortable-accessible.jpg?1486132133\",\n                \"xlarge_dimensions\": \"900x506\",\n                \"alt\": \"image de couverture de T Zen 2\",\n                \"name\": \"image de couverture de T Zen 2\",\n                \"slug\": \"image-de-couverture-de-t-zen-2\",\n                \"description\": \"image de couverture de T Zen 2\",\n                \"copyright\": \"\"\n            },\n            \"pages\": [\n                {\n                    \"id\": 2184,\n                    \"instance\": {\n                        \"slug\": \"portail-projets-gps\"\n                    }\n                }\n            ],\n            \"sub_projects\": [\n                {\n                    \"id\": 19,\n                    \"name\": \"Enquête publique\",\n                    \"slug\": \"enquete-publique-932eaf28-3be9-4ccb-a2b0-c8e8cd9cce8b\",\n                    \"start_date\": \"2013-09-23T00:00:00.000+02:00\",\n                    \"end_date\": \"2013-10-26T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/551/cover_small/1-voies-reservees_priorite-aux-feux.jpg?1488468068\",\n                        \"small_dimensions\": \"300x168\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/551/cover_medium/1-voies-reservees_priorite-aux-feux.jpg?1488468068\",\n                        \"medium_dimensions\": \"600x337\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/551/cover_large/1-voies-reservees_priorite-aux-feux.jpg?1488468068\",\n                        \"large_dimensions\": \"900x505\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/551/cover_xlarge/1-voies-reservees_priorite-aux-feux.jpg?1488468068\",\n                        \"xlarge_dimensions\": \"900x505\",\n                        \"alt\": \"image de couverture de Enquête publique\",\n                        \"name\": \"image de couverture de Enquête publique\",\n                        \"slug\": \"image-de-couverture-de-enquete-publique-acc85490-4756-4182-a689-c9119e63e7fe\",\n                        \"description\": \"image de couverture de Enquête publique\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 2187,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 20,\n                    \"name\": \"Déclaration de projet et d'utilité publique\",\n                    \"slug\": \"declaration-de-projet-et-d-utilite-publique\",\n                    \"start_date\": \"2014-06-27T00:00:00.000+02:00\",\n                    \"end_date\": \"2014-07-30T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/552/cover_small/3-station-confortable-accessible.jpg?1488468105\",\n                        \"small_dimensions\": \"300x169\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/552/cover_medium/3-station-confortable-accessible.jpg?1488468105\",\n                        \"medium_dimensions\": \"600x337\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/552/cover_large/3-station-confortable-accessible.jpg?1488468105\",\n                        \"large_dimensions\": \"900x506\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/552/cover_xlarge/3-station-confortable-accessible.jpg?1488468105\",\n                        \"xlarge_dimensions\": \"900x506\",\n                        \"alt\": \"image de couverture de Déclaration de projet et d'utilité publique\",\n                        \"name\": \"image de couverture de Déclaration de projet et d'utilité publique\",\n                        \"slug\": \"image-de-couverture-de-declaration-de-projet-et-d-utilite-publique\",\n                        \"description\": \"image de couverture de Déclaration de projet et d'utilité publique\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 2237,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 21,\n                    \"name\": \"Études approfondies et avant-projet\",\n                    \"slug\": \"etudes-approfondies-et-avant-projet\",\n                    \"start_date\": \"2014-08-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2017-03-31T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/553/cover_small/1-voies-reservees_priorite-aux-feux.jpg?1488468141\",\n                        \"small_dimensions\": \"300x168\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/553/cover_medium/1-voies-reservees_priorite-aux-feux.jpg?1488468141\",\n                        \"medium_dimensions\": \"600x337\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/553/cover_large/1-voies-reservees_priorite-aux-feux.jpg?1488468141\",\n                        \"large_dimensions\": \"900x505\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/553/cover_xlarge/1-voies-reservees_priorite-aux-feux.jpg?1488468141\",\n                        \"xlarge_dimensions\": \"900x505\",\n                        \"alt\": \"image de couverture de Études approfondies et avant-projet\",\n                        \"name\": \"image de couverture de Études approfondies et avant-projet\",\n                        \"slug\": \"image-de-couverture-de-etudes-approfondies-et-avant-projet\",\n                        \"description\": \"image de couverture de Études approfondies et avant-projet\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 2236,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 22,\n                    \"name\": \"Travaux d'aménagement\",\n                    \"slug\": \"travaux-d-amenagement\",\n                    \"start_date\": \"2016-10-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2017-05-30T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/554/cover_small/3-station-confortable-accessible.jpg?1488468430\",\n                        \"small_dimensions\": \"300x169\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/554/cover_medium/3-station-confortable-accessible.jpg?1488468430\",\n                        \"medium_dimensions\": \"600x337\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/554/cover_large/3-station-confortable-accessible.jpg?1488468430\",\n                        \"large_dimensions\": \"900x506\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/554/cover_xlarge/3-station-confortable-accessible.jpg?1488468430\",\n                        \"xlarge_dimensions\": \"900x506\",\n                        \"alt\": \"image de couverture de Travaux d'aménagement\",\n                        \"name\": \"image de couverture de Travaux d'aménagement\",\n                        \"slug\": \"image-de-couverture-de-travaux-d-amenagement\",\n                        \"description\": \"image de couverture de Travaux d'aménagement\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 2235,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 23,\n                    \"name\": \"Début prévisonnel des travaux\",\n                    \"slug\": \"debut-previsonnel-des-travaux\",\n                    \"start_date\": \"2017-07-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2018-06-30T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/555/cover_small/1-voies-reservees_priorite-aux-feux.jpg?1488468382\",\n                        \"small_dimensions\": \"300x168\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/555/cover_medium/1-voies-reservees_priorite-aux-feux.jpg?1488468382\",\n                        \"medium_dimensions\": \"600x337\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/555/cover_large/1-voies-reservees_priorite-aux-feux.jpg?1488468382\",\n                        \"large_dimensions\": \"900x505\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/555/cover_xlarge/1-voies-reservees_priorite-aux-feux.jpg?1488468382\",\n                        \"xlarge_dimensions\": \"900x505\",\n                        \"alt\": \"image de couverture de Début prévisonnel des travaux\",\n                        \"name\": \"image de couverture de Début prévisonnel des travaux\",\n                        \"slug\": \"image-de-couverture-de-debut-previsonnel-des-travaux\",\n                        \"description\": \"image de couverture de Début prévisonnel des travaux\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 2234,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 24,\n                    \"name\": \"Travaux et création des stations\",\n                    \"slug\": \"travaux-et-creation-des-stations\",\n                    \"start_date\": \"2018-01-01T00:00:00.000+01:00\",\n                    \"end_date\": \"2023-12-31T00:00:00.000+01:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/556/cover_small/3-station-confortable-accessible.jpg?1488468607\",\n                        \"small_dimensions\": \"300x169\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/556/cover_medium/3-station-confortable-accessible.jpg?1488468607\",\n                        \"medium_dimensions\": \"600x337\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/556/cover_large/3-station-confortable-accessible.jpg?1488468607\",\n                        \"large_dimensions\": \"900x506\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/556/cover_xlarge/3-station-confortable-accessible.jpg?1488468607\",\n                        \"xlarge_dimensions\": \"900x506\",\n                        \"alt\": \"image de couverture de Travaux et création des stations\",\n                        \"name\": \"image de couverture de Travaux et création des stations\",\n                        \"slug\": \"image-de-couverture-de-travaux-et-creation-des-stations\",\n                        \"description\": \"image de couverture de Travaux et création des stations\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 2233,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 25,\n                    \"name\": \"Mise en service du T Zen 2 \",\n                    \"slug\": \"mise-en-service-du-t-zen-2\",\n                    \"start_date\": \"2024-07-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2024-12-31T00:00:00.000+01:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/557/cover_small/1-voies-reservees_priorite-aux-feux.jpg?1488468656\",\n                        \"small_dimensions\": \"300x168\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/557/cover_medium/1-voies-reservees_priorite-aux-feux.jpg?1488468656\",\n                        \"medium_dimensions\": \"600x337\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/557/cover_large/1-voies-reservees_priorite-aux-feux.jpg?1488468656\",\n                        \"large_dimensions\": \"900x505\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/557/cover_xlarge/1-voies-reservees_priorite-aux-feux.jpg?1488468656\",\n                        \"xlarge_dimensions\": \"900x505\",\n                        \"alt\": \"image de couverture de Mise en service du T Zen 2 \",\n                        \"name\": \"image de couverture de Mise en service du T Zen 2 \",\n                        \"slug\": \"image-de-couverture-de-mise-en-service-du-t-zen-2\",\n                        \"description\": \"image de couverture de Mise en service du T Zen 2 \",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 2232,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                }\n            ]\n        },\n        {\n            \"id\": 48,\n            \"name\": \"L'Agora se métamorphose \",\n            \"slug\": \"l-agora-se-metamorphose\",\n            \"start_date\": \"2017-09-01T00:00:00.000+02:00\",\n            \"end_date\": \"2020-12-01T00:00:00.000+01:00\",\n            \"cover_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/489/cover_small/Dossier-Graphique_EVRY_02-10.jpg?1506422665\",\n                \"small_dimensions\": \"300x147\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/489/cover_medium/Dossier-Graphique_EVRY_02-10.jpg?1506422665\",\n                \"medium_dimensions\": \"600x293\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/489/cover_large/Dossier-Graphique_EVRY_02-10.jpg?1506422665\",\n                \"large_dimensions\": \"1000x489\",\n                \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/489/cover_xlarge/Dossier-Graphique_EVRY_02-10.jpg?1506422665\",\n                \"xlarge_dimensions\": \"1854x906\",\n                \"alt\": \"image de couverture de L'Agora se métamorphose \",\n                \"name\": \"image de couverture de L'Agora se métamorphose \",\n                \"slug\": null,\n                \"description\": \"image de couverture de L'Agora se métamorphose \",\n                \"copyright\": \"\"\n            },\n            \"pages\": [\n                {\n                    \"id\": 7560,\n                    \"instance\": {\n                        \"slug\": \"portail-projets-gps\"\n                    }\n                }\n            ],\n            \"sub_projects\": [\n                {\n                    \"id\": 49,\n                    \"name\": \"Démolition du Crédit foncier \",\n                    \"slug\": \"demolition-du-credit-foncier\",\n                    \"start_date\": \"2017-09-15T00:00:00.000+02:00\",\n                    \"end_date\": \"2018-01-30T00:00:00.000+01:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 7563,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 50,\n                    \"name\": \"Espace restauration\",\n                    \"slug\": \"espace-restauration\",\n                    \"start_date\": \"2018-01-01T00:00:00.000+01:00\",\n                    \"end_date\": \"2019-05-01T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/751/cover_small/food_court.jpg?1507107617\",\n                        \"small_dimensions\": \"300x200\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/751/cover_medium/food_court.jpg?1507107617\",\n                        \"medium_dimensions\": \"600x400\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/751/cover_large/food_court.jpg?1507107617\",\n                        \"large_dimensions\": \"1000x667\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/751/cover_xlarge/food_court.jpg?1507107617\",\n                        \"xlarge_dimensions\": \"2000x1333\",\n                        \"alt\": \"image de couverture de Espace restauration\",\n                        \"name\": \"image de couverture de Espace restauration\",\n                        \"slug\": null,\n                        \"description\": \"image de couverture de Espace restauration\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 7735,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 51,\n                    \"name\": \"Place de l'Agora \",\n                    \"slug\": \"place-de-l-agora\",\n                    \"start_date\": \"2018-01-01T00:00:00.000+01:00\",\n                    \"end_date\": \"2018-12-31T00:00:00.000+01:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 7738,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 52,\n                    \"name\": \"Les Arènes\",\n                    \"slug\": \"les-arenes\",\n                    \"start_date\": \"2018-06-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2020-06-01T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/846/cover_small/int%C3%A9rieur_ar%C3%A8nes.JPG?1507300602\",\n                        \"small_dimensions\": \"300x167\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/846/cover_medium/int%C3%A9rieur_ar%C3%A8nes.JPG?1507300602\",\n                        \"medium_dimensions\": \"600x335\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/846/cover_large/int%C3%A9rieur_ar%C3%A8nes.JPG?1507300602\",\n                        \"large_dimensions\": \"956x533\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/846/cover_xlarge/int%C3%A9rieur_ar%C3%A8nes.JPG?1507300602\",\n                        \"xlarge_dimensions\": \"956x533\",\n                        \"alt\": \"image de couverture de Les Arènes\",\n                        \"name\": \"image de couverture de Les Arènes\",\n                        \"slug\": null,\n                        \"description\": \"image de couverture de Les Arènes\",\n                        \"copyright\": \"DVVD/Labtop\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 7741,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 53,\n                    \"name\": \"Place des Terrasses\",\n                    \"slug\": \"place-des-terrasses\",\n                    \"start_date\": \"2019-01-01T00:00:00.000+01:00\",\n                    \"end_date\": \"2020-01-01T00:00:00.000+01:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/757/cover_small/une_dossier_centres_commerciaux.jpg?1507119253\",\n                        \"small_dimensions\": \"233x300\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/757/cover_medium/une_dossier_centres_commerciaux.jpg?1507119253\",\n                        \"medium_dimensions\": \"466x600\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/757/cover_large/une_dossier_centres_commerciaux.jpg?1507119253\",\n                        \"large_dimensions\": \"777x1000\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/757/cover_xlarge/une_dossier_centres_commerciaux.jpg?1507119253\",\n                        \"xlarge_dimensions\": \"993x1278\",\n                        \"alt\": \"image de couverture de Place des Terrasses\",\n                        \"name\": \"image de couverture de Place des Terrasses\",\n                        \"slug\": null,\n                        \"description\": \"image de couverture de Place des Terrasses\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 7744,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                }\n            ]\n        },\n        {\n            \"id\": 46,\n            \"name\": \"Gare TGV\",\n            \"slug\": \"gare-tgv\",\n            \"start_date\": \"2012-01-01T00:00:00.000+01:00\",\n            \"end_date\": \"2030-12-31T00:00:00.000+01:00\",\n            \"cover_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/548/cover_small/gare-moissy-tgv.jpg?1488450325\",\n                \"small_dimensions\": \"300x200\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/548/cover_medium/gare-moissy-tgv.jpg?1488450325\",\n                \"medium_dimensions\": \"600x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/548/cover_large/gare-moissy-tgv.jpg?1488450325\",\n                \"large_dimensions\": \"1000x667\",\n                \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/548/cover_xlarge/gare-moissy-tgv.jpg?1488450325\",\n                \"xlarge_dimensions\": \"2000x1335\",\n                \"alt\": \"image de couverture de Gare TGV\",\n                \"name\": \"image de couverture de Gare TGV\",\n                \"slug\": \"image-de-couverture-de-gare-tgv-d0e33b0d-e356-4151-a846-c642e5e092a2\",\n                \"description\": \"image de couverture de Gare TGV\",\n                \"copyright\": \"\"\n            },\n            \"pages\": [\n                {\n                    \"id\": 4178,\n                    \"instance\": {\n                        \"slug\": \"portail-projets-gps\"\n                    }\n                }\n            ],\n            \"sub_projects\": []\n        },\n        {\n            \"id\": 63,\n            \"name\": \"Création de bassins de rétention à Ris-Orangis\",\n            \"slug\": \"creation-de-bassins-de-retention-a-ris-orangis\",\n            \"start_date\": \"2018-01-22T00:00:00.000+01:00\",\n            \"end_date\": \"2019-05-20T00:00:00.000+02:00\",\n            \"cover_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/526/cover_small/Bassin_Issy_les_moulineaux.JPG?1515765425\",\n                \"small_dimensions\": \"300x146\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/526/cover_medium/Bassin_Issy_les_moulineaux.JPG?1515765425\",\n                \"medium_dimensions\": \"600x292\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/526/cover_large/Bassin_Issy_les_moulineaux.JPG?1515765425\",\n                \"large_dimensions\": \"1000x487\",\n                \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/526/cover_xlarge/Bassin_Issy_les_moulineaux.JPG?1515765425\",\n                \"xlarge_dimensions\": \"2000x973\",\n                \"alt\": \"image de couverture de Création de bassins de rétention à Ris-Orangis\",\n                \"name\": \"image de couverture de Création de bassins de rétention à Ris-Orangis\",\n                \"slug\": null,\n                \"description\": \"image de couverture de Création de bassins de rétention à Ris-Orangis\",\n                \"copyright\": \"Grabd Paris Sud \"\n            },\n            \"pages\": [\n                {\n                    \"id\": 8540,\n                    \"instance\": {\n                        \"slug\": \"portail-projets-gps\"\n                    }\n                }\n            ],\n            \"sub_projects\": [\n                {\n                    \"id\": 64,\n                    \"name\": \"Création du bassin sous le stade Émile-Gagneux\",\n                    \"slug\": \"creation-du-bassin-sous-le-stade-emile-gagneux\",\n                    \"start_date\": \"2018-01-22T00:00:00.000+01:00\",\n                    \"end_date\": \"2019-05-30T00:00:00.000+02:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 8844,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 65,\n                    \"name\": \"Création d'un collecteur (canalisation) \",\n                    \"slug\": \"creation-d-un-collecteur-canalisation\",\n                    \"start_date\": \"2018-05-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2019-03-30T00:00:00.000+01:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 8838,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 66,\n                    \"name\": \"Création second bassin de stockage / restitution\",\n                    \"slug\": \"creation-second-bassin-de-stockage-restitution\",\n                    \"start_date\": \"2018-03-01T00:00:00.000+01:00\",\n                    \"end_date\": \"2019-01-31T00:00:00.000+01:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 8841,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 67,\n                    \"name\": \"Création station anti-crue de Seine\",\n                    \"slug\": \"creation-station-anti-crue-de-seine\",\n                    \"start_date\": \"2018-01-29T00:00:00.000+01:00\",\n                    \"end_date\": \"2018-06-30T00:00:00.000+02:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 8835,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                }\n            ]\n        },\n        {\n            \"id\": 54,\n            \"name\": \"Chauffage urbain \",\n            \"slug\": \"chauffage-urbain\",\n            \"start_date\": \"2017-07-01T00:00:00.000+02:00\",\n            \"end_date\": \"2018-12-31T00:00:00.000+01:00\",\n            \"cover_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/891/cover_small/vert_le_grand.jpg?1507645372\",\n                \"small_dimensions\": \"300x236\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/891/cover_medium/vert_le_grand.jpg?1507645372\",\n                \"medium_dimensions\": \"300x236\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/891/cover_large/vert_le_grand.jpg?1507645372\",\n                \"large_dimensions\": \"300x236\",\n                \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/891/cover_xlarge/vert_le_grand.jpg?1507645372\",\n                \"xlarge_dimensions\": \"300x236\",\n                \"alt\": \"image de couverture de Chauffage urbain \",\n                \"name\": \"image de couverture de Chauffage urbain \",\n                \"slug\": null,\n                \"description\": \"image de couverture de Chauffage urbain \",\n                \"copyright\": \"\"\n            },\n            \"pages\": [\n                {\n                    \"id\": 7816,\n                    \"instance\": {\n                        \"slug\": \"portail-projets-gps\"\n                    }\n                }\n            ],\n            \"sub_projects\": [\n                {\n                    \"id\": 56,\n                    \"name\": \"Modernisation et sécurisation du réseau \",\n                    \"slug\": \"modernisation-et-securisation-du-reseau\",\n                    \"start_date\": \"2017-07-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2018-10-01T00:00:00.000+02:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 7825,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 55,\n                    \"name\": \"Création d'un réseau d'interconnexion\",\n                    \"slug\": \"creation-d-un-reseau-d-interconnexion\",\n                    \"start_date\": \"2017-07-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2017-12-31T00:00:00.000+01:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/936/cover_small/travaux_chauffage_urbain_GPS-11-10-2017_DSC2562.jpg?1507883027\",\n                        \"small_dimensions\": \"300x200\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/936/cover_medium/travaux_chauffage_urbain_GPS-11-10-2017_DSC2562.jpg?1507883027\",\n                        \"medium_dimensions\": \"600x401\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/936/cover_large/travaux_chauffage_urbain_GPS-11-10-2017_DSC2562.jpg?1507883027\",\n                        \"large_dimensions\": \"1000x668\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/936/cover_xlarge/travaux_chauffage_urbain_GPS-11-10-2017_DSC2562.jpg?1507883027\",\n                        \"xlarge_dimensions\": \"2000x1335\",\n                        \"alt\": \"image de couverture de Création d'un réseau d'interconnexion\",\n                        \"name\": \"image de couverture de Création d'un réseau d'interconnexion\",\n                        \"slug\": null,\n                        \"description\": \"image de couverture de Création d'un réseau d'interconnexion\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 7819,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 57,\n                    \"name\": \"Installation d'un système de télégestion \",\n                    \"slug\": \"installation-d-un-systeme-de-telegestion\",\n                    \"start_date\": \"2017-07-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2018-12-31T00:00:00.000+01:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 7828,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                }\n            ]\n        },\n        {\n            \"id\": 58,\n            \"name\": \"Rue des Lumières\",\n            \"slug\": \"rue-des-lumieres\",\n            \"start_date\": \"2017-09-01T00:00:00.000+02:00\",\n            \"end_date\": \"2019-12-01T00:00:00.000+01:00\",\n            \"cover_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/023/652/cover_small/ecran-horizontal.jpg?1511120784\",\n                \"small_dimensions\": \"300x169\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/023/652/cover_medium/ecran-horizontal.jpg?1511120784\",\n                \"medium_dimensions\": \"600x338\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/023/652/cover_large/ecran-horizontal.jpg?1511120784\",\n                \"large_dimensions\": \"1000x563\",\n                \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/023/652/cover_xlarge/ecran-horizontal.jpg?1511120784\",\n                \"xlarge_dimensions\": \"1920x1080\",\n                \"alt\": \"image de couverture de Rue des Lumières\",\n                \"name\": \"image de couverture de Rue des Lumières\",\n                \"slug\": null,\n                \"description\": \"image de couverture de Rue des Lumières\",\n                \"copyright\": \"\"\n            },\n            \"pages\": [\n                {\n                    \"id\": 8127,\n                    \"instance\": {\n                        \"slug\": \"portail-projets-gps\"\n                    }\n                }\n            ],\n            \"sub_projects\": [\n                {\n                    \"id\": 85,\n                    \"name\": \"Les actions de préfiguration\",\n                    \"slug\": \"les-actions-de-prefiguration\",\n                    \"start_date\": \"2017-12-01T00:00:00.000+01:00\",\n                    \"end_date\": \"2018-08-31T00:00:00.000+02:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 9166,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": [\n                        {\n                            \"id\": 59,\n                            \"name\": \"Spectacle Incandescences \",\n                            \"slug\": \"spectacle-incandescences\",\n                            \"start_date\": \"2017-12-14T00:00:00.000+01:00\",\n                            \"end_date\": \"2017-12-14T00:00:00.000+01:00\",\n                            \"cover_picture\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/023/654/cover_small/ecran-horizontal.jpg?1511182171\",\n                                \"small_dimensions\": \"300x169\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/023/654/cover_medium/ecran-horizontal.jpg?1511182171\",\n                                \"medium_dimensions\": \"600x338\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/023/654/cover_large/ecran-horizontal.jpg?1511182171\",\n                                \"large_dimensions\": \"1000x563\",\n                                \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/023/654/cover_xlarge/ecran-horizontal.jpg?1511182171\",\n                                \"xlarge_dimensions\": \"1920x1080\",\n                                \"alt\": \"image de couverture de Spectacle Incandescences \",\n                                \"name\": \"image de couverture de Spectacle Incandescences \",\n                                \"slug\": null,\n                                \"description\": \"image de couverture de Spectacle Incandescences \",\n                                \"copyright\": \"\"\n                            },\n                            \"pages\": [\n                                {\n                                    \"id\": 8133,\n                                    \"instance\": {\n                                        \"slug\": \"portail-projets-gps\"\n                                    }\n                                }\n                            ],\n                            \"sub_projects\": []\n                        }\n                    ]\n                },\n                {\n                    \"id\": 62,\n                    \"name\": \"Phase de candidature \",\n                    \"slug\": \"phase-de-candidature\",\n                    \"start_date\": \"2017-10-03T00:00:00.000+02:00\",\n                    \"end_date\": \"2017-12-20T00:00:00.000+01:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 8146,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 77,\n                    \"name\": \"Dialogue compétitif\",\n                    \"slug\": \"dialogue-competitif\",\n                    \"start_date\": \"2018-01-01T00:00:00.000+01:00\",\n                    \"end_date\": \"2018-08-31T00:00:00.000+02:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 9151,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 86,\n                    \"name\": \"Collaboration avec le candidat retenu pour mise en œuvre des projets\",\n                    \"slug\": \"collaboration-avec-le-candidat-retenu-pour-mise-en-oeuvre-des-projets\",\n                    \"start_date\": \"2018-09-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2019-05-01T00:00:00.000+02:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 9175,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                }\n            ]\n        },\n        {\n            \"id\": 68,\n            \"name\": \"Cirque de l'Essonne\",\n            \"slug\": \"cirque-de-l-essonne\",\n            \"start_date\": \"2018-01-01T00:00:00.000+01:00\",\n            \"end_date\": \"2023-12-31T00:00:00.000+01:00\",\n            \"cover_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/025/389/cover_small/cirque-essonne-grandparissud-bandeau.jpg?1520719604\",\n                \"small_dimensions\": \"300x70\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/025/389/cover_medium/cirque-essonne-grandparissud-bandeau.jpg?1520719604\",\n                \"medium_dimensions\": \"600x140\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/025/389/cover_large/cirque-essonne-grandparissud-bandeau.jpg?1520719604\",\n                \"large_dimensions\": \"1000x234\",\n                \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/025/389/cover_xlarge/cirque-essonne-grandparissud-bandeau.jpg?1520719604\",\n                \"xlarge_dimensions\": \"2000x468\",\n                \"alt\": \"image de couverture de Cirque de l'Essonne\",\n                \"name\": \"image de couverture de Cirque de l'Essonne\",\n                \"slug\": null,\n                \"description\": \"image de couverture de Cirque de l'Essonne\",\n                \"copyright\": \"\"\n            },\n            \"pages\": [\n                {\n                    \"id\": 9043,\n                    \"instance\": {\n                        \"slug\": \"portail-projets-gps\"\n                    }\n                }\n            ],\n            \"sub_projects\": [\n                {\n                    \"id\": 70,\n                    \"name\": \"Études techniques préalables et de conception de l’aménagement\",\n                    \"slug\": \"etudes-techniques-prealables-et-de-conception-de-l-amenagement\",\n                    \"start_date\": \"2017-01-01T00:00:00.000+01:00\",\n                    \"end_date\": \"2019-06-30T00:00:00.000+02:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 9106,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 87,\n                    \"name\": \"Premiers travaux déjà effectués \",\n                    \"slug\": \"premiers-travaux-deja-effectues\",\n                    \"start_date\": \"2017-01-01T00:00:00.000+01:00\",\n                    \"end_date\": \"2018-03-31T00:00:00.000+02:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 9178,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 91,\n                    \"name\": \"Prochains travaux d'urgence\",\n                    \"slug\": \"prochains-travaux-d-urgence\",\n                    \"start_date\": \"2018-01-01T00:00:00.000+01:00\",\n                    \"end_date\": \"2018-12-31T00:00:00.000+01:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 9235,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 90,\n                    \"name\": \"Signature de la convention par les partenaires\",\n                    \"slug\": \"signature-de-la-convention-par-les-partenaires\",\n                    \"start_date\": \"2018-05-26T00:00:00.000+02:00\",\n                    \"end_date\": \"2018-05-26T00:00:00.000+02:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 9232,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 88,\n                    \"name\": \"Grands travaux\",\n                    \"slug\": \"grands-travaux-086fc039-afe3-467d-97cf-a1c6c91f9ba6\",\n                    \"start_date\": \"2019-07-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2023-12-31T00:00:00.000+01:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 9181,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                }\n            ]\n        }\n    ]\n}"}],"_postman_id":"e09a3ea5-e6fd-4afc-853f-d03aaaaa2fce"}],"id":"48933592-64ca-4635-a5e2-5ad121335d67","description":"<p>Endpoint d'API des compétences</p>\n","_postman_id":"48933592-64ca-4635-a5e2-5ad121335d67"},{"name":"Élus","item":[{"name":"Index","id":"b186a2e1-1613-4f99-a299-f7ffb042b1a8","request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"https://api.publidata.io/v1/{{instance_id}}/elects","description":"<p>Index des élus</p>\n","urlObject":{"path":["v1","{{instance_id}}","elects"],"host":["https://api.publidata.io"],"query":[],"variable":[]}},"response":[{"id":"5d8f0cfa-1a28-4434-b96c-5a189d3d7ee5","name":"Index elects","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"publidata.io/api/v1/portail-institutionnel-gps/elects"},"code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"elects\": [\n        {\n            \"id\": 94,\n            \"person_id\": 90,\n            \"civility\": \"Mme\",\n            \"first_name\": \"Marie-Martine \",\n            \"last_name\": \"Salles\",\n            \"slug\": \"marie-martine-salles\",\n            \"blurb\": \"Maire adjoint de Combs-la-Ville chargée de la Médiation de voisinage, de la Gestion du personnel municipal et des Relations avec le monde combattant, Conseiller communautaire de Grand Paris Sud\",\n            \"pages\": [\n                {\n                    \"id\": 268,\n                    \"instance\": {\n                        \"slug\": \"portail-institutionnel-gps\"\n                    }\n                }\n            ],\n            \"profile_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/606/logo_small/Marie-Martine_SALLES_%28combs%29.jpg?1458204468\",\n                \"small_dimensions\": \"100x150\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/606/logo_medium/Marie-Martine_SALLES_%28combs%29.jpg?1458204468\",\n                \"medium_dimensions\": \"266x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/606/logo_large/Marie-Martine_SALLES_%28combs%29.jpg?1458204468\",\n                \"large_dimensions\": \"399x600\",\n                \"alt\": \"image de profil de Marie-Martine  Salles\",\n                \"name\": \"image de profil de Marie-Martine  Salles\",\n                \"slug\": \"image-de-profil-de-marie-martine-salles\",\n                \"description\": \"image de profil de Marie-Martine  Salles\",\n                \"copyright\": \"\"\n            },\n            \"titles\": {\n                \"city_titles\": [\n                    {\n                        \"id\": 181,\n                        \"title_type\": {\n                            \"id\": 7,\n                            \"name\": \"Maire adjointe\",\n                            \"subtitle\": \"chargée de la Médiation de voisinage, de la Gestion du personnel municipal et des Relations avec le monde combattant\",\n                            \"weight\": 1,\n                            \"type_category\": \"Communes\"\n                        },\n                        \"city\": {\n                            \"id\": 12,\n                            \"organization_id\": 58,\n                            \"name\": \"Combs-la-Ville\",\n                            \"slug\": \"combs-la-ville\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/076/logo_small/Logo-Combs-la-ville.png?1453972715\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/076/logo_medium/Logo-Combs-la-ville.png?1453972715\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/076/logo_large/Logo-Combs-la-ville.png?1453972715\",\n                                \"alt\": \"image de profil de Combs-la-Ville\"\n                            }\n                        }\n                    }\n                ],\n                \"agglomeration_titles\": [\n                    {\n                        \"id\": 182,\n                        \"title_type\": {\n                            \"id\": 9,\n                            \"name\": \"Conseillère communautaire\",\n                            \"subtitle\": \"\",\n                            \"weight\": 54,\n                            \"type_category\": \"Agglomérations\"\n                        },\n                        \"agglomeration\": {\n                            \"id\": 4,\n                            \"organization_id\": 52,\n                            \"name\": \"Grand Paris Sud\",\n                            \"slug\": \"grand-paris-sud\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                                \"alt\": \"image de profil de Grand Paris Sud\"\n                            }\n                        }\n                    }\n                ],\n                \"department_titles\": [],\n                \"region_titles\": []\n            },\n            \"infos\": {\n                \"phone\": \"01 64 13 16 00\",\n                \"email\": \"\",\n                \"contact\": \"http://www.combs-la-ville.fr/outils/contactez-nous.htm\",\n                \"website\": \"\",\n                \"social\": {\n                    \"facebook\": \"\",\n                    \"twitter\": \"\",\n                    \"googleplus\": \"\",\n                    \"instagram\": \"\",\n                    \"linkedin\": \"\",\n                    \"viadeo\": \"\",\n                    \"flickr\": \"\",\n                    \"youtube\": \"\",\n                    \"dailymotion\": \"\",\n                    \"vimeo\": \"\",\n                    \"medium\": \"\",\n                    \"rss\": \"\",\n                    \"snapcode_svg\": \"\",\n                    \"messenger\": null,\n                    \"allocine\": null\n                }\n            }\n        },\n        {\n            \"id\": 95,\n            \"person_id\": 91,\n            \"civility\": \"M.\",\n            \"first_name\": \"Gilles \",\n            \"last_name\": \"Alapetite\",\n            \"slug\": \"gilles-alapetite\",\n            \"blurb\": \"Maire adjoint de Combs-la-Ville chargé des Sports, de l'Animation festive et de l'Accompagnement du handicap, Conseiller communautaire de Grand Paris Sud\",\n            \"pages\": [\n                {\n                    \"id\": 269,\n                    \"instance\": {\n                        \"slug\": \"portail-institutionnel-gps\"\n                    }\n                }\n            ],\n            \"profile_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/609/logo_small/Gilles_ALAPETITE_%28combs%29.jpg?1458203756\",\n                \"small_dimensions\": \"100x150\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/609/logo_medium/Gilles_ALAPETITE_%28combs%29.jpg?1458203756\",\n                \"medium_dimensions\": \"266x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/609/logo_large/Gilles_ALAPETITE_%28combs%29.jpg?1458203756\",\n                \"large_dimensions\": \"399x600\",\n                \"alt\": \"image de profil de Gilles  Alapetite\",\n                \"name\": \"image de profil de Gilles  Alapetite\",\n                \"slug\": \"image-de-profil-de-gilles-alapetite\",\n                \"description\": \"image de profil de Gilles  Alapetite\",\n                \"copyright\": \"\"\n            },\n            \"titles\": {\n                \"city_titles\": [\n                    {\n                        \"id\": 183,\n                        \"title_type\": {\n                            \"id\": 7,\n                            \"name\": \"Maire adjoint\",\n                            \"subtitle\": \"chargé des Sports, de l'Animation festive et de l'Accompagnement du handicap\",\n                            \"weight\": 1,\n                            \"type_category\": \"Communes\"\n                        },\n                        \"city\": {\n                            \"id\": 12,\n                            \"organization_id\": 58,\n                            \"name\": \"Combs-la-Ville\",\n                            \"slug\": \"combs-la-ville\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/076/logo_small/Logo-Combs-la-ville.png?1453972715\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/076/logo_medium/Logo-Combs-la-ville.png?1453972715\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/076/logo_large/Logo-Combs-la-ville.png?1453972715\",\n                                \"alt\": \"image de profil de Combs-la-Ville\"\n                            }\n                        }\n                    }\n                ],\n                \"agglomeration_titles\": [\n                    {\n                        \"id\": 184,\n                        \"title_type\": {\n                            \"id\": 9,\n                            \"name\": \"Conseiller communautaire\",\n                            \"subtitle\": \"\",\n                            \"weight\": 20,\n                            \"type_category\": \"Agglomérations\"\n                        },\n                        \"agglomeration\": {\n                            \"id\": 4,\n                            \"organization_id\": 52,\n                            \"name\": \"Grand Paris Sud\",\n                            \"slug\": \"grand-paris-sud\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                                \"alt\": \"image de profil de Grand Paris Sud\"\n                            }\n                        }\n                    }\n                ],\n                \"department_titles\": [],\n                \"region_titles\": []\n            },\n            \"infos\": {\n                \"phone\": \"01 64 13 16 00\",\n                \"email\": \"\",\n                \"contact\": \"http://www.combs-la-ville.fr/outils/contactez-nous.htm\",\n                \"website\": \"\",\n                \"social\": {\n                    \"facebook\": \"https://www.facebook.com/gilles.alapetite?fref=ts\",\n                    \"twitter\": \"https://twitter.com/Alapetite\",\n                    \"googleplus\": \"\",\n                    \"instagram\": \"\",\n                    \"linkedin\": \"\",\n                    \"viadeo\": \"\",\n                    \"flickr\": \"\",\n                    \"youtube\": \"\",\n                    \"dailymotion\": \"\",\n                    \"vimeo\": \"\",\n                    \"medium\": \"\",\n                    \"rss\": \"\",\n                    \"snapcode_svg\": \"\",\n                    \"messenger\": null,\n                    \"allocine\": null\n                }\n            }\n        },\n        {\n            \"id\": 8,\n            \"person_id\": 26,\n            \"civility\": \"Mme\",\n            \"first_name\": \"Valérie\",\n            \"last_name\": \"Lengard\",\n            \"slug\": \"valerie-lengard\",\n            \"blurb\": \"Conseiller communautaire de Grand Paris Sud chargée de la démocratie participative, Maire adjoint de Lieusaint chargée de l'enseignement\",\n            \"pages\": [\n                {\n                    \"id\": 206,\n                    \"instance\": {\n                        \"slug\": \"portail-institutionnel-gps\"\n                    }\n                }\n            ],\n            \"profile_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/519/logo_small/Vale%C2%A6%C3%BCrie_LENGARD_%28lieusaint%29.jpg?1458205761\",\n                \"small_dimensions\": \"100x150\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/519/logo_medium/Vale%C2%A6%C3%BCrie_LENGARD_%28lieusaint%29.jpg?1458205761\",\n                \"medium_dimensions\": \"266x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/519/logo_large/Vale%C2%A6%C3%BCrie_LENGARD_%28lieusaint%29.jpg?1458205761\",\n                \"large_dimensions\": \"399x600\",\n                \"alt\": \"image de profil de Valérie Lengard\",\n                \"name\": \"image de profil de Valérie Lengard\",\n                \"slug\": \"image-de-profil-de-valerie-lengard\",\n                \"description\": \"image de profil de Valérie Lengard\",\n                \"copyright\": \"\"\n            },\n            \"titles\": {\n                \"city_titles\": [\n                    {\n                        \"id\": 54,\n                        \"title_type\": {\n                            \"id\": 7,\n                            \"name\": \"Maire adjointe\",\n                            \"subtitle\": \"chargée de l'enseignement\",\n                            \"weight\": 21,\n                            \"type_category\": \"Communes\"\n                        },\n                        \"city\": {\n                            \"id\": 15,\n                            \"organization_id\": 61,\n                            \"name\": \"Lieusaint\",\n                            \"slug\": \"lieusaint\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/085/logo_small/Logo-Lieusaint.png?1453972729\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/085/logo_medium/Logo-Lieusaint.png?1453972729\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/085/logo_large/Logo-Lieusaint.png?1453972729\",\n                                \"alt\": \"image de profil de Lieusaint\"\n                            }\n                        }\n                    }\n                ],\n                \"agglomeration_titles\": [\n                    {\n                        \"id\": 53,\n                        \"title_type\": {\n                            \"id\": 9,\n                            \"name\": \"Conseillère communautaire\",\n                            \"subtitle\": \"chargée de la démocratie participative \",\n                            \"weight\": 14,\n                            \"type_category\": \"Agglomérations\"\n                        },\n                        \"agglomeration\": {\n                            \"id\": 4,\n                            \"organization_id\": 52,\n                            \"name\": \"Grand Paris Sud\",\n                            \"slug\": \"grand-paris-sud\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                                \"alt\": \"image de profil de Grand Paris Sud\"\n                            }\n                        }\n                    }\n                ],\n                \"department_titles\": [],\n                \"region_titles\": []\n            },\n            \"infos\": {\n                \"phone\": \"01 64 13 55 55\",\n                \"email\": \"\",\n                \"contact\": \"\",\n                \"website\": \"\",\n                \"social\": {\n                    \"facebook\": \"https://www.facebook.com/valerie.lengard\",\n                    \"twitter\": \"\",\n                    \"googleplus\": \"https://plus.google.com/115687091801919296531/posts\",\n                    \"instagram\": \"\",\n                    \"linkedin\": \"\",\n                    \"viadeo\": \"\",\n                    \"flickr\": \"\",\n                    \"youtube\": \"\",\n                    \"dailymotion\": \"\",\n                    \"vimeo\": \"\",\n                    \"medium\": \"\",\n                    \"rss\": \"\",\n                    \"snapcode_svg\": \"\",\n                    \"messenger\": null,\n                    \"allocine\": null\n                }\n            }\n        },\n        {\n            \"id\": 29,\n            \"person_id\": 24,\n            \"civility\": \"M.\",\n            \"first_name\": \"Philippe\",\n            \"last_name\": \"Jumelle\",\n            \"slug\": \"philippe-jumelle\",\n            \"blurb\": \"Conseiller communautaire de Grand Paris Sud chargé de l’aménagement et du développement numérique, Maire d'Étiolles\",\n            \"pages\": [\n                {\n                    \"id\": 204,\n                    \"instance\": {\n                        \"slug\": \"portail-institutionnel-gps\"\n                    }\n                }\n            ],\n            \"profile_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/193/logo_small/Philippe_JUMELLE_%28etiolles%29.jpg?1458205053\",\n                \"small_dimensions\": \"100x150\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/193/logo_medium/Philippe_JUMELLE_%28etiolles%29.jpg?1458205053\",\n                \"medium_dimensions\": \"266x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/193/logo_large/Philippe_JUMELLE_%28etiolles%29.jpg?1458205053\",\n                \"large_dimensions\": \"399x600\",\n                \"alt\": \"image de profil de Philippe Jumelle\",\n                \"name\": \"image de profil de Philippe Jumelle\",\n                \"slug\": \"image-de-profil-de-philippe-jumelle\",\n                \"description\": \"image de profil de Philippe Jumelle\",\n                \"copyright\": \"\"\n            },\n            \"titles\": {\n                \"city_titles\": [\n                    {\n                        \"id\": 38,\n                        \"title_type\": {\n                            \"id\": 6,\n                            \"name\": \"Maire\",\n                            \"subtitle\": \"\",\n                            \"weight\": 1,\n                            \"type_category\": \"Communes\"\n                        },\n                        \"city\": {\n                            \"id\": 27,\n                            \"organization_id\": 73,\n                            \"name\": \"Étiolles\",\n                            \"slug\": \"etiolles\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/121/logo_small/Logo-Etiolles.png?1453972796\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/121/logo_medium/Logo-Etiolles.png?1453972796\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/121/logo_large/Logo-Etiolles.png?1453972796\",\n                                \"alt\": \"image de profil de Etiolles\"\n                            }\n                        }\n                    }\n                ],\n                \"agglomeration_titles\": [\n                    {\n                        \"id\": 37,\n                        \"title_type\": {\n                            \"id\": 9,\n                            \"name\": \"Conseiller communautaire\",\n                            \"subtitle\": \"chargé de l’aménagement et du développement numérique\",\n                            \"weight\": 1,\n                            \"type_category\": \"Agglomérations\"\n                        },\n                        \"agglomeration\": {\n                            \"id\": 4,\n                            \"organization_id\": 52,\n                            \"name\": \"Grand Paris Sud\",\n                            \"slug\": \"grand-paris-sud\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                                \"alt\": \"image de profil de Grand Paris Sud\"\n                            }\n                        }\n                    }\n                ],\n                \"department_titles\": [],\n                \"region_titles\": []\n            },\n            \"infos\": {\n                \"phone\": \"01 60 75 03 09\",\n                \"email\": \"mairie@etiolles.fr\",\n                \"contact\": \"\",\n                \"website\": \"\",\n                \"social\": {\n                    \"facebook\": \"\",\n                    \"twitter\": \"\",\n                    \"googleplus\": \"https://plus.google.com/100807696132974079635/posts\",\n                    \"instagram\": \"\",\n                    \"linkedin\": \"https://fr.linkedin.com/in/philippe-jumelle-27111341\",\n                    \"viadeo\": \"\",\n                    \"flickr\": \"\",\n                    \"youtube\": \"\",\n                    \"dailymotion\": \"\",\n                    \"vimeo\": \"\",\n                    \"medium\": \"\",\n                    \"rss\": \"\",\n                    \"snapcode_svg\": \"\",\n                    \"messenger\": null,\n                    \"allocine\": null\n                }\n            }\n        },\n        {\n            \"id\": 96,\n            \"person_id\": 92,\n            \"civility\": \"Mme\",\n            \"first_name\": \"Dominique \",\n            \"last_name\": \"David\",\n            \"slug\": \"dominique-david\",\n            \"blurb\": \"Suppléant de Grand Paris Sud de Alain Auzet, Maire adjoint de Réau en charge des Finances\",\n            \"pages\": [\n                {\n                    \"id\": 270,\n                    \"instance\": {\n                        \"slug\": \"portail-institutionnel-gps\"\n                    }\n                }\n            ],\n            \"profile_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/615/logo_small/Dominique_DAVID_reau_Grand_Paris_Sud.jpg?1458122944\",\n                \"small_dimensions\": \"100x150\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/615/logo_medium/Dominique_DAVID_reau_Grand_Paris_Sud.jpg?1458122944\",\n                \"medium_dimensions\": \"266x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/615/logo_large/Dominique_DAVID_reau_Grand_Paris_Sud.jpg?1458122944\",\n                \"large_dimensions\": \"399x600\",\n                \"alt\": \"image de profil de Dominique  David\",\n                \"name\": \"image de profil de Dominique  David\",\n                \"slug\": \"image-de-profil-de-dominique-david\",\n                \"description\": \"image de profil de Dominique  David\",\n                \"copyright\": \"\"\n            },\n            \"titles\": {\n                \"city_titles\": [\n                    {\n                        \"id\": 185,\n                        \"title_type\": {\n                            \"id\": 7,\n                            \"name\": \"Maire adjointe\",\n                            \"subtitle\": \"en charge des Finances \",\n                            \"weight\": 1,\n                            \"type_category\": \"Communes\"\n                        },\n                        \"city\": {\n                            \"id\": 29,\n                            \"organization_id\": 75,\n                            \"name\": \"Réau\",\n                            \"slug\": \"reau\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/127/logo_small/Logo-Reau.png?1453972806\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/127/logo_medium/Logo-Reau.png?1453972806\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/127/logo_large/Logo-Reau.png?1453972806\",\n                                \"alt\": \"image de profil de Réau\"\n                            }\n                        }\n                    }\n                ],\n                \"agglomeration_titles\": [\n                    {\n                        \"id\": 186,\n                        \"title_type\": {\n                            \"id\": 2,\n                            \"name\": \"Suppléante\",\n                            \"subtitle\": \"de Alain Auzet \",\n                            \"weight\": 3,\n                            \"type_category\": \"Agglomérations\"\n                        },\n                        \"agglomeration\": {\n                            \"id\": 4,\n                            \"organization_id\": 52,\n                            \"name\": \"Grand Paris Sud\",\n                            \"slug\": \"grand-paris-sud\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                                \"alt\": \"image de profil de Grand Paris Sud\"\n                            }\n                        }\n                    }\n                ],\n                \"department_titles\": [],\n                \"region_titles\": []\n            },\n            \"infos\": {\n                \"phone\": \"01 60 60 85 55\",\n                \"email\": \"\",\n                \"contact\": \"http://www.reau.fr/fr/nous-contacter\",\n                \"website\": \"\",\n                \"social\": {\n                    \"facebook\": \"\",\n                    \"twitter\": \"\",\n                    \"googleplus\": \"\",\n                    \"instagram\": \"\",\n                    \"linkedin\": \"\",\n                    \"viadeo\": \"\",\n                    \"flickr\": \"\",\n                    \"youtube\": \"\",\n                    \"dailymotion\": \"\",\n                    \"vimeo\": \"\",\n                    \"medium\": \"\",\n                    \"rss\": \"\",\n                    \"snapcode_svg\": \"\",\n                    \"messenger\": null,\n                    \"allocine\": null\n                }\n            }\n        },\n        {\n            \"id\": 30,\n            \"person_id\": 25,\n            \"civility\": \"M.\",\n            \"first_name\": \"Jean\\u00ad-Baptiste\",\n            \"last_name\": \"Rousseau\",\n            \"slug\": \"jean-baptiste-rousseau\",\n            \"blurb\": \"Vice-président de Grand Paris Sud chargé de l’administration générale et de la prospective financière, Maire de Soisy-sur-Seine\",\n            \"pages\": [\n                {\n                    \"id\": 205,\n                    \"instance\": {\n                        \"slug\": \"portail-institutionnel-gps\"\n                    }\n                }\n            ],\n            \"profile_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/190/logo_small/Soisy-sur-Seine_-_ROUSSEAU_Jean-Baptiste.jpg?1456416998\",\n                \"small_dimensions\": \"150x137\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/190/logo_medium/Soisy-sur-Seine_-_ROUSSEAU_Jean-Baptiste.jpg?1456416998\",\n                \"medium_dimensions\": \"400x365\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/190/logo_large/Soisy-sur-Seine_-_ROUSSEAU_Jean-Baptiste.jpg?1456416998\",\n                \"large_dimensions\": \"600x547\",\n                \"alt\": \"image de profil de Jean\\u00ad-Baptiste Rousseau\",\n                \"name\": \"image de profil de Jean\\u00ad-Baptiste Rousseau\",\n                \"slug\": \"image-de-profil-de-jean-baptiste-rousseau\",\n                \"description\": \"image de profil de Jean\\u00ad-Baptiste Rousseau\",\n                \"copyright\": \"\"\n            },\n            \"titles\": {\n                \"city_titles\": [\n                    {\n                        \"id\": 40,\n                        \"title_type\": {\n                            \"id\": 6,\n                            \"name\": \"Maire\",\n                            \"subtitle\": \"\",\n                            \"weight\": 1,\n                            \"type_category\": \"Communes\"\n                        },\n                        \"city\": {\n                            \"id\": 22,\n                            \"organization_id\": 68,\n                            \"name\": \"Soisy-sur-Seine\",\n                            \"slug\": \"soisy-sur-seine\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/106/logo_small/Logo-Soisy-sur-seine.png?1453972766\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/106/logo_medium/Logo-Soisy-sur-seine.png?1453972766\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/106/logo_large/Logo-Soisy-sur-seine.png?1453972766\",\n                                \"alt\": \"image de profil de Soisy-sur-Seine\"\n                            }\n                        }\n                    }\n                ],\n                \"agglomeration_titles\": [\n                    {\n                        \"id\": 39,\n                        \"title_type\": {\n                            \"id\": 11,\n                            \"name\": \"Vice-président\",\n                            \"subtitle\": \"chargé de l’administration générale et de la prospective financière\",\n                            \"weight\": 13,\n                            \"type_category\": \"Agglomérations\"\n                        },\n                        \"agglomeration\": {\n                            \"id\": 4,\n                            \"organization_id\": 52,\n                            \"name\": \"Grand Paris Sud\",\n                            \"slug\": \"grand-paris-sud\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                                \"alt\": \"image de profil de Grand Paris Sud\"\n                            }\n                        }\n                    }\n                ],\n                \"department_titles\": [],\n                \"region_titles\": []\n            },\n            \"infos\": {\n                \"phone\": null,\n                \"email\": \"\",\n                \"contact\": \"\",\n                \"website\": \"http://www.soisysurseine.fr/\",\n                \"social\": {\n                    \"facebook\": \"\",\n                    \"twitter\": \"\",\n                    \"googleplus\": \"\",\n                    \"instagram\": \"\",\n                    \"linkedin\": \"\",\n                    \"viadeo\": \"\",\n                    \"flickr\": \"\",\n                    \"youtube\": \"\",\n                    \"dailymotion\": \"\",\n                    \"vimeo\": \"\",\n                    \"medium\": \"\",\n                    \"rss\": \"\",\n                    \"snapcode_svg\": \"\",\n                    \"messenger\": null,\n                    \"allocine\": null\n                }\n            }\n        },\n        {\n            \"id\": 31,\n            \"person_id\": 27,\n            \"civility\": \"M.\",\n            \"first_name\": \"Thierry\",\n            \"last_name\": \"Lafon\",\n            \"slug\": \"thierry-lafon\",\n            \"blurb\": \"Conseiller communautaire de Grand Paris Sud chargé de l’événementiel sportif, Maire de Lisses\",\n            \"pages\": [\n                {\n                    \"id\": 207,\n                    \"instance\": {\n                        \"slug\": \"portail-institutionnel-gps\"\n                    }\n                }\n            ],\n            \"profile_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/869/logo_small/Thierry_LAFON_%28lisses%29.jpg?1458205718\",\n                \"small_dimensions\": \"100x150\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/869/logo_medium/Thierry_LAFON_%28lisses%29.jpg?1458205718\",\n                \"medium_dimensions\": \"266x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/869/logo_large/Thierry_LAFON_%28lisses%29.jpg?1458205718\",\n                \"large_dimensions\": \"399x600\",\n                \"alt\": \"image de profil de Thierry Lafon\",\n                \"name\": \"image de profil de Thierry Lafon\",\n                \"slug\": \"image-de-profil-de-thierry-lafon\",\n                \"description\": \"image de profil de Thierry Lafon\",\n                \"copyright\": \"\"\n            },\n            \"titles\": {\n                \"city_titles\": [\n                    {\n                        \"id\": 55,\n                        \"title_type\": {\n                            \"id\": 6,\n                            \"name\": \"Maire\",\n                            \"subtitle\": \"\",\n                            \"weight\": 1,\n                            \"type_category\": \"Communes\"\n                        },\n                        \"city\": {\n                            \"id\": 19,\n                            \"organization_id\": 65,\n                            \"name\": \"Lisses\",\n                            \"slug\": \"lisses\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/097/logo_small/Sans_titre-1.png?1520348930\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/097/logo_medium/Sans_titre-1.png?1520348930\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/097/logo_large/Sans_titre-1.png?1520348930\",\n                                \"alt\": \"image de profil de Lisses\"\n                            }\n                        }\n                    }\n                ],\n                \"agglomeration_titles\": [\n                    {\n                        \"id\": 56,\n                        \"title_type\": {\n                            \"id\": 9,\n                            \"name\": \"Conseiller communautaire\",\n                            \"subtitle\": \"chargé de l’événementiel sportif\",\n                            \"weight\": 4,\n                            \"type_category\": \"Agglomérations\"\n                        },\n                        \"agglomeration\": {\n                            \"id\": 4,\n                            \"organization_id\": 52,\n                            \"name\": \"Grand Paris Sud\",\n                            \"slug\": \"grand-paris-sud\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                                \"alt\": \"image de profil de Grand Paris Sud\"\n                            }\n                        }\n                    }\n                ],\n                \"department_titles\": [],\n                \"region_titles\": []\n            },\n            \"infos\": {\n                \"phone\": \"01 69 11 40 00\",\n                \"email\": \"\",\n                \"contact\": \"\",\n                \"website\": \"\",\n                \"social\": {\n                    \"facebook\": \"https://www.facebook.com/thierry.lafon.90?ref=br_rs\",\n                    \"twitter\": \"\",\n                    \"googleplus\": \"\",\n                    \"instagram\": \"\",\n                    \"linkedin\": \"\",\n                    \"viadeo\": \"\",\n                    \"flickr\": \"\",\n                    \"youtube\": \"\",\n                    \"dailymotion\": \"\",\n                    \"vimeo\": \"\",\n                    \"medium\": \"\",\n                    \"rss\": \"\",\n                    \"snapcode_svg\": \"\",\n                    \"messenger\": null,\n                    \"allocine\": null\n                }\n            }\n        },\n        {\n            \"id\": 104,\n            \"person_id\": 100,\n            \"civility\": \"Mme\",\n            \"first_name\": \"Sylvie\",\n            \"last_name\": \"Boidé\",\n            \"slug\": \"sylvie-boide-144ee99a-40c1-454c-b25c-a6c08e334a5a\",\n            \"blurb\": \"Conseiller communautaire de Grand Paris Sud, Conseiller municipal de Bondoufle\",\n            \"pages\": [\n                {\n                    \"id\": 481,\n                    \"instance\": {\n                        \"slug\": \"portail-institutionnel-gps\"\n                    }\n                }\n            ],\n            \"profile_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/002/797/logo_small/sylvie-boide-bondoufle-grand-paris-sud.jpg?1465208552\",\n                \"small_dimensions\": \"100x150\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/002/797/logo_medium/sylvie-boide-bondoufle-grand-paris-sud.jpg?1465208552\",\n                \"medium_dimensions\": \"266x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/002/797/logo_large/sylvie-boide-bondoufle-grand-paris-sud.jpg?1465208552\",\n                \"large_dimensions\": \"399x600\",\n                \"alt\": \"image de profil de Sylvie Boidé\",\n                \"name\": \"image de profil de Sylvie Boidé\",\n                \"slug\": \"image-de-profil-de-sylvie-boide\",\n                \"description\": \"image de profil de Sylvie Boidé\",\n                \"copyright\": \"\"\n            },\n            \"titles\": {\n                \"city_titles\": [\n                    {\n                        \"id\": 197,\n                        \"title_type\": {\n                            \"id\": 8,\n                            \"name\": \"Conseillère municipale\",\n                            \"subtitle\": \"\",\n                            \"weight\": 1,\n                            \"type_category\": \"Communes\"\n                        },\n                        \"city\": {\n                            \"id\": 18,\n                            \"organization_id\": 64,\n                            \"name\": \"Bondoufle\",\n                            \"slug\": \"bondoufle\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/094/logo_small/logo-bondoufle.png?1473694015\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/094/logo_medium/logo-bondoufle.png?1473694015\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/094/logo_large/logo-bondoufle.png?1473694015\",\n                                \"alt\": \"image de profil de Bondoufle\"\n                            }\n                        }\n                    }\n                ],\n                \"agglomeration_titles\": [\n                    {\n                        \"id\": 198,\n                        \"title_type\": {\n                            \"id\": 9,\n                            \"name\": \"Conseillère communautaire\",\n                            \"subtitle\": \"\",\n                            \"weight\": 25,\n                            \"type_category\": \"Agglomérations\"\n                        },\n                        \"agglomeration\": {\n                            \"id\": 4,\n                            \"organization_id\": 52,\n                            \"name\": \"Grand Paris Sud\",\n                            \"slug\": \"grand-paris-sud\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                                \"alt\": \"image de profil de Grand Paris Sud\"\n                            }\n                        }\n                    }\n                ],\n                \"department_titles\": [],\n                \"region_titles\": []\n            },\n            \"infos\": {\n                \"phone\": \"01 60 86 47 27\",\n                \"email\": \"\",\n                \"contact\": \"\",\n                \"website\": \"\",\n                \"social\": {\n                    \"facebook\": \"\",\n                    \"twitter\": \"\",\n                    \"googleplus\": \"\",\n                    \"instagram\": \"\",\n                    \"linkedin\": \"\",\n                    \"viadeo\": \"\",\n                    \"flickr\": \"\",\n                    \"youtube\": \"\",\n                    \"dailymotion\": \"\",\n                    \"vimeo\": \"\",\n                    \"medium\": \"\",\n                    \"rss\": \"\",\n                    \"snapcode_svg\": \"\",\n                    \"messenger\": null,\n                    \"allocine\": null\n                }\n            }\n        },\n        {\n            \"id\": 33,\n            \"person_id\": 29,\n            \"civility\": \"Mme\",\n            \"first_name\": \"Marie-Hélène\",\n            \"last_name\": \"Rottembourg\",\n            \"slug\": \"marie-helene-rottembourg\",\n            \"blurb\": \"Suppléant de Grand Paris Sud de M. René Réthoré, Maire adjoint de Nandy chargée de la culture et de la communication\",\n            \"pages\": [\n                {\n                    \"id\": 208,\n                    \"instance\": {\n                        \"slug\": \"portail-institutionnel-gps\"\n                    }\n                }\n            ],\n            \"profile_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/522/logo_small/Marie-He%C2%A6%C3%BCle%C2%A6%C3%87ne_ROTTENBOURG_nandy_Grand_Paris_Sud.jpg?1458123233\",\n                \"small_dimensions\": \"100x150\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/522/logo_medium/Marie-He%C2%A6%C3%BCle%C2%A6%C3%87ne_ROTTENBOURG_nandy_Grand_Paris_Sud.jpg?1458123233\",\n                \"medium_dimensions\": \"266x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/522/logo_large/Marie-He%C2%A6%C3%BCle%C2%A6%C3%87ne_ROTTENBOURG_nandy_Grand_Paris_Sud.jpg?1458123233\",\n                \"large_dimensions\": \"399x600\",\n                \"alt\": \"image de profil de Marie-Hélène Rottembourg\",\n                \"name\": \"image de profil de Marie-Hélène Rottembourg\",\n                \"slug\": \"image-de-profil-de-marie-helene-rottembourg\",\n                \"description\": \"image de profil de Marie-Hélène Rottembourg\",\n                \"copyright\": \"\"\n            },\n            \"titles\": {\n                \"city_titles\": [\n                    {\n                        \"id\": 60,\n                        \"title_type\": {\n                            \"id\": 7,\n                            \"name\": \"Maire adjointe\",\n                            \"subtitle\": \"chargée de la culture et de la communication\",\n                            \"weight\": 1,\n                            \"type_category\": \"Communes\"\n                        },\n                        \"city\": {\n                            \"id\": 23,\n                            \"organization_id\": 69,\n                            \"name\": \"Nandy\",\n                            \"slug\": \"nandy\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/109/logo_small/Logo-Nandy.png?1453972772\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/109/logo_medium/Logo-Nandy.png?1453972772\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/109/logo_large/Logo-Nandy.png?1453972772\",\n                                \"alt\": \"image de profil de Nandy\"\n                            }\n                        }\n                    }\n                ],\n                \"agglomeration_titles\": [\n                    {\n                        \"id\": 59,\n                        \"title_type\": {\n                            \"id\": 2,\n                            \"name\": \"Suppléante\",\n                            \"subtitle\": \"de M. René Réthoré\",\n                            \"weight\": 7,\n                            \"type_category\": \"Agglomérations\"\n                        },\n                        \"agglomeration\": {\n                            \"id\": 4,\n                            \"organization_id\": 52,\n                            \"name\": \"Grand Paris Sud\",\n                            \"slug\": \"grand-paris-sud\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                                \"alt\": \"image de profil de Grand Paris Sud\"\n                            }\n                        }\n                    }\n                ],\n                \"department_titles\": [],\n                \"region_titles\": []\n            },\n            \"infos\": {\n                \"phone\": \"01 64 19 29 29\",\n                \"email\": \"mairie@nandy.fr\",\n                \"contact\": \"\",\n                \"website\": \"\",\n                \"social\": {\n                    \"facebook\": \"\",\n                    \"twitter\": \"\",\n                    \"googleplus\": \"https://plus.google.com/104799583658531228329/posts\",\n                    \"instagram\": \"\",\n                    \"linkedin\": \"\",\n                    \"viadeo\": \"\",\n                    \"flickr\": \"\",\n                    \"youtube\": \"\",\n                    \"dailymotion\": \"\",\n                    \"vimeo\": \"\",\n                    \"medium\": \"\",\n                    \"rss\": \"\",\n                    \"snapcode_svg\": \"\",\n                    \"messenger\": null,\n                    \"allocine\": null\n                }\n            }\n        },\n        {\n            \"id\": 34,\n            \"person_id\": 30,\n            \"civility\": \"M.\",\n            \"first_name\": \"Angelo\",\n            \"last_name\": \"Valerii\",\n            \"slug\": \"angelo-valerii\",\n            \"blurb\": \"Conseiller communautaire de Grand Paris Sud chargé de la mutualisation et de l’évaluation des politiques publiques, Maire adjoint de Moissy-Cramayel en charge des Finances et de la commande publique\",\n            \"pages\": [\n                {\n                    \"id\": 209,\n                    \"instance\": {\n                        \"slug\": \"portail-institutionnel-gps\"\n                    }\n                }\n            ],\n            \"profile_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/525/logo_small/Angelo_VALERII_moissy_cramayel_Grand_Paris_Sud.jpg?1458123016\",\n                \"small_dimensions\": \"100x150\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/525/logo_medium/Angelo_VALERII_moissy_cramayel_Grand_Paris_Sud.jpg?1458123016\",\n                \"medium_dimensions\": \"266x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/525/logo_large/Angelo_VALERII_moissy_cramayel_Grand_Paris_Sud.jpg?1458123016\",\n                \"large_dimensions\": \"399x600\",\n                \"alt\": \"image de profil de Angelo Valerii\",\n                \"name\": \"image de profil de Angelo Valerii\",\n                \"slug\": \"image-de-profil-de-angelo-valerii\",\n                \"description\": \"image de profil de Angelo Valerii\",\n                \"copyright\": \"\"\n            },\n            \"titles\": {\n                \"city_titles\": [\n                    {\n                        \"id\": 62,\n                        \"title_type\": {\n                            \"id\": 7,\n                            \"name\": \"Maire adjoint\",\n                            \"subtitle\": \"en charge des Finances et de la commande publique\",\n                            \"weight\": 23,\n                            \"type_category\": \"Communes\"\n                        },\n                        \"city\": {\n                            \"id\": 13,\n                            \"organization_id\": 59,\n                            \"name\": \"Moissy-Cramayel\",\n                            \"slug\": \"moissy-cramayel\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/079/logo_small/Logo-Moissy-cramayel.png?1453972720\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/079/logo_medium/Logo-Moissy-cramayel.png?1453972720\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/079/logo_large/Logo-Moissy-cramayel.png?1453972720\",\n                                \"alt\": \"image de profil de Moissy-Cramayel\"\n                            }\n                        }\n                    }\n                ],\n                \"agglomeration_titles\": [\n                    {\n                        \"id\": 61,\n                        \"title_type\": {\n                            \"id\": 9,\n                            \"name\": \"Conseiller communautaire\",\n                            \"subtitle\": \"chargé de la mutualisation et de l’évaluation des politiques publiques\",\n                            \"weight\": 19,\n                            \"type_category\": \"Agglomérations\"\n                        },\n                        \"agglomeration\": {\n                            \"id\": 4,\n                            \"organization_id\": 52,\n                            \"name\": \"Grand Paris Sud\",\n                            \"slug\": \"grand-paris-sud\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                                \"alt\": \"image de profil de Grand Paris Sud\"\n                            }\n                        }\n                    }\n                ],\n                \"department_titles\": [],\n                \"region_titles\": []\n            },\n            \"infos\": {\n                \"phone\": null,\n                \"email\": \"\",\n                \"contact\": \"http://www.moissy-cramayel.fr/article.php?id_article=176\",\n                \"website\": \"\",\n                \"social\": {\n                    \"facebook\": \"https://www.facebook.com/angelo.valerii.7?ref=br_rs\",\n                    \"twitter\": \"\",\n                    \"googleplus\": \"\",\n                    \"instagram\": \"\",\n                    \"linkedin\": \"\",\n                    \"viadeo\": \"\",\n                    \"flickr\": \"\",\n                    \"youtube\": \"\",\n                    \"dailymotion\": \"\",\n                    \"vimeo\": \"\",\n                    \"medium\": \"\",\n                    \"rss\": \"\",\n                    \"snapcode_svg\": \"\",\n                    \"messenger\": null,\n                    \"allocine\": null\n                }\n            }\n        },\n        {\n            \"id\": 35,\n            \"person_id\": 31,\n            \"civility\": \"Mme\",\n            \"first_name\": \"Marilyn\",\n            \"last_name\": \"Humphrey\",\n            \"slug\": \"marilyn-humphrey\",\n            \"blurb\": \"Conseiller communautaire de Grand Paris Sud, Maire adjoint de Moissy-Cramayel en charge des Affaires Sociales et de la Solidarité\",\n            \"pages\": [\n                {\n                    \"id\": 210,\n                    \"instance\": {\n                        \"slug\": \"portail-institutionnel-gps\"\n                    }\n                }\n            ],\n            \"profile_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/528/logo_small/Marilyn_HUMPHREY_moissy_cramayel_Grand_Paris_Sud.jpg?1458123308\",\n                \"small_dimensions\": \"100x150\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/528/logo_medium/Marilyn_HUMPHREY_moissy_cramayel_Grand_Paris_Sud.jpg?1458123308\",\n                \"medium_dimensions\": \"266x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/528/logo_large/Marilyn_HUMPHREY_moissy_cramayel_Grand_Paris_Sud.jpg?1458123308\",\n                \"large_dimensions\": \"399x600\",\n                \"alt\": \"image de profil de Marilyn Humphrey\",\n                \"name\": \"image de profil de Marilyn Humphrey\",\n                \"slug\": \"image-de-profil-de-marilyn-humphrey\",\n                \"description\": \"image de profil de Marilyn Humphrey\",\n                \"copyright\": \"\"\n            },\n            \"titles\": {\n                \"city_titles\": [\n                    {\n                        \"id\": 64,\n                        \"title_type\": {\n                            \"id\": 7,\n                            \"name\": \"Maire adjointe\",\n                            \"subtitle\": \"en charge des Affaires Sociales et de la Solidarité\",\n                            \"weight\": 13,\n                            \"type_category\": \"Communes\"\n                        },\n                        \"city\": {\n                            \"id\": 13,\n                            \"organization_id\": 59,\n                            \"name\": \"Moissy-Cramayel\",\n                            \"slug\": \"moissy-cramayel\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/079/logo_small/Logo-Moissy-cramayel.png?1453972720\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/079/logo_medium/Logo-Moissy-cramayel.png?1453972720\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/079/logo_large/Logo-Moissy-cramayel.png?1453972720\",\n                                \"alt\": \"image de profil de Moissy-Cramayel\"\n                            }\n                        }\n                    }\n                ],\n                \"agglomeration_titles\": [\n                    {\n                        \"id\": 63,\n                        \"title_type\": {\n                            \"id\": 9,\n                            \"name\": \"Conseillère communautaire\",\n                            \"subtitle\": \"\",\n                            \"weight\": 42,\n                            \"type_category\": \"Agglomérations\"\n                        },\n                        \"agglomeration\": {\n                            \"id\": 4,\n                            \"organization_id\": 52,\n                            \"name\": \"Grand Paris Sud\",\n                            \"slug\": \"grand-paris-sud\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                                \"alt\": \"image de profil de Grand Paris Sud\"\n                            }\n                        }\n                    }\n                ],\n                \"department_titles\": [],\n                \"region_titles\": []\n            },\n            \"infos\": {\n                \"phone\": \"01 64 88 15 00\",\n                \"email\": \"\",\n                \"contact\": \"http://www.moissy-cramayel.fr/article.php?id_article=176\",\n                \"website\": \"\",\n                \"social\": {\n                    \"facebook\": \"https://www.facebook.com/marilyn.buzenet\",\n                    \"twitter\": \"\",\n                    \"googleplus\": \"\",\n                    \"instagram\": \"\",\n                    \"linkedin\": \"\",\n                    \"viadeo\": \"\",\n                    \"flickr\": \"\",\n                    \"youtube\": \"\",\n                    \"dailymotion\": \"\",\n                    \"vimeo\": \"\",\n                    \"medium\": \"\",\n                    \"rss\": \"\",\n                    \"snapcode_svg\": \"\",\n                    \"messenger\": null,\n                    \"allocine\": null\n                }\n            }\n        },\n        {\n            \"id\": 36,\n            \"person_id\": 32,\n            \"civility\": \"Mme\",\n            \"first_name\": \"Dorothée\",\n            \"last_name\": \"Moureaux\",\n            \"slug\": \"dorothee-moureaux\",\n            \"blurb\": \"Conseiller communautaire de Grand Paris Sud, Conseiller municipal de Moissy-Cramayel\",\n            \"pages\": [\n                {\n                    \"id\": 211,\n                    \"instance\": {\n                        \"slug\": \"portail-institutionnel-gps\"\n                    }\n                }\n            ],\n            \"profile_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/531/logo_small/doroth%C3%A9e_moureaux_Moissy-Cramayel_Grand_Paris_Sud_2.jpg?1458720253\",\n                \"small_dimensions\": \"110x150\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/531/logo_medium/doroth%C3%A9e_moureaux_Moissy-Cramayel_Grand_Paris_Sud_2.jpg?1458720253\",\n                \"medium_dimensions\": \"294x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/531/logo_large/doroth%C3%A9e_moureaux_Moissy-Cramayel_Grand_Paris_Sud_2.jpg?1458720253\",\n                \"large_dimensions\": \"441x600\",\n                \"alt\": \"image de profil de Dorothée Moureaux\",\n                \"name\": \"image de profil de Dorothée Moureaux\",\n                \"slug\": \"image-de-profil-de-dorothee-moureaux\",\n                \"description\": \"image de profil de Dorothée Moureaux\",\n                \"copyright\": \"\"\n            },\n            \"titles\": {\n                \"city_titles\": [\n                    {\n                        \"id\": 66,\n                        \"title_type\": {\n                            \"id\": 8,\n                            \"name\": \"Conseillère municipale\",\n                            \"subtitle\": \"\",\n                            \"weight\": 21,\n                            \"type_category\": \"Communes\"\n                        },\n                        \"city\": {\n                            \"id\": 13,\n                            \"organization_id\": 59,\n                            \"name\": \"Moissy-Cramayel\",\n                            \"slug\": \"moissy-cramayel\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/079/logo_small/Logo-Moissy-cramayel.png?1453972720\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/079/logo_medium/Logo-Moissy-cramayel.png?1453972720\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/079/logo_large/Logo-Moissy-cramayel.png?1453972720\",\n                                \"alt\": \"image de profil de Moissy-Cramayel\"\n                            }\n                        }\n                    }\n                ],\n                \"agglomeration_titles\": [\n                    {\n                        \"id\": 65,\n                        \"title_type\": {\n                            \"id\": 9,\n                            \"name\": \"Conseillère communautaire\",\n                            \"subtitle\": \"\",\n                            \"weight\": 47,\n                            \"type_category\": \"Agglomérations\"\n                        },\n                        \"agglomeration\": {\n                            \"id\": 4,\n                            \"organization_id\": 52,\n                            \"name\": \"Grand Paris Sud\",\n                            \"slug\": \"grand-paris-sud\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                                \"alt\": \"image de profil de Grand Paris Sud\"\n                            }\n                        }\n                    }\n                ],\n                \"department_titles\": [],\n                \"region_titles\": []\n            },\n            \"infos\": {\n                \"phone\": \"01 64 88 15 00\",\n                \"email\": \"dorothee.moureaux@gmail.com\",\n                \"contact\": \"\",\n                \"website\": \"\",\n                \"social\": {\n                    \"facebook\": \"https://www.facebook.com/dorothee.bezard?fref=nf\",\n                    \"twitter\": \"https://twitter.com/DoroMour\",\n                    \"googleplus\": \"https://plus.google.com/104223993599899344953/posts\",\n                    \"instagram\": \"\",\n                    \"linkedin\": \"\",\n                    \"viadeo\": \"\",\n                    \"flickr\": \"\",\n                    \"youtube\": \"\",\n                    \"dailymotion\": \"\",\n                    \"vimeo\": \"\",\n                    \"medium\": \"\",\n                    \"rss\": \"\",\n                    \"snapcode_svg\": \"\",\n                    \"messenger\": null,\n                    \"allocine\": null\n                }\n            }\n        },\n        {\n            \"id\": 38,\n            \"person_id\": 34,\n            \"civility\": \"Mme\",\n            \"first_name\": \"Fatiha\",\n            \"last_name\": \"Bensalem\",\n            \"slug\": \"fatiha-bensalem\",\n            \"blurb\": \"Conseiller communautaire de Grand Paris Sud, Maire adjoint de Savigny-le-Temple chargée de la Formation, de la Santé, de l'Emploi des jeunes et aux événements urbains\",\n            \"pages\": [\n                {\n                    \"id\": 212,\n                    \"instance\": {\n                        \"slug\": \"portail-institutionnel-gps\"\n                    }\n                }\n            ],\n            \"profile_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/495/logo_small/Fatiha_BENSALEM_Savigny_le_Temple_Grand_Paris_Sud.jpg?1458249996\",\n                \"small_dimensions\": \"100x150\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/495/logo_medium/Fatiha_BENSALEM_Savigny_le_Temple_Grand_Paris_Sud.jpg?1458249996\",\n                \"medium_dimensions\": \"266x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/495/logo_large/Fatiha_BENSALEM_Savigny_le_Temple_Grand_Paris_Sud.jpg?1458249996\",\n                \"large_dimensions\": \"399x600\",\n                \"alt\": \"image de profil de Fatiha Bensalem\",\n                \"name\": \"image de profil de Fatiha Bensalem\",\n                \"slug\": \"image-de-profil-de-fatiha-bensalem\",\n                \"description\": \"image de profil de Fatiha Bensalem\",\n                \"copyright\": \"\"\n            },\n            \"titles\": {\n                \"city_titles\": [\n                    {\n                        \"id\": 70,\n                        \"title_type\": {\n                            \"id\": 7,\n                            \"name\": \"Maire adjointe\",\n                            \"subtitle\": \"chargée de la Formation, de la Santé, de l'Emploi des jeunes et aux événements urbains\",\n                            \"weight\": 1,\n                            \"type_category\": \"Communes\"\n                        },\n                        \"city\": {\n                            \"id\": 9,\n                            \"organization_id\": 55,\n                            \"name\": \"Savigny-le-Temple\",\n                            \"slug\": \"savigny-le-temple\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/070/logo_small/Logo-Savigny.png?1453972707\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/070/logo_medium/Logo-Savigny.png?1453972707\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/070/logo_large/Logo-Savigny.png?1453972707\",\n                                \"alt\": \"image de profil de Savigny-le-Temple\"\n                            }\n                        }\n                    }\n                ],\n                \"agglomeration_titles\": [\n                    {\n                        \"id\": 69,\n                        \"title_type\": {\n                            \"id\": 9,\n                            \"name\": \"Conseillère communautaire\",\n                            \"subtitle\": \"\",\n                            \"weight\": 29,\n                            \"type_category\": \"Agglomérations\"\n                        },\n                        \"agglomeration\": {\n                            \"id\": 4,\n                            \"organization_id\": 52,\n                            \"name\": \"Grand Paris Sud\",\n                            \"slug\": \"grand-paris-sud\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                                \"alt\": \"image de profil de Grand Paris Sud\"\n                            }\n                        }\n                    }\n                ],\n                \"department_titles\": [],\n                \"region_titles\": []\n            },\n            \"infos\": {\n                \"phone\": \"01 64 10 18 00\",\n                \"email\": \"\",\n                \"contact\": \"http://www.savigny-le-temple.fr/acces-direct/contacter-les-services\",\n                \"website\": \"\",\n                \"social\": {\n                    \"facebook\": \"\",\n                    \"twitter\": \"\",\n                    \"googleplus\": \"\",\n                    \"instagram\": \"\",\n                    \"linkedin\": \"\",\n                    \"viadeo\": \"\",\n                    \"flickr\": \"\",\n                    \"youtube\": \"\",\n                    \"dailymotion\": \"\",\n                    \"vimeo\": \"\",\n                    \"medium\": \"\",\n                    \"rss\": \"\",\n                    \"snapcode_svg\": \"\",\n                    \"messenger\": null,\n                    \"allocine\": null\n                }\n            }\n        },\n        {\n            \"id\": 40,\n            \"person_id\": 36,\n            \"civility\": \"M.\",\n            \"first_name\": \"Alain\",\n            \"last_name\": \"Briard\",\n            \"slug\": \"alain-briard\",\n            \"blurb\": \"Conseiller communautaire de Grand Paris Sud, Maire adjoint de Savigny-le-Temple chargé des Transports Collectifs et des Espaces Publics\",\n            \"pages\": [\n                {\n                    \"id\": 214,\n                    \"instance\": {\n                        \"slug\": \"portail-institutionnel-gps\"\n                    }\n                }\n            ],\n            \"profile_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/486/logo_small/Alain_BRIARD_Savigny_le_Temple_Grand_Paris_Sud.jpg?1458250226\",\n                \"small_dimensions\": \"100x150\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/486/logo_medium/Alain_BRIARD_Savigny_le_Temple_Grand_Paris_Sud.jpg?1458250226\",\n                \"medium_dimensions\": \"266x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/486/logo_large/Alain_BRIARD_Savigny_le_Temple_Grand_Paris_Sud.jpg?1458250226\",\n                \"large_dimensions\": \"399x600\",\n                \"alt\": \"image de profil de Alain Briard\",\n                \"name\": \"image de profil de Alain Briard\",\n                \"slug\": \"image-de-profil-de-alain-briard\",\n                \"description\": \"image de profil de Alain Briard\",\n                \"copyright\": \"\"\n            },\n            \"titles\": {\n                \"city_titles\": [\n                    {\n                        \"id\": 74,\n                        \"title_type\": {\n                            \"id\": 7,\n                            \"name\": \"Maire adjoint\",\n                            \"subtitle\": \"chargé des Transports Collectifs et des Espaces Publics\",\n                            \"weight\": 1,\n                            \"type_category\": \"Communes\"\n                        },\n                        \"city\": {\n                            \"id\": 9,\n                            \"organization_id\": 55,\n                            \"name\": \"Savigny-le-Temple\",\n                            \"slug\": \"savigny-le-temple\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/070/logo_small/Logo-Savigny.png?1453972707\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/070/logo_medium/Logo-Savigny.png?1453972707\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/070/logo_large/Logo-Savigny.png?1453972707\",\n                                \"alt\": \"image de profil de Savigny-le-Temple\"\n                            }\n                        }\n                    }\n                ],\n                \"agglomeration_titles\": [\n                    {\n                        \"id\": 73,\n                        \"title_type\": {\n                            \"id\": 9,\n                            \"name\": \"Conseiller communautaire\",\n                            \"subtitle\": \"\",\n                            \"weight\": 32,\n                            \"type_category\": \"Agglomérations\"\n                        },\n                        \"agglomeration\": {\n                            \"id\": 4,\n                            \"organization_id\": 52,\n                            \"name\": \"Grand Paris Sud\",\n                            \"slug\": \"grand-paris-sud\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                                \"alt\": \"image de profil de Grand Paris Sud\"\n                            }\n                        }\n                    }\n                ],\n                \"department_titles\": [],\n                \"region_titles\": []\n            },\n            \"infos\": {\n                \"phone\": \"01 64 10 18 00\",\n                \"email\": \"\",\n                \"contact\": \"http://www.savigny-le-temple.fr/acces-direct/contacter-les-services\",\n                \"website\": \"alainbriard-slt77.elunet.fr\",\n                \"social\": {\n                    \"facebook\": \"\",\n                    \"twitter\": \"https://twitter.com/alain_briard/following\",\n                    \"googleplus\": \"\",\n                    \"instagram\": \"\",\n                    \"linkedin\": \"https://fr.linkedin.com/in/alain-briard-7960614b\",\n                    \"viadeo\": \"\",\n                    \"flickr\": \"\",\n                    \"youtube\": \"\",\n                    \"dailymotion\": \"\",\n                    \"vimeo\": \"\",\n                    \"medium\": \"\",\n                    \"rss\": \"\",\n                    \"snapcode_svg\": \"\",\n                    \"messenger\": null,\n                    \"allocine\": null\n                }\n            }\n        },\n        {\n            \"id\": 41,\n            \"person_id\": 37,\n            \"civility\": \"M.\",\n            \"first_name\": \"Maurice\",\n            \"last_name\": \"Pollet\",\n            \"slug\": \"maurice-pollet\",\n            \"blurb\": \"Conseiller communautaire de Grand Paris Sud, Maire adjoint de Savigny-le-Temple en charge de la Santé de Proximité\",\n            \"pages\": [\n                {\n                    \"id\": 215,\n                    \"instance\": {\n                        \"slug\": \"portail-institutionnel-gps\"\n                    }\n                }\n            ],\n            \"profile_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/483/logo_small/Maurice_POLLET_Savigny_le_Temple_Grand_Paris_Sud.jpg?1458250302\",\n                \"small_dimensions\": \"100x150\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/483/logo_medium/Maurice_POLLET_Savigny_le_Temple_Grand_Paris_Sud.jpg?1458250302\",\n                \"medium_dimensions\": \"266x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/483/logo_large/Maurice_POLLET_Savigny_le_Temple_Grand_Paris_Sud.jpg?1458250302\",\n                \"large_dimensions\": \"399x600\",\n                \"alt\": \"image de profil de Maurice Pollet\",\n                \"name\": \"image de profil de Maurice Pollet\",\n                \"slug\": \"image-de-profil-de-maurice-pollet\",\n                \"description\": \"image de profil de Maurice Pollet\",\n                \"copyright\": \"\"\n            },\n            \"titles\": {\n                \"city_titles\": [\n                    {\n                        \"id\": 75,\n                        \"title_type\": {\n                            \"id\": 7,\n                            \"name\": \"Maire adjoint\",\n                            \"subtitle\": \"en charge de la Santé de Proximité\",\n                            \"weight\": 1,\n                            \"type_category\": \"Communes\"\n                        },\n                        \"city\": {\n                            \"id\": 9,\n                            \"organization_id\": 55,\n                            \"name\": \"Savigny-le-Temple\",\n                            \"slug\": \"savigny-le-temple\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/070/logo_small/Logo-Savigny.png?1453972707\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/070/logo_medium/Logo-Savigny.png?1453972707\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/070/logo_large/Logo-Savigny.png?1453972707\",\n                                \"alt\": \"image de profil de Savigny-le-Temple\"\n                            }\n                        }\n                    }\n                ],\n                \"agglomeration_titles\": [\n                    {\n                        \"id\": 76,\n                        \"title_type\": {\n                            \"id\": 9,\n                            \"name\": \"Conseiller communautaire\",\n                            \"subtitle\": \"\",\n                            \"weight\": 52,\n                            \"type_category\": \"Agglomérations\"\n                        },\n                        \"agglomeration\": {\n                            \"id\": 4,\n                            \"organization_id\": 52,\n                            \"name\": \"Grand Paris Sud\",\n                            \"slug\": \"grand-paris-sud\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                                \"alt\": \"image de profil de Grand Paris Sud\"\n                            }\n                        }\n                    }\n                ],\n                \"department_titles\": [],\n                \"region_titles\": []\n            },\n            \"infos\": {\n                \"phone\": \"01 64 10 18 00\",\n                \"email\": \"\",\n                \"contact\": \"http://www.savigny-le-temple.fr/acces-direct/contacter-les-services\",\n                \"website\": \"\",\n                \"social\": {\n                    \"facebook\": \"https://www.facebook.com/pollet.maurice\",\n                    \"twitter\": \"https://twitter.com/MauricePOLLET\",\n                    \"googleplus\": \"\",\n                    \"instagram\": \"\",\n                    \"linkedin\": \"https://fr.linkedin.com/in/maurice-pollet-462ab976\",\n                    \"viadeo\": \"\",\n                    \"flickr\": \"\",\n                    \"youtube\": \"\",\n                    \"dailymotion\": \"\",\n                    \"vimeo\": \"\",\n                    \"medium\": \"\",\n                    \"rss\": \"\",\n                    \"snapcode_svg\": \"\",\n                    \"messenger\": null,\n                    \"allocine\": null\n                }\n            }\n        },\n        {\n            \"id\": 77,\n            \"person_id\": 73,\n            \"civility\": \"Mme\",\n            \"first_name\": \"Martine\",\n            \"last_name\": \"Bouin \",\n            \"slug\": \"martine-bouin\",\n            \"blurb\": \"Maire adjoint de Corbeil-Essonnes chargée des Affaires sociales, de la famille, de l'enfance et de la petite enfance, Conseiller communautaire de Grand Paris Sud\",\n            \"pages\": [\n                {\n                    \"id\": 251,\n                    \"instance\": {\n                        \"slug\": \"portail-institutionnel-gps\"\n                    }\n                }\n            ],\n            \"profile_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/180/logo_small/Martine_BOUIN_%28corbeil_essonnes%29.jpg?1458204512\",\n                \"small_dimensions\": \"100x150\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/180/logo_medium/Martine_BOUIN_%28corbeil_essonnes%29.jpg?1458204512\",\n                \"medium_dimensions\": \"266x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/180/logo_large/Martine_BOUIN_%28corbeil_essonnes%29.jpg?1458204512\",\n                \"large_dimensions\": \"399x600\",\n                \"alt\": \"image de profil de Martine Bouin \",\n                \"name\": \"image de profil de Martine Bouin \",\n                \"slug\": \"image-de-profil-de-martine-bouin\",\n                \"description\": \"image de profil de Martine Bouin \",\n                \"copyright\": \"\"\n            },\n            \"titles\": {\n                \"city_titles\": [\n                    {\n                        \"id\": 148,\n                        \"title_type\": {\n                            \"id\": 7,\n                            \"name\": \"Maire adjointe\",\n                            \"subtitle\": \"chargée des Affaires sociales, de la famille, de l'enfance et de la petite enfance\",\n                            \"weight\": 1,\n                            \"type_category\": \"Communes\"\n                        },\n                        \"city\": {\n                            \"id\": 8,\n                            \"organization_id\": 54,\n                            \"name\": \"Corbeil-Essonnes\",\n                            \"slug\": \"corbeil-essonnes\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/067/logo_small/corbeil-essonnes-grandparissud.png?1520348885\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/067/logo_medium/corbeil-essonnes-grandparissud.png?1520348885\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/067/logo_large/corbeil-essonnes-grandparissud.png?1520348885\",\n                                \"alt\": \"image de profil de Corbeil-Essonnes\"\n                            }\n                        }\n                    }\n                ],\n                \"agglomeration_titles\": [\n                    {\n                        \"id\": 147,\n                        \"title_type\": {\n                            \"id\": 9,\n                            \"name\": \"Conseillère communautaire\",\n                            \"subtitle\": \"\",\n                            \"weight\": 30,\n                            \"type_category\": \"Agglomérations\"\n                        },\n                        \"agglomeration\": {\n                            \"id\": 4,\n                            \"organization_id\": 52,\n                            \"name\": \"Grand Paris Sud\",\n                            \"slug\": \"grand-paris-sud\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                                \"alt\": \"image de profil de Grand Paris Sud\"\n                            }\n                        }\n                    }\n                ],\n                \"department_titles\": [],\n                \"region_titles\": []\n            },\n            \"infos\": {\n                \"phone\": \"01 60 89 71 79\",\n                \"email\": \"\",\n                \"contact\": \"\",\n                \"website\": \"\",\n                \"social\": {\n                    \"facebook\": \"\",\n                    \"twitter\": \"\",\n                    \"googleplus\": \"\",\n                    \"instagram\": \"\",\n                    \"linkedin\": \"\",\n                    \"viadeo\": \"\",\n                    \"flickr\": \"\",\n                    \"youtube\": \"\",\n                    \"dailymotion\": \"\",\n                    \"vimeo\": \"\",\n                    \"medium\": \"\",\n                    \"rss\": \"\",\n                    \"snapcode_svg\": \"\",\n                    \"messenger\": null,\n                    \"allocine\": null\n                }\n            }\n        },\n        {\n            \"id\": 78,\n            \"person_id\": 74,\n            \"civility\": \"M.\",\n            \"first_name\": \"Jean-François\",\n            \"last_name\": \"Bayle\",\n            \"slug\": \"jean-francois-bayle\",\n            \"blurb\": \"Conseiller communautaire de Grand Paris Sud, Maire adjoint de Corbeil-Essonnes chargé de l'Environnement, des transports et des télécommunications\",\n            \"pages\": [\n                {\n                    \"id\": 252,\n                    \"instance\": {\n                        \"slug\": \"portail-institutionnel-gps\"\n                    }\n                }\n            ],\n            \"profile_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/177/logo_small/Jean-Franc%C2%A6%C2%BAois_BAYLE_%28corbeil_essonnes%29.jpg?1458203909\",\n                \"small_dimensions\": \"100x150\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/177/logo_medium/Jean-Franc%C2%A6%C2%BAois_BAYLE_%28corbeil_essonnes%29.jpg?1458203909\",\n                \"medium_dimensions\": \"266x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/177/logo_large/Jean-Franc%C2%A6%C2%BAois_BAYLE_%28corbeil_essonnes%29.jpg?1458203909\",\n                \"large_dimensions\": \"399x600\",\n                \"alt\": \"image de profil de Jean-François Bayle\",\n                \"name\": \"image de profil de Jean-François Bayle\",\n                \"slug\": \"image-de-profil-de-jean-francois-bayle\",\n                \"description\": \"image de profil de Jean-François Bayle\",\n                \"copyright\": \"\"\n            },\n            \"titles\": {\n                \"city_titles\": [\n                    {\n                        \"id\": 149,\n                        \"title_type\": {\n                            \"id\": 7,\n                            \"name\": \"Maire adjoint\",\n                            \"subtitle\": \"chargé de l'Environnement, des transports et des télécommunications\",\n                            \"weight\": 1,\n                            \"type_category\": \"Communes\"\n                        },\n                        \"city\": {\n                            \"id\": 8,\n                            \"organization_id\": 54,\n                            \"name\": \"Corbeil-Essonnes\",\n                            \"slug\": \"corbeil-essonnes\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/067/logo_small/corbeil-essonnes-grandparissud.png?1520348885\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/067/logo_medium/corbeil-essonnes-grandparissud.png?1520348885\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/067/logo_large/corbeil-essonnes-grandparissud.png?1520348885\",\n                                \"alt\": \"image de profil de Corbeil-Essonnes\"\n                            }\n                        }\n                    }\n                ],\n                \"agglomeration_titles\": [\n                    {\n                        \"id\": 150,\n                        \"title_type\": {\n                            \"id\": 9,\n                            \"name\": \"Conseiller communautaire\",\n                            \"subtitle\": \"\",\n                            \"weight\": 27,\n                            \"type_category\": \"Agglomérations\"\n                        },\n                        \"agglomeration\": {\n                            \"id\": 4,\n                            \"organization_id\": 52,\n                            \"name\": \"Grand Paris Sud\",\n                            \"slug\": \"grand-paris-sud\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                                \"alt\": \"image de profil de Grand Paris Sud\"\n                            }\n                        }\n                    }\n                ],\n                \"department_titles\": [],\n                \"region_titles\": []\n            },\n            \"infos\": {\n                \"phone\": \"01 60 89 71 79\",\n                \"email\": \"\",\n                \"contact\": \"\",\n                \"website\": \"\",\n                \"social\": {\n                    \"facebook\": \"\",\n                    \"twitter\": \"\",\n                    \"googleplus\": \"\",\n                    \"instagram\": \"\",\n                    \"linkedin\": \"\",\n                    \"viadeo\": \"\",\n                    \"flickr\": \"\",\n                    \"youtube\": \"\",\n                    \"dailymotion\": \"\",\n                    \"vimeo\": \"\",\n                    \"medium\": \"\",\n                    \"rss\": \"\",\n                    \"snapcode_svg\": \"\",\n                    \"messenger\": null,\n                    \"allocine\": null\n                }\n            }\n        },\n        {\n            \"id\": 79,\n            \"person_id\": 75,\n            \"civility\": \"Mme\",\n            \"first_name\": \"Frédérique\",\n            \"last_name\": \"Garcia\",\n            \"slug\": \"frederique-garcia\",\n            \"blurb\": \"Conseiller communautaire de Grand Paris Sud, Maire adjoint de Corbeil-Essonnes chargée de l'Ecologie, du développement durable et du cadre de vie\",\n            \"pages\": [\n                {\n                    \"id\": 253,\n                    \"instance\": {\n                        \"slug\": \"portail-institutionnel-gps\"\n                    }\n                }\n            ],\n            \"profile_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/199/logo_small/Fre%C2%A6%C3%BCde%C2%A6%C3%BCrique_GARCIA_%28corbeil_essonnes%29.jpg?1458203644\",\n                \"small_dimensions\": \"100x150\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/199/logo_medium/Fre%C2%A6%C3%BCde%C2%A6%C3%BCrique_GARCIA_%28corbeil_essonnes%29.jpg?1458203644\",\n                \"medium_dimensions\": \"266x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/199/logo_large/Fre%C2%A6%C3%BCde%C2%A6%C3%BCrique_GARCIA_%28corbeil_essonnes%29.jpg?1458203644\",\n                \"large_dimensions\": \"399x600\",\n                \"alt\": \"image de profil de Frédérique Garcia\",\n                \"name\": \"image de profil de Frédérique Garcia\",\n                \"slug\": \"image-de-profil-de-frederique-garcia\",\n                \"description\": \"image de profil de Frédérique Garcia\",\n                \"copyright\": \"\"\n            },\n            \"titles\": {\n                \"city_titles\": [\n                    {\n                        \"id\": 151,\n                        \"title_type\": {\n                            \"id\": 7,\n                            \"name\": \"Maire adjointe\",\n                            \"subtitle\": \"chargée de l'Ecologie, du développement durable et du cadre de vie\",\n                            \"weight\": 1,\n                            \"type_category\": \"Communes\"\n                        },\n                        \"city\": {\n                            \"id\": 8,\n                            \"organization_id\": 54,\n                            \"name\": \"Corbeil-Essonnes\",\n                            \"slug\": \"corbeil-essonnes\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/067/logo_small/corbeil-essonnes-grandparissud.png?1520348885\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/067/logo_medium/corbeil-essonnes-grandparissud.png?1520348885\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/067/logo_large/corbeil-essonnes-grandparissud.png?1520348885\",\n                                \"alt\": \"image de profil de Corbeil-Essonnes\"\n                            }\n                        }\n                    }\n                ],\n                \"agglomeration_titles\": [\n                    {\n                        \"id\": 152,\n                        \"title_type\": {\n                            \"id\": 9,\n                            \"name\": \"Conseillère communautaire\",\n                            \"subtitle\": \"\",\n                            \"weight\": 40,\n                            \"type_category\": \"Agglomérations\"\n                        },\n                        \"agglomeration\": {\n                            \"id\": 4,\n                            \"organization_id\": 52,\n                            \"name\": \"Grand Paris Sud\",\n                            \"slug\": \"grand-paris-sud\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                                \"alt\": \"image de profil de Grand Paris Sud\"\n                            }\n                        }\n                    }\n                ],\n                \"department_titles\": [],\n                \"region_titles\": []\n            },\n            \"infos\": {\n                \"phone\": \"01 60 89 71 79\",\n                \"email\": \"\",\n                \"contact\": \"\",\n                \"website\": \"\",\n                \"social\": {\n                    \"facebook\": \"\",\n                    \"twitter\": \"\",\n                    \"googleplus\": \"\",\n                    \"instagram\": \"\",\n                    \"linkedin\": \"\",\n                    \"viadeo\": \"\",\n                    \"flickr\": \"\",\n                    \"youtube\": \"\",\n                    \"dailymotion\": \"\",\n                    \"vimeo\": \"\",\n                    \"medium\": \"\",\n                    \"rss\": \"\",\n                    \"snapcode_svg\": \"\",\n                    \"messenger\": null,\n                    \"allocine\": null\n                }\n            }\n        },\n        {\n            \"id\": 80,\n            \"person_id\": 76,\n            \"civility\": \"M.\",\n            \"first_name\": \"Damanguere Redanga\",\n            \"last_name\": \"N'Gaibona \",\n            \"slug\": \"damanguere-redanga-n-gaibona\",\n            \"blurb\": \"Maire adjoint de Corbeil-Essonnes chargé de la Vie associative, Conseiller communautaire de Grand Paris Sud\",\n            \"pages\": [\n                {\n                    \"id\": 254,\n                    \"instance\": {\n                        \"slug\": \"portail-institutionnel-gps\"\n                    }\n                }\n            ],\n            \"profile_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/202/logo_small/Damanguere_Redanga_N'GAIBONA_%28corbeil_essonne%29.jpg?1458202460\",\n                \"small_dimensions\": \"100x150\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/202/logo_medium/Damanguere_Redanga_N'GAIBONA_%28corbeil_essonne%29.jpg?1458202460\",\n                \"medium_dimensions\": \"266x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/202/logo_large/Damanguere_Redanga_N'GAIBONA_%28corbeil_essonne%29.jpg?1458202460\",\n                \"large_dimensions\": \"399x600\",\n                \"alt\": \"image de profil de Damanguere Redanga N'Gaibona \",\n                \"name\": \"image de profil de Damanguere Redanga N'Gaibona \",\n                \"slug\": \"image-de-profil-de-damanguere-redanga-n-gaibona\",\n                \"description\": \"image de profil de Damanguere Redanga N'Gaibona \",\n                \"copyright\": \"\"\n            },\n            \"titles\": {\n                \"city_titles\": [\n                    {\n                        \"id\": 153,\n                        \"title_type\": {\n                            \"id\": 7,\n                            \"name\": \"Maire adjoint\",\n                            \"subtitle\": \"chargé de la Vie associative\",\n                            \"weight\": 1,\n                            \"type_category\": \"Communes\"\n                        },\n                        \"city\": {\n                            \"id\": 8,\n                            \"organization_id\": 54,\n                            \"name\": \"Corbeil-Essonnes\",\n                            \"slug\": \"corbeil-essonnes\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/067/logo_small/corbeil-essonnes-grandparissud.png?1520348885\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/067/logo_medium/corbeil-essonnes-grandparissud.png?1520348885\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/067/logo_large/corbeil-essonnes-grandparissud.png?1520348885\",\n                                \"alt\": \"image de profil de Corbeil-Essonnes\"\n                            }\n                        }\n                    }\n                ],\n                \"agglomeration_titles\": [\n                    {\n                        \"id\": 154,\n                        \"title_type\": {\n                            \"id\": 9,\n                            \"name\": \"Conseiller communautaire\",\n                            \"subtitle\": \"\",\n                            \"weight\": 48,\n                            \"type_category\": \"Agglomérations\"\n                        },\n                        \"agglomeration\": {\n                            \"id\": 4,\n                            \"organization_id\": 52,\n                            \"name\": \"Grand Paris Sud\",\n                            \"slug\": \"grand-paris-sud\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                                \"alt\": \"image de profil de Grand Paris Sud\"\n                            }\n                        }\n                    }\n                ],\n                \"department_titles\": [],\n                \"region_titles\": []\n            },\n            \"infos\": {\n                \"phone\": \"01 60 89 71 79\",\n                \"email\": \"\",\n                \"contact\": \"\",\n                \"website\": \"\",\n                \"social\": {\n                    \"facebook\": \"\",\n                    \"twitter\": \"\",\n                    \"googleplus\": \"\",\n                    \"instagram\": \"\",\n                    \"linkedin\": \"\",\n                    \"viadeo\": \"\",\n                    \"flickr\": \"\",\n                    \"youtube\": \"\",\n                    \"dailymotion\": \"\",\n                    \"vimeo\": \"\",\n                    \"medium\": \"\",\n                    \"rss\": \"\",\n                    \"snapcode_svg\": \"\",\n                    \"messenger\": null,\n                    \"allocine\": null\n                }\n            }\n        },\n        {\n            \"id\": 81,\n            \"person_id\": 77,\n            \"civility\": \"M.\",\n            \"first_name\": \"Eugène \",\n            \"last_name\": \"Wittek\",\n            \"slug\": \"eugene-wittek\",\n            \"blurb\": \"Suppléant de Grand Paris Sud de Philippe Jumelle, Maire adjoint d'Étiolles chargé de la Tranquillité Publique, de la Prévention et des Transports\",\n            \"pages\": [\n                {\n                    \"id\": 255,\n                    \"instance\": {\n                        \"slug\": \"portail-institutionnel-gps\"\n                    }\n                }\n            ],\n            \"profile_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/508/logo_small/Euge%C2%A6%C3%87ne_WITTEK_%28etiolles.jpg?1458202885\",\n                \"small_dimensions\": \"100x150\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/508/logo_medium/Euge%C2%A6%C3%87ne_WITTEK_%28etiolles.jpg?1458202885\",\n                \"medium_dimensions\": \"266x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/508/logo_large/Euge%C2%A6%C3%87ne_WITTEK_%28etiolles.jpg?1458202885\",\n                \"large_dimensions\": \"399x600\",\n                \"alt\": \"image de profil de Eugène  Wittek\",\n                \"name\": \"image de profil de Eugène  Wittek\",\n                \"slug\": \"image-de-profil-de-eugene-wittek\",\n                \"description\": \"image de profil de Eugène  Wittek\",\n                \"copyright\": \"\"\n            },\n            \"titles\": {\n                \"city_titles\": [\n                    {\n                        \"id\": 155,\n                        \"title_type\": {\n                            \"id\": 7,\n                            \"name\": \"Maire adjoint\",\n                            \"subtitle\": \"chargé de la Tranquillité Publique, de la Prévention et des Transports\",\n                            \"weight\": 1,\n                            \"type_category\": \"Communes\"\n                        },\n                        \"city\": {\n                            \"id\": 27,\n                            \"organization_id\": 73,\n                            \"name\": \"Étiolles\",\n                            \"slug\": \"etiolles\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/121/logo_small/Logo-Etiolles.png?1453972796\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/121/logo_medium/Logo-Etiolles.png?1453972796\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/121/logo_large/Logo-Etiolles.png?1453972796\",\n                                \"alt\": \"image de profil de Etiolles\"\n                            }\n                        }\n                    }\n                ],\n                \"agglomeration_titles\": [\n                    {\n                        \"id\": 156,\n                        \"title_type\": {\n                            \"id\": 2,\n                            \"name\": \"Suppléant\",\n                            \"subtitle\": \"de Philippe Jumelle \",\n                            \"weight\": 12,\n                            \"type_category\": \"Agglomérations\"\n                        },\n                        \"agglomeration\": {\n                            \"id\": 4,\n                            \"organization_id\": 52,\n                            \"name\": \"Grand Paris Sud\",\n                            \"slug\": \"grand-paris-sud\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                                \"alt\": \"image de profil de Grand Paris Sud\"\n                            }\n                        }\n                    }\n                ],\n                \"department_titles\": [],\n                \"region_titles\": []\n            },\n            \"infos\": {\n                \"phone\": \"01 60 75 03 09\",\n                \"email\": \"mairie@etiolles.fr\",\n                \"contact\": \"\",\n                \"website\": \"\",\n                \"social\": {\n                    \"facebook\": \"\",\n                    \"twitter\": \"\",\n                    \"googleplus\": \"\",\n                    \"instagram\": \"\",\n                    \"linkedin\": \"\",\n                    \"viadeo\": \"\",\n                    \"flickr\": \"\",\n                    \"youtube\": \"\",\n                    \"dailymotion\": \"\",\n                    \"vimeo\": \"\",\n                    \"medium\": \"\",\n                    \"rss\": \"\",\n                    \"snapcode_svg\": \"\",\n                    \"messenger\": null,\n                    \"allocine\": null\n                }\n            }\n        },\n        {\n            \"id\": 82,\n            \"person_id\": 78,\n            \"civility\": \"M.\",\n            \"first_name\": \"Michel\",\n            \"last_name\": \"Bernard\",\n            \"slug\": \"michel-bernard\",\n            \"blurb\": \"Suppléant de Grand Paris Sud de François Gros, Maire adjoint du Coudray-Montceaux chargé des Finances et du Développement Economique\",\n            \"pages\": [\n                {\n                    \"id\": 256,\n                    \"instance\": {\n                        \"slug\": \"portail-institutionnel-gps\"\n                    }\n                }\n            ],\n            \"profile_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/581/logo_small/Michel_Bernard_Le_Coudray_Montceaux_Grand_Paris_Sud.jpg?1457450192\",\n                \"small_dimensions\": \"129x150\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/581/logo_medium/Michel_Bernard_Le_Coudray_Montceaux_Grand_Paris_Sud.jpg?1457450192\",\n                \"medium_dimensions\": \"345x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/581/logo_large/Michel_Bernard_Le_Coudray_Montceaux_Grand_Paris_Sud.jpg?1457450192\",\n                \"large_dimensions\": \"518x600\",\n                \"alt\": \"image de profil de Michel Bernard\",\n                \"name\": \"image de profil de Michel Bernard\",\n                \"slug\": \"image-de-profil-de-michel-bernard\",\n                \"description\": \"image de profil de Michel Bernard\",\n                \"copyright\": \"\"\n            },\n            \"titles\": {\n                \"city_titles\": [\n                    {\n                        \"id\": 157,\n                        \"title_type\": {\n                            \"id\": 7,\n                            \"name\": \"Maire adjoint\",\n                            \"subtitle\": \"chargé des Finances et du Développement Economique \",\n                            \"weight\": 1,\n                            \"type_category\": \"Communes\"\n                        },\n                        \"city\": {\n                            \"id\": 26,\n                            \"organization_id\": 72,\n                            \"name\": \"Le Coudray-Montceaux\",\n                            \"slug\": \"le-coudray-montceaux\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/118/logo_small/Logo-Coudray-montceaux.png?1453972789\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/118/logo_medium/Logo-Coudray-montceaux.png?1453972789\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/118/logo_large/Logo-Coudray-montceaux.png?1453972789\",\n                                \"alt\": \"image de profil de Le Coudray-Montceaux\"\n                            }\n                        }\n                    }\n                ],\n                \"agglomeration_titles\": [\n                    {\n                        \"id\": 158,\n                        \"title_type\": {\n                            \"id\": 2,\n                            \"name\": \"Suppléant\",\n                            \"subtitle\": \"de François Gros\",\n                            \"weight\": 1,\n                            \"type_category\": \"Agglomérations\"\n                        },\n                        \"agglomeration\": {\n                            \"id\": 4,\n                            \"organization_id\": 52,\n                            \"name\": \"Grand Paris Sud\",\n                            \"slug\": \"grand-paris-sud\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                                \"alt\": \"image de profil de Grand Paris Sud\"\n                            }\n                        }\n                    }\n                ],\n                \"department_titles\": [],\n                \"region_titles\": []\n            },\n            \"infos\": {\n                \"phone\": \"01 64 93 81 12\",\n                \"email\": \"contact@mairie-lecoudraymontceaux.fr\",\n                \"contact\": \"\",\n                \"website\": \"\",\n                \"social\": {\n                    \"facebook\": \"\",\n                    \"twitter\": \"\",\n                    \"googleplus\": \"\",\n                    \"instagram\": \"\",\n                    \"linkedin\": \"\",\n                    \"viadeo\": \"\",\n                    \"flickr\": \"\",\n                    \"youtube\": \"\",\n                    \"dailymotion\": \"\",\n                    \"vimeo\": \"\",\n                    \"medium\": \"\",\n                    \"rss\": \"\",\n                    \"snapcode_svg\": \"\",\n                    \"messenger\": null,\n                    \"allocine\": null\n                }\n            }\n        },\n        {\n            \"id\": 83,\n            \"person_id\": 79,\n            \"civility\": \"M.\",\n            \"first_name\": \"Michel\",\n            \"last_name\": \"Souloumiac\",\n            \"slug\": \"michel-souloumiac\",\n            \"blurb\": \"Suppléant de Grand Paris Sud de Thierry Lafon, Maire adjoint de Lisses chargé des Finances et des Ressources Humaines\",\n            \"pages\": [\n                {\n                    \"id\": 257,\n                    \"instance\": {\n                        \"slug\": \"portail-institutionnel-gps\"\n                    }\n                }\n            ],\n            \"profile_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/215/logo_small/michel_souloumiac_lisses_grand_paris_sud.jpg?1461138087\",\n                \"small_dimensions\": \"100x150\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/215/logo_medium/michel_souloumiac_lisses_grand_paris_sud.jpg?1461138087\",\n                \"medium_dimensions\": \"267x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/215/logo_large/michel_souloumiac_lisses_grand_paris_sud.jpg?1461138087\",\n                \"large_dimensions\": \"400x600\",\n                \"alt\": \"image de profil de Michel Souloumiac\",\n                \"name\": \"image de profil de Michel Souloumiac\",\n                \"slug\": \"image-de-profil-de-michel-souloumiac\",\n                \"description\": \"image de profil de Michel Souloumiac\",\n                \"copyright\": \"\"\n            },\n            \"titles\": {\n                \"city_titles\": [\n                    {\n                        \"id\": 159,\n                        \"title_type\": {\n                            \"id\": 7,\n                            \"name\": \"Maire adjoint\",\n                            \"subtitle\": \"chargé des Finances et des Ressources Humaines\",\n                            \"weight\": 1,\n                            \"type_category\": \"Communes\"\n                        },\n                        \"city\": {\n                            \"id\": 19,\n                            \"organization_id\": 65,\n                            \"name\": \"Lisses\",\n                            \"slug\": \"lisses\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/097/logo_small/Sans_titre-1.png?1520348930\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/097/logo_medium/Sans_titre-1.png?1520348930\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/097/logo_large/Sans_titre-1.png?1520348930\",\n                                \"alt\": \"image de profil de Lisses\"\n                            }\n                        }\n                    }\n                ],\n                \"agglomeration_titles\": [\n                    {\n                        \"id\": 160,\n                        \"title_type\": {\n                            \"id\": 2,\n                            \"name\": \"Suppléant\",\n                            \"subtitle\": \"de Thierry Lafon\",\n                            \"weight\": 10,\n                            \"type_category\": \"Agglomérations\"\n                        },\n                        \"agglomeration\": {\n                            \"id\": 4,\n                            \"organization_id\": 52,\n                            \"name\": \"Grand Paris Sud\",\n                            \"slug\": \"grand-paris-sud\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                                \"alt\": \"image de profil de Grand Paris Sud\"\n                            }\n                        }\n                    }\n                ],\n                \"department_titles\": [],\n                \"region_titles\": []\n            },\n            \"infos\": {\n                \"phone\": \"01 69 11 40 00\",\n                \"email\": \"\",\n                \"contact\": \"\",\n                \"website\": \"\",\n                \"social\": {\n                    \"facebook\": \"\",\n                    \"twitter\": \"\",\n                    \"googleplus\": \"\",\n                    \"instagram\": \"\",\n                    \"linkedin\": \"\",\n                    \"viadeo\": \"\",\n                    \"flickr\": \"\",\n                    \"youtube\": \"\",\n                    \"dailymotion\": \"\",\n                    \"vimeo\": \"\",\n                    \"medium\": \"\",\n                    \"rss\": \"\",\n                    \"snapcode_svg\": \"\",\n                    \"messenger\": null,\n                    \"allocine\": null\n                }\n            }\n        },\n        {\n            \"id\": 84,\n            \"person_id\": 80,\n            \"civility\": \"M.\",\n            \"first_name\": \"Olivier\",\n            \"last_name\": \"Perrin\",\n            \"slug\": \"olivier-perrin\",\n            \"blurb\": \"Suppléant de Grand Paris Sud de Guy Rubens Duval, Maire adjoint de Morsang-sur-Seine chargé des Travaux\",\n            \"pages\": [\n                {\n                    \"id\": 258,\n                    \"instance\": {\n                        \"slug\": \"portail-institutionnel-gps\"\n                    }\n                }\n            ],\n            \"profile_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/510/logo_small/Olivier_PERRIN_Morsang_sur_Seine_Grand_Paris_Sud.jpg?1456993046\",\n                \"small_dimensions\": \"100x150\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/510/logo_medium/Olivier_PERRIN_Morsang_sur_Seine_Grand_Paris_Sud.jpg?1456993046\",\n                \"medium_dimensions\": \"267x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/510/logo_large/Olivier_PERRIN_Morsang_sur_Seine_Grand_Paris_Sud.jpg?1456993046\",\n                \"large_dimensions\": \"378x567\",\n                \"alt\": \"image de profil de Olivier Perrin\",\n                \"name\": \"image de profil de Olivier Perrin\",\n                \"slug\": \"image-de-profil-de-olivier-perrin\",\n                \"description\": \"image de profil de Olivier Perrin\",\n                \"copyright\": \"\"\n            },\n            \"titles\": {\n                \"city_titles\": [\n                    {\n                        \"id\": 161,\n                        \"title_type\": {\n                            \"id\": 7,\n                            \"name\": \"Maire adjoint\",\n                            \"subtitle\": \"chargé des Travaux\",\n                            \"weight\": 1,\n                            \"type_category\": \"Communes\"\n                        },\n                        \"city\": {\n                            \"id\": 30,\n                            \"organization_id\": 76,\n                            \"name\": \"Morsang-sur-Seine\",\n                            \"slug\": \"morsang-sur-seine\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/130/logo_small/Logo-Morsang-sur-seine.png?1453972810\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/130/logo_medium/Logo-Morsang-sur-seine.png?1453972810\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/130/logo_large/Logo-Morsang-sur-seine.png?1453972810\",\n                                \"alt\": \"image de profil de Morsang-sur-Seine\"\n                            }\n                        }\n                    }\n                ],\n                \"agglomeration_titles\": [\n                    {\n                        \"id\": 162,\n                        \"title_type\": {\n                            \"id\": 2,\n                            \"name\": \"Suppléant\",\n                            \"subtitle\": \"de Guy Rubens Duval \",\n                            \"weight\": 4,\n                            \"type_category\": \"Agglomérations\"\n                        },\n                        \"agglomeration\": {\n                            \"id\": 4,\n                            \"organization_id\": 52,\n                            \"name\": \"Grand Paris Sud\",\n                            \"slug\": \"grand-paris-sud\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                                \"alt\": \"image de profil de Grand Paris Sud\"\n                            }\n                        }\n                    }\n                ],\n                \"department_titles\": [],\n                \"region_titles\": []\n            },\n            \"infos\": {\n                \"phone\": \"01 69 25 39 00\",\n                \"email\": \"\",\n                \"contact\": \"\",\n                \"website\": \"\",\n                \"social\": {\n                    \"facebook\": \"\",\n                    \"twitter\": \"\",\n                    \"googleplus\": \"\",\n                    \"instagram\": \"\",\n                    \"linkedin\": \"\",\n                    \"viadeo\": \"\",\n                    \"flickr\": \"\",\n                    \"youtube\": \"\",\n                    \"dailymotion\": \"\",\n                    \"vimeo\": \"\",\n                    \"medium\": \"\",\n                    \"rss\": \"\",\n                    \"snapcode_svg\": \"\",\n                    \"messenger\": null,\n                    \"allocine\": null\n                }\n            }\n        },\n        {\n            \"id\": 85,\n            \"person_id\": 81,\n            \"civility\": \"M.\",\n            \"first_name\": \"Raymond\",\n            \"last_name\": \"Berteloot\",\n            \"slug\": \"raymond-berteloot\",\n            \"blurb\": \"Suppléant de Grand Paris Sud de Martine Cartau-Oury, Maire adjoint de Saintry-sur-Seine chargé de la Sécurité, du Handicap, des Anciens Combattants et du Devoir de Mémoire, des Travaux, de l'Environnement, du Cadre de Vie et du Développement Durable\",\n            \"pages\": [\n                {\n                    \"id\": 259,\n                    \"instance\": {\n                        \"slug\": \"portail-institutionnel-gps\"\n                    }\n                }\n            ],\n            \"profile_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/579/logo_small/Raymond_BERTELOOT_Saintry_sur_Seine_Grand_Paris_Sud.jpg?1458251618\",\n                \"small_dimensions\": \"100x150\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/579/logo_medium/Raymond_BERTELOOT_Saintry_sur_Seine_Grand_Paris_Sud.jpg?1458251618\",\n                \"medium_dimensions\": \"266x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/579/logo_large/Raymond_BERTELOOT_Saintry_sur_Seine_Grand_Paris_Sud.jpg?1458251618\",\n                \"large_dimensions\": \"399x600\",\n                \"alt\": \"image de profil de Raymond Berteloot\",\n                \"name\": \"image de profil de Raymond Berteloot\",\n                \"slug\": \"image-de-profil-de-raymond-berteloot\",\n                \"description\": \"image de profil de Raymond Berteloot\",\n                \"copyright\": \"\"\n            },\n            \"titles\": {\n                \"city_titles\": [\n                    {\n                        \"id\": 163,\n                        \"title_type\": {\n                            \"id\": 7,\n                            \"name\": \"Maire adjoint\",\n                            \"subtitle\": \"chargé de la Sécurité, du Handicap, des Anciens Combattants et du Devoir de Mémoire, des Travaux, de l'Environnement, du Cadre de Vie et du Développement Durable\",\n                            \"weight\": 1,\n                            \"type_category\": \"Communes\"\n                        },\n                        \"city\": {\n                            \"id\": 24,\n                            \"organization_id\": 70,\n                            \"name\": \"Saintry-sur-Seine\",\n                            \"slug\": \"saintry-sur-seine\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/112/logo_small/logo-Mairie.png?1463046613\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/112/logo_medium/logo-Mairie.png?1463046613\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/112/logo_large/logo-Mairie.png?1463046613\",\n                                \"alt\": \"image de profil de Saintry-sur-Seine\"\n                            }\n                        }\n                    }\n                ],\n                \"agglomeration_titles\": [\n                    {\n                        \"id\": 164,\n                        \"title_type\": {\n                            \"id\": 2,\n                            \"name\": \"Suppléant\",\n                            \"subtitle\": \"de Martine Cartau-Oury\",\n                            \"weight\": 2,\n                            \"type_category\": \"Agglomérations\"\n                        },\n                        \"agglomeration\": {\n                            \"id\": 4,\n                            \"organization_id\": 52,\n                            \"name\": \"Grand Paris Sud\",\n                            \"slug\": \"grand-paris-sud\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                                \"alt\": \"image de profil de Grand Paris Sud\"\n                            }\n                        }\n                    }\n                ],\n                \"department_titles\": [],\n                \"region_titles\": []\n            },\n            \"infos\": {\n                \"phone\": \"01 69 89 52 52\",\n                \"email\": \"\",\n                \"contact\": \"\",\n                \"website\": \"\",\n                \"social\": {\n                    \"facebook\": \"\",\n                    \"twitter\": \"\",\n                    \"googleplus\": \"\",\n                    \"instagram\": \"\",\n                    \"linkedin\": \"\",\n                    \"viadeo\": \"\",\n                    \"flickr\": \"\",\n                    \"youtube\": \"\",\n                    \"dailymotion\": \"\",\n                    \"vimeo\": \"\",\n                    \"medium\": \"\",\n                    \"rss\": \"\",\n                    \"snapcode_svg\": \"\",\n                    \"messenger\": null,\n                    \"allocine\": null\n                }\n            }\n        },\n        {\n            \"id\": 86,\n            \"person_id\": 82,\n            \"civility\": \"Mme\",\n            \"first_name\": \"Elisabeth\",\n            \"last_name\": \"Petitdidier\",\n            \"slug\": \"elisabeth-petitdidier\",\n            \"blurb\": \"Suppléant de Grand Paris Sud de Jean-Baptiste Rousseau, Maire adjoint de Soisy-sur-Seine chargée du Personnel, de la Culture, de la Vie Économique et des Relations Intercommunales\",\n            \"pages\": [\n                {\n                    \"id\": 260,\n                    \"instance\": {\n                        \"slug\": \"portail-institutionnel-gps\"\n                    }\n                }\n            ],\n            \"profile_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/580/logo_small/Elisabeth_Petitdidier_Soisy_sur_Seine_Grand_Paris_Sud.jpg?1458250502\",\n                \"small_dimensions\": \"100x150\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/580/logo_medium/Elisabeth_Petitdidier_Soisy_sur_Seine_Grand_Paris_Sud.jpg?1458250502\",\n                \"medium_dimensions\": \"266x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/580/logo_large/Elisabeth_Petitdidier_Soisy_sur_Seine_Grand_Paris_Sud.jpg?1458250502\",\n                \"large_dimensions\": \"399x600\",\n                \"alt\": \"image de profil de Elisabeth Petitdidier\",\n                \"name\": \"image de profil de Elisabeth Petitdidier\",\n                \"slug\": \"image-de-profil-de-elisabeth-petitdidier\",\n                \"description\": \"image de profil de Elisabeth Petitdidier\",\n                \"copyright\": \"\"\n            },\n            \"titles\": {\n                \"city_titles\": [\n                    {\n                        \"id\": 165,\n                        \"title_type\": {\n                            \"id\": 7,\n                            \"name\": \"Maire adjointe\",\n                            \"subtitle\": \"chargée du Personnel, de la Culture, de la Vie Économique et des Relations Intercommunales\",\n                            \"weight\": 1,\n                            \"type_category\": \"Communes\"\n                        },\n                        \"city\": {\n                            \"id\": 22,\n                            \"organization_id\": 68,\n                            \"name\": \"Soisy-sur-Seine\",\n                            \"slug\": \"soisy-sur-seine\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/106/logo_small/Logo-Soisy-sur-seine.png?1453972766\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/106/logo_medium/Logo-Soisy-sur-seine.png?1453972766\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/106/logo_large/Logo-Soisy-sur-seine.png?1453972766\",\n                                \"alt\": \"image de profil de Soisy-sur-Seine\"\n                            }\n                        }\n                    }\n                ],\n                \"agglomeration_titles\": [\n                    {\n                        \"id\": 166,\n                        \"title_type\": {\n                            \"id\": 2,\n                            \"name\": \"Suppléante\",\n                            \"subtitle\": \"de Jean-Baptiste Rousseau\",\n                            \"weight\": 5,\n                            \"type_category\": \"Agglomérations\"\n                        },\n                        \"agglomeration\": {\n                            \"id\": 4,\n                            \"organization_id\": 52,\n                            \"name\": \"Grand Paris Sud\",\n                            \"slug\": \"grand-paris-sud\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                                \"alt\": \"image de profil de Grand Paris Sud\"\n                            }\n                        }\n                    }\n                ],\n                \"department_titles\": [],\n                \"region_titles\": []\n            },\n            \"infos\": {\n                \"phone\": \"01 69 89 71 71\",\n                \"email\": \"\",\n                \"contact\": \"\",\n                \"website\": \"http://www.soisysurseine.fr/\",\n                \"social\": {\n                    \"facebook\": \"\",\n                    \"twitter\": \"\",\n                    \"googleplus\": \"\",\n                    \"instagram\": \"\",\n                    \"linkedin\": \"\",\n                    \"viadeo\": \"\",\n                    \"flickr\": \"\",\n                    \"youtube\": \"\",\n                    \"dailymotion\": \"\",\n                    \"vimeo\": \"\",\n                    \"medium\": \"\",\n                    \"rss\": \"\",\n                    \"snapcode_svg\": \"\",\n                    \"messenger\": null,\n                    \"allocine\": null\n                }\n            }\n        },\n        {\n            \"id\": 87,\n            \"person_id\": 83,\n            \"civility\": \"M.\",\n            \"first_name\": \"Philippe\",\n            \"last_name\": \"Rouger\",\n            \"slug\": \"philippe-rouger\",\n            \"blurb\": \"Suppléant de Grand Paris Sud de Yann Petel, Maire adjoint de Saint-Germain-lès-Corbeil chargé des Finances\",\n            \"pages\": [\n                {\n                    \"id\": 261,\n                    \"instance\": {\n                        \"slug\": \"portail-institutionnel-gps\"\n                    }\n                }\n            ],\n            \"profile_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/509/logo_small/Philippe_Rouger_Saint_Germain_les_Corbeil_Grand_Paris_Sud.jpg?1456992871\",\n                \"small_dimensions\": \"126x150\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/509/logo_medium/Philippe_Rouger_Saint_Germain_les_Corbeil_Grand_Paris_Sud.jpg?1456992871\",\n                \"medium_dimensions\": \"337x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/509/logo_large/Philippe_Rouger_Saint_Germain_les_Corbeil_Grand_Paris_Sud.jpg?1456992871\",\n                \"large_dimensions\": \"505x600\",\n                \"alt\": \"image de profil de Philippe Rouger\",\n                \"name\": \"image de profil de Philippe Rouger\",\n                \"slug\": \"image-de-profil-de-philippe-rouger\",\n                \"description\": \"image de profil de Philippe Rouger\",\n                \"copyright\": \"\"\n            },\n            \"titles\": {\n                \"city_titles\": [\n                    {\n                        \"id\": 167,\n                        \"title_type\": {\n                            \"id\": 7,\n                            \"name\": \"Maire adjoint\",\n                            \"subtitle\": \"chargé des Finances \",\n                            \"weight\": 1,\n                            \"type_category\": \"Communes\"\n                        },\n                        \"city\": {\n                            \"id\": 20,\n                            \"organization_id\": 66,\n                            \"name\": \"Saint-Germain-lès-Corbeil\",\n                            \"slug\": \"saint-germain-les-corbeil\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/100/logo_small/Logo-St-germain-les-corbeils.png?1453972757\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/100/logo_medium/Logo-St-germain-les-corbeils.png?1453972757\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/100/logo_large/Logo-St-germain-les-corbeils.png?1453972757\",\n                                \"alt\": \"image de profil de Saint-Germain-lès-Corbeil\"\n                            }\n                        }\n                    }\n                ],\n                \"agglomeration_titles\": [\n                    {\n                        \"id\": 168,\n                        \"title_type\": {\n                            \"id\": 2,\n                            \"name\": \"Suppléant\",\n                            \"subtitle\": \"de Yann Petel\",\n                            \"weight\": 8,\n                            \"type_category\": \"Agglomérations\"\n                        },\n                        \"agglomeration\": {\n                            \"id\": 4,\n                            \"organization_id\": 52,\n                            \"name\": \"Grand Paris Sud\",\n                            \"slug\": \"grand-paris-sud\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                                \"alt\": \"image de profil de Grand Paris Sud\"\n                            }\n                        }\n                    }\n                ],\n                \"department_titles\": [],\n                \"region_titles\": []\n            },\n            \"infos\": {\n                \"phone\": \"01 69 89 70 70\",\n                \"email\": \"\",\n                \"contact\": \"\",\n                \"website\": \"\",\n                \"social\": {\n                    \"facebook\": \"\",\n                    \"twitter\": \"\",\n                    \"googleplus\": \"\",\n                    \"instagram\": \"\",\n                    \"linkedin\": \"\",\n                    \"viadeo\": \"\",\n                    \"flickr\": \"\",\n                    \"youtube\": \"\",\n                    \"dailymotion\": \"\",\n                    \"vimeo\": \"\",\n                    \"medium\": \"\",\n                    \"rss\": \"\",\n                    \"snapcode_svg\": \"\",\n                    \"messenger\": null,\n                    \"allocine\": null\n                }\n            }\n        },\n        {\n            \"id\": 88,\n            \"person_id\": 84,\n            \"civility\": \"M.\",\n            \"first_name\": \"Jean-Luc\",\n            \"last_name\": \"Raffy \",\n            \"slug\": \"jean-luc-raffy\",\n            \"blurb\": \"Suppléant de Grand Paris Sud de Jean Crosnier, Maire adjoint de Tigery chargé de l'Urbanisme et du Développement Economique\",\n            \"pages\": [\n                {\n                    \"id\": 262,\n                    \"instance\": {\n                        \"slug\": \"portail-institutionnel-gps\"\n                    }\n                }\n            ],\n            \"profile_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/673/logo_small/raffy_jean-luc_Tigery_Grand_Paris_Sud.jpg?1457608046\",\n                \"small_dimensions\": \"133x150\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/673/logo_medium/raffy_jean-luc_Tigery_Grand_Paris_Sud.jpg?1457608046\",\n                \"medium_dimensions\": \"356x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/673/logo_large/raffy_jean-luc_Tigery_Grand_Paris_Sud.jpg?1457608046\",\n                \"large_dimensions\": \"534x600\",\n                \"alt\": \"image de profil de Jean-Luc Raffy \",\n                \"name\": \"image de profil de Jean-Luc Raffy \",\n                \"slug\": \"image-de-profil-de-jean-luc-raffy\",\n                \"description\": \"image de profil de Jean-Luc Raffy \",\n                \"copyright\": \"\"\n            },\n            \"titles\": {\n                \"city_titles\": [\n                    {\n                        \"id\": 169,\n                        \"title_type\": {\n                            \"id\": 7,\n                            \"name\": \"Maire adjoint\",\n                            \"subtitle\": \"chargé de l'Urbanisme et du Développement Economique\",\n                            \"weight\": 1,\n                            \"type_category\": \"Communes\"\n                        },\n                        \"city\": {\n                            \"id\": 28,\n                            \"organization_id\": 74,\n                            \"name\": \"Tigery\",\n                            \"slug\": \"tigery\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/124/logo_small/logo_Tigery_Grand_Paris_Sud.png?1463047551\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/124/logo_medium/logo_Tigery_Grand_Paris_Sud.png?1463047551\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/124/logo_large/logo_Tigery_Grand_Paris_Sud.png?1463047551\",\n                                \"alt\": \"image de profil de Tigery\"\n                            }\n                        }\n                    }\n                ],\n                \"agglomeration_titles\": [\n                    {\n                        \"id\": 170,\n                        \"title_type\": {\n                            \"id\": 2,\n                            \"name\": \"Suppléant\",\n                            \"subtitle\": \"de Jean Crosnier\",\n                            \"weight\": 6,\n                            \"type_category\": \"Agglomérations\"\n                        },\n                        \"agglomeration\": {\n                            \"id\": 4,\n                            \"organization_id\": 52,\n                            \"name\": \"Grand Paris Sud\",\n                            \"slug\": \"grand-paris-sud\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                                \"alt\": \"image de profil de Grand Paris Sud\"\n                            }\n                        }\n                    }\n                ],\n                \"department_titles\": [],\n                \"region_titles\": []\n            },\n            \"infos\": {\n                \"phone\": \"01 60 75 17 97\",\n                \"email\": \"mairie@tigery.fr\",\n                \"contact\": \"\",\n                \"website\": \"\",\n                \"social\": {\n                    \"facebook\": \"\",\n                    \"twitter\": \"\",\n                    \"googleplus\": \"\",\n                    \"instagram\": \"\",\n                    \"linkedin\": \"\",\n                    \"viadeo\": \"\",\n                    \"flickr\": \"\",\n                    \"youtube\": \"\",\n                    \"dailymotion\": \"\",\n                    \"vimeo\": \"\",\n                    \"medium\": \"\",\n                    \"rss\": \"\",\n                    \"snapcode_svg\": \"\",\n                    \"messenger\": null,\n                    \"allocine\": null\n                }\n            }\n        },\n        {\n            \"id\": 89,\n            \"person_id\": 85,\n            \"civility\": \"Mme\",\n            \"first_name\": \"Jeanine\",\n            \"last_name\": \"Trinquecostes-Dupriez\",\n            \"slug\": \"jeanine-trinquecostes-dupriez\",\n            \"blurb\": \"Suppléant de Grand Paris Sud d'Éric Bareille, Maire adjoint de Vert-Saint-Denis chargée des Affaires Culturelles et Animations\",\n            \"pages\": [\n                {\n                    \"id\": 263,\n                    \"instance\": {\n                        \"slug\": \"portail-institutionnel-gps\"\n                    }\n                }\n            ],\n            \"profile_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/649/logo_small/jeanine_trinquecoste_dupriez_vert_saint_denis_grand_paris_sud.jpg?1461138125\",\n                \"small_dimensions\": \"100x150\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/649/logo_medium/jeanine_trinquecoste_dupriez_vert_saint_denis_grand_paris_sud.jpg?1461138125\",\n                \"medium_dimensions\": \"267x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/649/logo_large/jeanine_trinquecoste_dupriez_vert_saint_denis_grand_paris_sud.jpg?1461138125\",\n                \"large_dimensions\": \"400x600\",\n                \"alt\": \"image de profil de Jeanine Trinquecostes-Dupriez\",\n                \"name\": \"image de profil de Jeanine Trinquecostes-Dupriez\",\n                \"slug\": \"image-de-profil-de-jeanine-trinquecostes-dupriez\",\n                \"description\": \"image de profil de Jeanine Trinquecostes-Dupriez\",\n                \"copyright\": \"\"\n            },\n            \"titles\": {\n                \"city_titles\": [\n                    {\n                        \"id\": 171,\n                        \"title_type\": {\n                            \"id\": 7,\n                            \"name\": \"Maire adjointe\",\n                            \"subtitle\": \"chargée des Affaires Culturelles et Animations\",\n                            \"weight\": 1,\n                            \"type_category\": \"Communes\"\n                        },\n                        \"city\": {\n                            \"id\": 21,\n                            \"organization_id\": 67,\n                            \"name\": \"Vert-Saint-Denis\",\n                            \"slug\": \"vert-saint-denis\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/103/logo_small/Logo-Vert-st-denis.png?1453972761\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/103/logo_medium/Logo-Vert-st-denis.png?1453972761\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/103/logo_large/Logo-Vert-st-denis.png?1453972761\",\n                                \"alt\": \"image de profil de Vert-Saint-Denis\"\n                            }\n                        }\n                    }\n                ],\n                \"agglomeration_titles\": [\n                    {\n                        \"id\": 172,\n                        \"title_type\": {\n                            \"id\": 2,\n                            \"name\": \"Suppléante\",\n                            \"subtitle\": \"d'Éric Bareille \",\n                            \"weight\": 11,\n                            \"type_category\": \"Agglomérations\"\n                        },\n                        \"agglomeration\": {\n                            \"id\": 4,\n                            \"organization_id\": 52,\n                            \"name\": \"Grand Paris Sud\",\n                            \"slug\": \"grand-paris-sud\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                                \"alt\": \"image de profil de Grand Paris Sud\"\n                            }\n                        }\n                    }\n                ],\n                \"department_titles\": [],\n                \"region_titles\": []\n            },\n            \"infos\": {\n                \"phone\": \"01 60 63 38 91\",\n                \"email\": \"\",\n                \"contact\": \"http://www.vert-saint-denis.fr/contact/\",\n                \"website\": \"\",\n                \"social\": {\n                    \"facebook\": \"\",\n                    \"twitter\": \"\",\n                    \"googleplus\": \"\",\n                    \"instagram\": \"\",\n                    \"linkedin\": \"\",\n                    \"viadeo\": \"\",\n                    \"flickr\": \"\",\n                    \"youtube\": \"\",\n                    \"dailymotion\": \"\",\n                    \"vimeo\": \"\",\n                    \"medium\": \"\",\n                    \"rss\": \"\",\n                    \"snapcode_svg\": \"\",\n                    \"messenger\": null,\n                    \"allocine\": null\n                }\n            }\n        },\n        {\n            \"id\": 90,\n            \"person_id\": 86,\n            \"civility\": \"M.\",\n            \"first_name\": \"Fabrice\",\n            \"last_name\": \"Rouzic\",\n            \"slug\": \"fabrice-rouzic\",\n            \"blurb\": \"Suppléant de Grand Paris Sud de Karl Dirat, Maire adjoint de Villabé chargé de la Stratégie Financière et du Développement Économique\",\n            \"pages\": [\n                {\n                    \"id\": 264,\n                    \"instance\": {\n                        \"slug\": \"portail-institutionnel-gps\"\n                    }\n                }\n            ],\n            \"profile_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/836/logo_small/Fabrice_ROUZIC_Villabe_Grand_Paris_Sud.jpg?1458250738\",\n                \"small_dimensions\": \"100x150\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/836/logo_medium/Fabrice_ROUZIC_Villabe_Grand_Paris_Sud.jpg?1458250738\",\n                \"medium_dimensions\": \"266x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/836/logo_large/Fabrice_ROUZIC_Villabe_Grand_Paris_Sud.jpg?1458250738\",\n                \"large_dimensions\": \"399x600\",\n                \"alt\": \"image de profil de Fabrice Rouzic\",\n                \"name\": \"image de profil de Fabrice Rouzic\",\n                \"slug\": \"image-de-profil-de-fabrice-rouzic\",\n                \"description\": \"image de profil de Fabrice Rouzic\",\n                \"copyright\": \"\"\n            },\n            \"titles\": {\n                \"city_titles\": [\n                    {\n                        \"id\": 173,\n                        \"title_type\": {\n                            \"id\": 7,\n                            \"name\": \"Maire adjoint\",\n                            \"subtitle\": \"chargé de la Stratégie Financière et du Développement Économique\",\n                            \"weight\": 1,\n                            \"type_category\": \"Communes\"\n                        },\n                        \"city\": {\n                            \"id\": 25,\n                            \"organization_id\": 71,\n                            \"name\": \"Villabé\",\n                            \"slug\": \"villabe\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/115/logo_small/villabe-grandparissud.png?1520348702\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/115/logo_medium/villabe-grandparissud.png?1520348702\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/115/logo_large/villabe-grandparissud.png?1520348702\",\n                                \"alt\": \"image de profil de Villabé\"\n                            }\n                        }\n                    }\n                ],\n                \"agglomeration_titles\": [\n                    {\n                        \"id\": 174,\n                        \"title_type\": {\n                            \"id\": 2,\n                            \"name\": \"Suppléant\",\n                            \"subtitle\": \"de Karl Dirat \",\n                            \"weight\": 9,\n                            \"type_category\": \"Agglomérations\"\n                        },\n                        \"agglomeration\": {\n                            \"id\": 4,\n                            \"organization_id\": 52,\n                            \"name\": \"Grand Paris Sud\",\n                            \"slug\": \"grand-paris-sud\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                                \"alt\": \"image de profil de Grand Paris Sud\"\n                            }\n                        }\n                    }\n                ],\n                \"department_titles\": [],\n                \"region_titles\": []\n            },\n            \"infos\": {\n                \"phone\": null,\n                \"email\": \"contact@mairie-villabe.fr\",\n                \"contact\": \"\",\n                \"website\": \"\",\n                \"social\": {\n                    \"facebook\": \"\",\n                    \"twitter\": \"\",\n                    \"googleplus\": \"\",\n                    \"instagram\": \"\",\n                    \"linkedin\": \"\",\n                    \"viadeo\": \"\",\n                    \"flickr\": \"\",\n                    \"youtube\": \"\",\n                    \"dailymotion\": \"\",\n                    \"vimeo\": \"\",\n                    \"medium\": \"\",\n                    \"rss\": \"\",\n                    \"snapcode_svg\": \"\",\n                    \"messenger\": null,\n                    \"allocine\": null\n                }\n            }\n        },\n        {\n            \"id\": 91,\n            \"person_id\": 87,\n            \"civility\": \"M.\",\n            \"first_name\": \"Bernard\",\n            \"last_name\": \"Bailly\",\n            \"slug\": \"bernard-bailly\",\n            \"blurb\": \"Conseiller communautaire de Grand Paris Sud chargé des achats publics, Conseiller municipal de Combs-la-Ville\",\n            \"pages\": [\n                {\n                    \"id\": 265,\n                    \"instance\": {\n                        \"slug\": \"portail-institutionnel-gps\"\n                    }\n                }\n            ],\n            \"profile_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/600/logo_small/Bernard_BAILLY_%28combs%29.jpg?1458201813\",\n                \"small_dimensions\": \"100x150\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/600/logo_medium/Bernard_BAILLY_%28combs%29.jpg?1458201813\",\n                \"medium_dimensions\": \"266x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/600/logo_large/Bernard_BAILLY_%28combs%29.jpg?1458201813\",\n                \"large_dimensions\": \"399x600\",\n                \"alt\": \"image de profil de Bernard Bailly\",\n                \"name\": \"image de profil de Bernard Bailly\",\n                \"slug\": \"image-de-profil-de-bernard-bailly\",\n                \"description\": \"image de profil de Bernard Bailly\",\n                \"copyright\": \"\"\n            },\n            \"titles\": {\n                \"city_titles\": [\n                    {\n                        \"id\": 175,\n                        \"title_type\": {\n                            \"id\": 8,\n                            \"name\": \"Conseiller municipal\",\n                            \"subtitle\": \"\",\n                            \"weight\": 1,\n                            \"type_category\": \"Communes\"\n                        },\n                        \"city\": {\n                            \"id\": 12,\n                            \"organization_id\": 58,\n                            \"name\": \"Combs-la-Ville\",\n                            \"slug\": \"combs-la-ville\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/076/logo_small/Logo-Combs-la-ville.png?1453972715\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/076/logo_medium/Logo-Combs-la-ville.png?1453972715\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/076/logo_large/Logo-Combs-la-ville.png?1453972715\",\n                                \"alt\": \"image de profil de Combs-la-Ville\"\n                            }\n                        }\n                    }\n                ],\n                \"agglomeration_titles\": [\n                    {\n                        \"id\": 176,\n                        \"title_type\": {\n                            \"id\": 9,\n                            \"name\": \"Conseiller communautaire\",\n                            \"subtitle\": \"chargé des achats publics\",\n                            \"weight\": 9,\n                            \"type_category\": \"Agglomérations\"\n                        },\n                        \"agglomeration\": {\n                            \"id\": 4,\n                            \"organization_id\": 52,\n                            \"name\": \"Grand Paris Sud\",\n                            \"slug\": \"grand-paris-sud\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                                \"alt\": \"image de profil de Grand Paris Sud\"\n                            }\n                        }\n                    }\n                ],\n                \"department_titles\": [],\n                \"region_titles\": []\n            },\n            \"infos\": {\n                \"phone\": \"01 64 13 16 00\",\n                \"email\": \"\",\n                \"contact\": \"http://www.combs-la-ville.fr/outils/contactez-nous.htm\",\n                \"website\": \"\",\n                \"social\": {\n                    \"facebook\": \"\",\n                    \"twitter\": \"\",\n                    \"googleplus\": \"\",\n                    \"instagram\": \"\",\n                    \"linkedin\": \"\",\n                    \"viadeo\": \"\",\n                    \"flickr\": \"\",\n                    \"youtube\": \"\",\n                    \"dailymotion\": \"\",\n                    \"vimeo\": \"\",\n                    \"medium\": \"\",\n                    \"rss\": \"\",\n                    \"snapcode_svg\": \"\",\n                    \"messenger\": null,\n                    \"allocine\": null\n                }\n            }\n        },\n        {\n            \"id\": 92,\n            \"person_id\": 88,\n            \"civility\": \"Mme\",\n            \"first_name\": \"Françoise\",\n            \"last_name\": \"Savy\",\n            \"slug\": \"francoise-savy\",\n            \"blurb\": \"Conseiller communautaire de Grand Paris Sud chargée de l’éducation, Conseiller municipal de Combs-la-Ville\",\n            \"pages\": [\n                {\n                    \"id\": 266,\n                    \"instance\": {\n                        \"slug\": \"portail-institutionnel-gps\"\n                    }\n                }\n            ],\n            \"profile_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/612/logo_small/Franc%C2%A6%C2%BAoise_SAVY_%28combs%29.jpg?1458203301\",\n                \"small_dimensions\": \"100x150\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/612/logo_medium/Franc%C2%A6%C2%BAoise_SAVY_%28combs%29.jpg?1458203301\",\n                \"medium_dimensions\": \"266x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/612/logo_large/Franc%C2%A6%C2%BAoise_SAVY_%28combs%29.jpg?1458203301\",\n                \"large_dimensions\": \"399x600\",\n                \"alt\": \"image de profil de Françoise Savy\",\n                \"name\": \"image de profil de Françoise Savy\",\n                \"slug\": \"image-de-profil-de-francoise-savy\",\n                \"description\": \"image de profil de Françoise Savy\",\n                \"copyright\": \"\"\n            },\n            \"titles\": {\n                \"city_titles\": [\n                    {\n                        \"id\": 177,\n                        \"title_type\": {\n                            \"id\": 8,\n                            \"name\": \"Conseillère municipale\",\n                            \"subtitle\": \"\",\n                            \"weight\": 1,\n                            \"type_category\": \"Communes\"\n                        },\n                        \"city\": {\n                            \"id\": 12,\n                            \"organization_id\": 58,\n                            \"name\": \"Combs-la-Ville\",\n                            \"slug\": \"combs-la-ville\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/076/logo_small/Logo-Combs-la-ville.png?1453972715\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/076/logo_medium/Logo-Combs-la-ville.png?1453972715\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/076/logo_large/Logo-Combs-la-ville.png?1453972715\",\n                                \"alt\": \"image de profil de Combs-la-Ville\"\n                            }\n                        }\n                    }\n                ],\n                \"agglomeration_titles\": [\n                    {\n                        \"id\": 178,\n                        \"title_type\": {\n                            \"id\": 9,\n                            \"name\": \"Conseillère communautaire\",\n                            \"subtitle\": \"chargée de l’éducation\",\n                            \"weight\": 18,\n                            \"type_category\": \"Agglomérations\"\n                        },\n                        \"agglomeration\": {\n                            \"id\": 4,\n                            \"organization_id\": 52,\n                            \"name\": \"Grand Paris Sud\",\n                            \"slug\": \"grand-paris-sud\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                                \"alt\": \"image de profil de Grand Paris Sud\"\n                            }\n                        }\n                    }\n                ],\n                \"department_titles\": [],\n                \"region_titles\": []\n            },\n            \"infos\": {\n                \"phone\": \"01 64 13 16 00\",\n                \"email\": \"\",\n                \"contact\": \"http://www.combs-la-ville.fr/outils/contactez-nous.htm\",\n                \"website\": \"\",\n                \"social\": {\n                    \"facebook\": \"https://www.facebook.com/francoise.savy.1?ref=ts&fref=ts\",\n                    \"twitter\": \"\",\n                    \"googleplus\": \"\",\n                    \"instagram\": \"\",\n                    \"linkedin\": \"\",\n                    \"viadeo\": \"\",\n                    \"flickr\": \"\",\n                    \"youtube\": \"\",\n                    \"dailymotion\": \"\",\n                    \"vimeo\": \"\",\n                    \"medium\": \"\",\n                    \"rss\": \"\",\n                    \"snapcode_svg\": \"\",\n                    \"messenger\": null,\n                    \"allocine\": null\n                }\n            }\n        },\n        {\n            \"id\": 93,\n            \"person_id\": 89,\n            \"civility\": \"M.\",\n            \"first_name\": \"Guy\",\n            \"last_name\": \"Geoffroy\",\n            \"slug\": \"guy-geoffroy\",\n            \"blurb\": \"Député de Seine-et-Marne de la 9ème circonscription, Conseiller communautaire de Grand Paris Sud président de la Conférence des Maires, Maire de Combs-la-Ville\",\n            \"pages\": [\n                {\n                    \"id\": 267,\n                    \"instance\": {\n                        \"slug\": \"portail-institutionnel-gps\"\n                    }\n                }\n            ],\n            \"profile_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/603/logo_small/guy_geoffroy_combs_la_ville_grand_paris_sud.jpg?1461138050\",\n                \"small_dimensions\": \"100x150\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/603/logo_medium/guy_geoffroy_combs_la_ville_grand_paris_sud.jpg?1461138050\",\n                \"medium_dimensions\": \"267x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/603/logo_large/guy_geoffroy_combs_la_ville_grand_paris_sud.jpg?1461138050\",\n                \"large_dimensions\": \"400x600\",\n                \"alt\": \"image de profil de Guy Geoffroy\",\n                \"name\": \"image de profil de Guy Geoffroy\",\n                \"slug\": \"image-de-profil-de-guy-geoffroy\",\n                \"description\": \"image de profil de Guy Geoffroy\",\n                \"copyright\": \"\"\n            },\n            \"titles\": {\n                \"city_titles\": [\n                    {\n                        \"id\": 179,\n                        \"title_type\": {\n                            \"id\": 6,\n                            \"name\": \"Maire\",\n                            \"subtitle\": \"\",\n                            \"weight\": 1,\n                            \"type_category\": \"Communes\"\n                        },\n                        \"city\": {\n                            \"id\": 12,\n                            \"organization_id\": 58,\n                            \"name\": \"Combs-la-Ville\",\n                            \"slug\": \"combs-la-ville\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/076/logo_small/Logo-Combs-la-ville.png?1453972715\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/076/logo_medium/Logo-Combs-la-ville.png?1453972715\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/076/logo_large/Logo-Combs-la-ville.png?1453972715\",\n                                \"alt\": \"image de profil de Combs-la-Ville\"\n                            }\n                        }\n                    }\n                ],\n                \"agglomeration_titles\": [\n                    {\n                        \"id\": 180,\n                        \"title_type\": {\n                            \"id\": 9,\n                            \"name\": \"Conseiller communautaire\",\n                            \"subtitle\": \"président de la Conférence des Maires\",\n                            \"weight\": 41,\n                            \"type_category\": \"Agglomérations\"\n                        },\n                        \"agglomeration\": {\n                            \"id\": 4,\n                            \"organization_id\": 52,\n                            \"name\": \"Grand Paris Sud\",\n                            \"slug\": \"grand-paris-sud\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                                \"alt\": \"image de profil de Grand Paris Sud\"\n                            }\n                        }\n                    }\n                ],\n                \"department_titles\": [\n                    {\n                        \"id\": 187,\n                        \"title_type\": {\n                            \"id\": 13,\n                            \"name\": \"Député\",\n                            \"subtitle\": \"de la 9ème circonscription\",\n                            \"weight\": 1,\n                            \"type_category\": \"Départements\"\n                        },\n                        \"department\": {\n                            \"id\": 7,\n                            \"organization_id\": 51,\n                            \"name\": \"Seine-et-Marne\",\n                            \"slug\": \"seine-et-marne\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/922/logo_small/Logo-Seine-et-marne.png?1455044375\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/922/logo_medium/Logo-Seine-et-marne.png?1455044375\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/922/logo_large/Logo-Seine-et-marne.png?1455044375\",\n                                \"alt\": \"image de profil de Seine-et-Marne\"\n                            }\n                        }\n                    }\n                ],\n                \"region_titles\": []\n            },\n            \"infos\": {\n                \"phone\": \"01 64 13 16 00\",\n                \"email\": \"\",\n                \"contact\": \"http://www.combs-la-ville.fr/outils/contactez-nous.htm\",\n                \"website\": \"https://guygeoffroydepute.wordpress.com/\",\n                \"social\": {\n                    \"facebook\": \"https://www.facebook.com/guy.geoffroy.35?ref=ts&fref=ts\",\n                    \"twitter\": \"https://twitter.com/GuyGeoffroy\",\n                    \"googleplus\": \"\",\n                    \"instagram\": \"\",\n                    \"linkedin\": \"\",\n                    \"viadeo\": \"\",\n                    \"flickr\": \"\",\n                    \"youtube\": \"\",\n                    \"dailymotion\": \"\",\n                    \"vimeo\": \"\",\n                    \"medium\": \"\",\n                    \"rss\": \"\",\n                    \"snapcode_svg\": \"\",\n                    \"messenger\": null,\n                    \"allocine\": null\n                }\n            }\n        },\n        {\n            \"id\": 116,\n            \"person_id\": 112,\n            \"civility\": \"M.\",\n            \"first_name\": \"Germain \",\n            \"last_name\": \"Dupont \",\n            \"slug\": \"germain-dupont\",\n            \"pages\": [\n                {\n                    \"id\": 8289,\n                    \"instance\": {\n                        \"slug\": \"portail-institutionnel-gps\"\n                    }\n                }\n            ],\n            \"profile_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/023/859/logo_small/Germain-Dupont-grandparissud.jpg?1519747921\",\n                \"small_dimensions\": \"106x150\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/023/859/logo_medium/Germain-Dupont-grandparissud.jpg?1519747921\",\n                \"medium_dimensions\": \"282x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/023/859/logo_large/Germain-Dupont-grandparissud.jpg?1519747921\",\n                \"large_dimensions\": \"423x600\",\n                \"alt\": \"image de profil de Germain  Dupont \",\n                \"name\": \"image de profil de Germain  Dupont \",\n                \"slug\": null,\n                \"description\": \"image de profil de Germain  Dupont \",\n                \"copyright\": \"\"\n            },\n            \"titles\": {\n                \"city_titles\": [\n                    {\n                        \"id\": 212,\n                        \"title_type\": {\n                            \"id\": 7,\n                            \"name\": \"Maire adjoint\",\n                            \"subtitle\": \"délégué aux Travaux et à la Sécurité\",\n                            \"weight\": 1,\n                            \"type_category\": \"Communes\"\n                        },\n                        \"city\": {\n                            \"id\": 28,\n                            \"organization_id\": 74,\n                            \"name\": \"Tigery\",\n                            \"slug\": \"tigery\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/124/logo_small/logo_Tigery_Grand_Paris_Sud.png?1463047551\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/124/logo_medium/logo_Tigery_Grand_Paris_Sud.png?1463047551\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/124/logo_large/logo_Tigery_Grand_Paris_Sud.png?1463047551\",\n                                \"alt\": \"image de profil de Tigery\"\n                            }\n                        }\n                    }\n                ],\n                \"agglomeration_titles\": [\n                    {\n                        \"id\": 211,\n                        \"title_type\": {\n                            \"id\": 9,\n                            \"name\": \"Conseiller communautaire\",\n                            \"subtitle\": \"chargé de l'agriculture \",\n                            \"weight\": 1,\n                            \"type_category\": \"Agglomérations\"\n                        },\n                        \"agglomeration\": {\n                            \"id\": 4,\n                            \"organization_id\": 52,\n                            \"name\": \"Grand Paris Sud\",\n                            \"slug\": \"grand-paris-sud\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                                \"alt\": \"image de profil de Grand Paris Sud\"\n                            }\n                        }\n                    }\n                ],\n                \"department_titles\": [],\n                \"region_titles\": []\n            },\n            \"infos\": {\n                \"phone\": null,\n                \"email\": \"\",\n                \"contact\": \"\",\n                \"website\": \"\",\n                \"social\": {\n                    \"facebook\": \"\",\n                    \"twitter\": \"\",\n                    \"googleplus\": \"\",\n                    \"instagram\": \"\",\n                    \"linkedin\": \"\",\n                    \"viadeo\": \"\",\n                    \"flickr\": \"\",\n                    \"youtube\": \"\",\n                    \"dailymotion\": \"\",\n                    \"vimeo\": \"\",\n                    \"medium\": \"\",\n                    \"rss\": \"\",\n                    \"snapcode_svg\": \"\",\n                    \"messenger\": \"\",\n                    \"allocine\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 105,\n            \"person_id\": 101,\n            \"civility\": \"Mme\",\n            \"first_name\": \"Berdjouhi\",\n            \"last_name\": \"Vassilian-Karadelian\",\n            \"slug\": \"berdjouhi-vassilian-karadelian\",\n            \"blurb\": \"Conseillère communautaire de Grand Paris Sud et Conseillère municipale d'Évry\",\n            \"pages\": [\n                {\n                    \"id\": 5611,\n                    \"instance\": {\n                        \"slug\": \"portail-institutionnel-gps\"\n                    }\n                }\n            ],\n            \"profile_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/019/901/logo_small/Berdjouhi-Vassilian-Karadelian-grandparissud.jpg?1495030351\",\n                \"small_dimensions\": \"100x150\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/019/901/logo_medium/Berdjouhi-Vassilian-Karadelian-grandparissud.jpg?1495030351\",\n                \"medium_dimensions\": \"267x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/019/901/logo_large/Berdjouhi-Vassilian-Karadelian-grandparissud.jpg?1495030351\",\n                \"large_dimensions\": \"400x600\",\n                \"alt\": \"image de profil de Berdjouhi Vassilian-Karadelian\",\n                \"name\": \"image de profil de Berdjouhi Vassilian-Karadelian\",\n                \"slug\": \"image-de-profil-de-berdjouhi-vassilian-karadelian\",\n                \"description\": \"image de profil de Berdjouhi Vassilian-Karadelian\",\n                \"copyright\": \"\"\n            },\n            \"titles\": {\n                \"city_titles\": [\n                    {\n                        \"id\": 199,\n                        \"title_type\": {\n                            \"id\": 8,\n                            \"name\": \"Conseillère municipale\",\n                            \"subtitle\": \"\",\n                            \"weight\": 1,\n                            \"type_category\": \"Communes\"\n                        },\n                        \"city\": {\n                            \"id\": 7,\n                            \"organization_id\": 53,\n                            \"name\": \"Évry\",\n                            \"slug\": \"evry\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/066/logo_small/Logo-Evry.png?1453972695\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/066/logo_medium/Logo-Evry.png?1453972695\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/066/logo_large/Logo-Evry.png?1453972695\",\n                                \"alt\": \"image de profil de Évry\"\n                            }\n                        }\n                    }\n                ],\n                \"agglomeration_titles\": [\n                    {\n                        \"id\": 200,\n                        \"title_type\": {\n                            \"id\": 9,\n                            \"name\": \"Conseillère communautaire\",\n                            \"subtitle\": \"\",\n                            \"weight\": 21,\n                            \"type_category\": \"Agglomérations\"\n                        },\n                        \"agglomeration\": {\n                            \"id\": 4,\n                            \"organization_id\": 52,\n                            \"name\": \"Grand Paris Sud\",\n                            \"slug\": \"grand-paris-sud\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                                \"alt\": \"image de profil de Grand Paris Sud\"\n                            }\n                        }\n                    }\n                ],\n                \"department_titles\": [],\n                \"region_titles\": []\n            },\n            \"infos\": {\n                \"phone\": null,\n                \"email\": \"mairie-evry@mairie-evry.fr\",\n                \"contact\": \"\",\n                \"website\": \"\",\n                \"social\": {\n                    \"facebook\": \"\",\n                    \"twitter\": \"\",\n                    \"googleplus\": \"\",\n                    \"instagram\": \"\",\n                    \"linkedin\": \"\",\n                    \"viadeo\": \"\",\n                    \"flickr\": \"\",\n                    \"youtube\": \"\",\n                    \"dailymotion\": \"\",\n                    \"vimeo\": \"\",\n                    \"medium\": \"\",\n                    \"rss\": \"\",\n                    \"snapcode_svg\": \"\",\n                    \"messenger\": \"\",\n                    \"allocine\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 2,\n            \"person_id\": 2,\n            \"civility\": \"Mme\",\n            \"first_name\": \"Laurence\",\n            \"last_name\": \"Hequet\",\n            \"slug\": \"laurence-hequet\",\n            \"blurb\": \"Conseiller communautaire de Grand Paris Sud chargée des solidarités, Maire adjoint de Courcouronnes chargée de l'Emploi et de la Politique de la Ville\",\n            \"pages\": [\n                {\n                    \"id\": 184,\n                    \"instance\": {\n                        \"slug\": \"portail-institutionnel-gps\"\n                    }\n                }\n            ],\n            \"profile_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/082/logo_small/Laurence_Hequet_Courcouronnes_Grand_Paris_Sud.jpg?1458568469\",\n                \"small_dimensions\": \"100x150\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/082/logo_medium/Laurence_Hequet_Courcouronnes_Grand_Paris_Sud.jpg?1458568469\",\n                \"medium_dimensions\": \"266x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/082/logo_large/Laurence_Hequet_Courcouronnes_Grand_Paris_Sud.jpg?1458568469\",\n                \"large_dimensions\": \"399x600\",\n                \"alt\": \"image de profil de Laurence Hequet\",\n                \"name\": \"image de profil de Laurence Hequet\",\n                \"slug\": \"image-de-profil-de-laurence-hequet\",\n                \"description\": \"image de profil de Laurence Hequet\",\n                \"copyright\": \"\"\n            },\n            \"titles\": {\n                \"city_titles\": [\n                    {\n                        \"id\": 49,\n                        \"title_type\": {\n                            \"id\": 7,\n                            \"name\": \"Maire adjointe\",\n                            \"subtitle\": \"Chargée de l'Emploi et de la Politique de la Ville\",\n                            \"weight\": 1,\n                            \"type_category\": \"Communes\"\n                        },\n                        \"city\": {\n                            \"id\": 14,\n                            \"organization_id\": 60,\n                            \"name\": \"Courcouronnes\",\n                            \"slug\": \"courcouronnes\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/082/logo_small/Logo-Courcouronnes.png?1453972725\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/082/logo_medium/Logo-Courcouronnes.png?1453972725\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/082/logo_large/Logo-Courcouronnes.png?1453972725\",\n                                \"alt\": \"image de profil de Courcouronnes\"\n                            }\n                        }\n                    }\n                ],\n                \"agglomeration_titles\": [\n                    {\n                        \"id\": 44,\n                        \"title_type\": {\n                            \"id\": 9,\n                            \"name\": \"Conseillère communautaire\",\n                            \"subtitle\": \"chargée des solidarités\",\n                            \"weight\": 13,\n                            \"type_category\": \"Agglomérations\"\n                        },\n                        \"agglomeration\": {\n                            \"id\": 4,\n                            \"organization_id\": 52,\n                            \"name\": \"Grand Paris Sud\",\n                            \"slug\": \"grand-paris-sud\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                                \"alt\": \"image de profil de Grand Paris Sud\"\n                            }\n                        }\n                    }\n                ],\n                \"department_titles\": [],\n                \"region_titles\": []\n            },\n            \"infos\": {\n                \"phone\": \"01 69 36 66 66\",\n                \"email\": \"secretariat.elus@courcouronnes.fr\",\n                \"contact\": \"\",\n                \"website\": \"\",\n                \"social\": {\n                    \"facebook\": \"https://www.facebook.com/laurence.hequet.56?fref=ts\",\n                    \"twitter\": \"\",\n                    \"googleplus\": \"\",\n                    \"instagram\": \"\",\n                    \"linkedin\": \"\",\n                    \"viadeo\": \"\",\n                    \"flickr\": \"\",\n                    \"youtube\": \"\",\n                    \"dailymotion\": \"\",\n                    \"vimeo\": \"\",\n                    \"medium\": \"\",\n                    \"rss\": \"\",\n                    \"snapcode_svg\": \"\",\n                    \"messenger\": null,\n                    \"allocine\": null\n                }\n            }\n        },\n        {\n            \"id\": 4,\n            \"person_id\": 4,\n            \"civility\": \"M.\",\n            \"first_name\": \"Francis\",\n            \"last_name\": \"Chouat\",\n            \"slug\": \"francis-chouat\",\n            \"blurb\": \"Président de Grand Paris Sud, Maire d'Évry\",\n            \"pages\": [\n                {\n                    \"id\": 186,\n                    \"instance\": {\n                        \"slug\": \"portail-institutionnel-gps\"\n                    }\n                }\n            ],\n            \"profile_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/296/logo_small/Francis_CHOUAT_pre%C2%A6%C3%BCsident__Grand_Paris_Sud.jpg?1458122879\",\n                \"small_dimensions\": \"100x150\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/296/logo_medium/Francis_CHOUAT_pre%C2%A6%C3%BCsident__Grand_Paris_Sud.jpg?1458122879\",\n                \"medium_dimensions\": \"266x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/296/logo_large/Francis_CHOUAT_pre%C2%A6%C3%BCsident__Grand_Paris_Sud.jpg?1458122879\",\n                \"large_dimensions\": \"399x600\",\n                \"alt\": \"image de profil de Francis Chouat\",\n                \"name\": \"image de profil de Francis Chouat\",\n                \"slug\": \"image-de-profil-de-francis-chouat\",\n                \"description\": \"image de profil de Francis Chouat\",\n                \"copyright\": \"\"\n            },\n            \"titles\": {\n                \"city_titles\": [\n                    {\n                        \"id\": 46,\n                        \"title_type\": {\n                            \"id\": 6,\n                            \"name\": \"Maire\",\n                            \"subtitle\": \"\",\n                            \"weight\": 1,\n                            \"type_category\": \"Communes\"\n                        },\n                        \"city\": {\n                            \"id\": 7,\n                            \"organization_id\": 53,\n                            \"name\": \"Évry\",\n                            \"slug\": \"evry\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/066/logo_small/Logo-Evry.png?1453972695\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/066/logo_medium/Logo-Evry.png?1453972695\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/066/logo_large/Logo-Evry.png?1453972695\",\n                                \"alt\": \"image de profil de Évry\"\n                            }\n                        }\n                    }\n                ],\n                \"agglomeration_titles\": [\n                    {\n                        \"id\": 47,\n                        \"title_type\": {\n                            \"id\": 10,\n                            \"name\": \"Président\",\n                            \"subtitle\": \"\",\n                            \"weight\": 1,\n                            \"type_category\": \"Agglomérations\"\n                        },\n                        \"agglomeration\": {\n                            \"id\": 4,\n                            \"organization_id\": 52,\n                            \"name\": \"Grand Paris Sud\",\n                            \"slug\": \"grand-paris-sud\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                                \"alt\": \"image de profil de Grand Paris Sud\"\n                            }\n                        }\n                    }\n                ],\n                \"department_titles\": [],\n                \"region_titles\": []\n            },\n            \"infos\": {\n                \"phone\": \"01 60 91 63 98\",\n                \"email\": \"\",\n                \"contact\": \"\",\n                \"website\": \"http://www.francischouat.fr/\",\n                \"social\": {\n                    \"facebook\": \"https://www.facebook.com/Francis-Chouat-171995776332003/\",\n                    \"twitter\": \"https://twitter.com/fchouat\",\n                    \"googleplus\": \"https://plus.google.com/100908924760967402865/posts\",\n                    \"instagram\": \"https://www.instagram.com/fchouat/\",\n                    \"linkedin\": \"\",\n                    \"viadeo\": \"\",\n                    \"flickr\": \"\",\n                    \"youtube\": \"\",\n                    \"dailymotion\": \"\",\n                    \"vimeo\": \"\",\n                    \"medium\": \"\",\n                    \"rss\": \"\",\n                    \"snapcode_svg\": \"\",\n                    \"messenger\": null,\n                    \"allocine\": null\n                }\n            }\n        },\n        {\n            \"id\": 5,\n            \"person_id\": 5,\n            \"civility\": \"M.\",\n            \"first_name\": \"Éric\",\n            \"last_name\": \"Bareille\",\n            \"slug\": \"eric-bareille\",\n            \"blurb\": \"Vice-président de Grand Paris Sud chargé de l’emploi, de l’insertion et de la formation professionnelle, Maire de Vert-Saint-Denis\",\n            \"pages\": [\n                {\n                    \"id\": 187,\n                    \"instance\": {\n                        \"slug\": \"portail-institutionnel-gps\"\n                    }\n                }\n            ],\n            \"profile_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/516/logo_small/Eric_BAREILLE_Vert_Saint_Denis_Grand_Paris_Sud.jpg?1458251394\",\n                \"small_dimensions\": \"100x150\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/516/logo_medium/Eric_BAREILLE_Vert_Saint_Denis_Grand_Paris_Sud.jpg?1458251394\",\n                \"medium_dimensions\": \"266x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/516/logo_large/Eric_BAREILLE_Vert_Saint_Denis_Grand_Paris_Sud.jpg?1458251394\",\n                \"large_dimensions\": \"399x600\",\n                \"alt\": \"image de profil de Éric Bareille\",\n                \"name\": \"image de profil de Éric Bareille\",\n                \"slug\": \"image-de-profil-de-eric-bareille\",\n                \"description\": \"image de profil de Éric Bareille\",\n                \"copyright\": \"\"\n            },\n            \"titles\": {\n                \"city_titles\": [\n                    {\n                        \"id\": 51,\n                        \"title_type\": {\n                            \"id\": 6,\n                            \"name\": \"Maire\",\n                            \"subtitle\": \"\",\n                            \"weight\": 1,\n                            \"type_category\": \"Communes\"\n                        },\n                        \"city\": {\n                            \"id\": 21,\n                            \"organization_id\": 67,\n                            \"name\": \"Vert-Saint-Denis\",\n                            \"slug\": \"vert-saint-denis\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/103/logo_small/Logo-Vert-st-denis.png?1453972761\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/103/logo_medium/Logo-Vert-st-denis.png?1453972761\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/103/logo_large/Logo-Vert-st-denis.png?1453972761\",\n                                \"alt\": \"image de profil de Vert-Saint-Denis\"\n                            }\n                        }\n                    }\n                ],\n                \"agglomeration_titles\": [\n                    {\n                        \"id\": 52,\n                        \"title_type\": {\n                            \"id\": 11,\n                            \"name\": \"Vice-président\",\n                            \"subtitle\": \"chargé de l’emploi, de l’insertion et de la formation professionnelle\",\n                            \"weight\": 11,\n                            \"type_category\": \"Agglomérations\"\n                        },\n                        \"agglomeration\": {\n                            \"id\": 4,\n                            \"organization_id\": 52,\n                            \"name\": \"Grand Paris Sud\",\n                            \"slug\": \"grand-paris-sud\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                                \"alt\": \"image de profil de Grand Paris Sud\"\n                            }\n                        }\n                    }\n                ],\n                \"department_titles\": [],\n                \"region_titles\": []\n            },\n            \"infos\": {\n                \"phone\": \"01 64 10 59 00\",\n                \"email\": \"\",\n                \"contact\": \"http://www.vert-saint-denis.fr/contact/\",\n                \"website\": \"\",\n                \"social\": {\n                    \"facebook\": \"\",\n                    \"twitter\": \"\",\n                    \"googleplus\": \"\",\n                    \"instagram\": \"\",\n                    \"linkedin\": \"\",\n                    \"viadeo\": \"\",\n                    \"flickr\": \"\",\n                    \"youtube\": \"\",\n                    \"dailymotion\": \"\",\n                    \"vimeo\": \"\",\n                    \"medium\": \"\",\n                    \"rss\": \"\",\n                    \"snapcode_svg\": \"\",\n                    \"messenger\": null,\n                    \"allocine\": null\n                }\n            }\n        },\n        {\n            \"id\": 11,\n            \"person_id\": 6,\n            \"civility\": \"M.\",\n            \"first_name\": \"Olivier\",\n            \"last_name\": \"Chaplet\",\n            \"slug\": \"olivier-chaplet\",\n            \"blurb\": \"Vice-président de Grand Paris Sud chargé de la sécurité et de la prévention, Maire de Cesson\",\n            \"pages\": [\n                {\n                    \"id\": 188,\n                    \"instance\": {\n                        \"slug\": \"portail-institutionnel-gps\"\n                    }\n                }\n            ],\n            \"profile_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/471/logo_small/Olivier_CHAPLET_%28cesson%29.jpg?1458204804\",\n                \"small_dimensions\": \"100x150\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/471/logo_medium/Olivier_CHAPLET_%28cesson%29.jpg?1458204804\",\n                \"medium_dimensions\": \"266x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/471/logo_large/Olivier_CHAPLET_%28cesson%29.jpg?1458204804\",\n                \"large_dimensions\": \"399x600\",\n                \"alt\": \"image de profil de Olivier Chaplet\",\n                \"name\": \"image de profil de Olivier Chaplet\",\n                \"slug\": \"image-de-profil-de-olivier-chaplet\",\n                \"description\": \"image de profil de Olivier Chaplet\",\n                \"copyright\": \"\"\n            },\n            \"titles\": {\n                \"city_titles\": [\n                    {\n                        \"id\": 1,\n                        \"title_type\": {\n                            \"id\": 6,\n                            \"name\": \"Maire\",\n                            \"subtitle\": \"\",\n                            \"weight\": 1,\n                            \"type_category\": \"Communes\"\n                        },\n                        \"city\": {\n                            \"id\": 17,\n                            \"organization_id\": 63,\n                            \"name\": \"Cesson\",\n                            \"slug\": \"cesson\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/091/logo_small/Logo-Cesson.png?1453972742\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/091/logo_medium/Logo-Cesson.png?1453972742\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/091/logo_large/Logo-Cesson.png?1453972742\",\n                                \"alt\": \"image de profil de Cesson\"\n                            }\n                        }\n                    }\n                ],\n                \"agglomeration_titles\": [\n                    {\n                        \"id\": 2,\n                        \"title_type\": {\n                            \"id\": 11,\n                            \"name\": \"Vice-président\",\n                            \"subtitle\": \"chargé de la sécurité et de la prévention\",\n                            \"weight\": 7,\n                            \"type_category\": \"Agglomérations\"\n                        },\n                        \"agglomeration\": {\n                            \"id\": 4,\n                            \"organization_id\": 52,\n                            \"name\": \"Grand Paris Sud\",\n                            \"slug\": \"grand-paris-sud\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                                \"alt\": \"image de profil de Grand Paris Sud\"\n                            }\n                        }\n                    }\n                ],\n                \"department_titles\": [],\n                \"region_titles\": []\n            },\n            \"infos\": {\n                \"phone\": \"01 64 10 51 00\",\n                \"email\": \"\",\n                \"contact\": \"\",\n                \"website\": \"http://unionpourcesson.com/\",\n                \"social\": {\n                    \"facebook\": \"https://www.facebook.com/olivier.chaplet?fref=ts\",\n                    \"twitter\": \"https://twitter.com/oc_cesson\",\n                    \"googleplus\": \"https://plus.google.com/104357551325716696110/posts\",\n                    \"instagram\": \"\",\n                    \"linkedin\": \"\",\n                    \"viadeo\": \"\",\n                    \"flickr\": \"\",\n                    \"youtube\": \"\",\n                    \"dailymotion\": \"\",\n                    \"vimeo\": \"\",\n                    \"medium\": \"\",\n                    \"rss\": \"\",\n                    \"snapcode_svg\": \"\",\n                    \"messenger\": null,\n                    \"allocine\": null\n                }\n            }\n        },\n        {\n            \"id\": 13,\n            \"person_id\": 8,\n            \"civility\": \"M.\",\n            \"first_name\": \"Michel\",\n            \"last_name\": \"Bisson\",\n            \"slug\": \"michel-bisson\",\n            \"blurb\": \"Maire de Lieusaint, Vice-président de Grand Paris Sud et président délégué chargé du développement économique, de la modernisation de l’action publique, de l’élaboration du projet de territoire, de la contractualisation, de l’élaboration du Pôle métropolitain\",\n            \"pages\": [\n                {\n                    \"id\": 189,\n                    \"instance\": {\n                        \"slug\": \"portail-institutionnel-gps\"\n                    }\n                }\n            ],\n            \"profile_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/055/logo_small/Michel_BISSON_%28lieusaint%29.jpg?1458204591\",\n                \"small_dimensions\": \"100x150\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/055/logo_medium/Michel_BISSON_%28lieusaint%29.jpg?1458204591\",\n                \"medium_dimensions\": \"266x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/055/logo_large/Michel_BISSON_%28lieusaint%29.jpg?1458204591\",\n                \"large_dimensions\": \"399x600\",\n                \"alt\": \"image de profil de Michel Bisson\",\n                \"name\": \"image de profil de Michel Bisson\",\n                \"slug\": \"image-de-profil-de-michel-bisson\",\n                \"description\": \"image de profil de Michel Bisson\",\n                \"copyright\": \"\"\n            },\n            \"titles\": {\n                \"city_titles\": [\n                    {\n                        \"id\": 6,\n                        \"title_type\": {\n                            \"id\": 6,\n                            \"name\": \"Maire\",\n                            \"subtitle\": \"\",\n                            \"weight\": 1,\n                            \"type_category\": \"Communes\"\n                        },\n                        \"city\": {\n                            \"id\": 15,\n                            \"organization_id\": 61,\n                            \"name\": \"Lieusaint\",\n                            \"slug\": \"lieusaint\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/085/logo_small/Logo-Lieusaint.png?1453972729\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/085/logo_medium/Logo-Lieusaint.png?1453972729\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/085/logo_large/Logo-Lieusaint.png?1453972729\",\n                                \"alt\": \"image de profil de Lieusaint\"\n                            }\n                        }\n                    }\n                ],\n                \"agglomeration_titles\": [\n                    {\n                        \"id\": 5,\n                        \"title_type\": {\n                            \"id\": 11,\n                            \"name\": \"Vice-président\",\n                            \"subtitle\": \"et président délégué chargé du développement économique, de la modernisation de l’action publique, de l’élaboration du projet de territoire, de la contractualisation, de l’élaboration du Pôle métropolitain\",\n                            \"weight\": 1,\n                            \"type_category\": \"Agglomérations\"\n                        },\n                        \"agglomeration\": {\n                            \"id\": 4,\n                            \"organization_id\": 52,\n                            \"name\": \"Grand Paris Sud\",\n                            \"slug\": \"grand-paris-sud\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                                \"alt\": \"image de profil de Grand Paris Sud\"\n                            }\n                        }\n                    }\n                ],\n                \"department_titles\": [],\n                \"region_titles\": []\n            },\n            \"infos\": {\n                \"phone\": \"01 64 13 55 55\",\n                \"email\": \"\",\n                \"contact\": \"\",\n                \"website\": \"\",\n                \"social\": {\n                    \"facebook\": \"https://www.facebook.com/michelbisson.77\",\n                    \"twitter\": \"\",\n                    \"googleplus\": \"\",\n                    \"instagram\": \"\",\n                    \"linkedin\": \"https://fr.linkedin.com/in/michel-bisson-09551629\",\n                    \"viadeo\": \"\",\n                    \"flickr\": \"\",\n                    \"youtube\": \"\",\n                    \"dailymotion\": \"\",\n                    \"vimeo\": \"\",\n                    \"medium\": \"\",\n                    \"rss\": \"\",\n                    \"snapcode_svg\": \"\",\n                    \"messenger\": null,\n                    \"allocine\": null\n                }\n            }\n        },\n        {\n            \"id\": 14,\n            \"person_id\": 9,\n            \"civility\": \"Mme\",\n            \"first_name\": \"Line\",\n            \"last_name\": \"Magne\",\n            \"slug\": \"line-magne\",\n            \"blurb\": \"Vice-président de Grand Paris Sud chargée de l’enseignement supérieur, de la recherche et de l’innovation, Maire de Moissy-Cramayel\",\n            \"pages\": [\n                {\n                    \"id\": 190,\n                    \"instance\": {\n                        \"slug\": \"portail-institutionnel-gps\"\n                    }\n                }\n            ],\n            \"profile_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/501/logo_small/Line_MAGNE_moissy_cramayel_Grand_Paris_Sud.jpg?1458123133\",\n                \"small_dimensions\": \"100x150\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/501/logo_medium/Line_MAGNE_moissy_cramayel_Grand_Paris_Sud.jpg?1458123133\",\n                \"medium_dimensions\": \"266x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/501/logo_large/Line_MAGNE_moissy_cramayel_Grand_Paris_Sud.jpg?1458123133\",\n                \"large_dimensions\": \"399x600\",\n                \"alt\": \"image de profil de Line Magne\",\n                \"name\": \"image de profil de Line Magne\",\n                \"slug\": \"image-de-profil-de-line-magne\",\n                \"description\": \"image de profil de Line Magne\",\n                \"copyright\": \"\"\n            },\n            \"titles\": {\n                \"city_titles\": [\n                    {\n                        \"id\": 7,\n                        \"title_type\": {\n                            \"id\": 6,\n                            \"name\": \"Maire\",\n                            \"subtitle\": \"\",\n                            \"weight\": 1,\n                            \"type_category\": \"Communes\"\n                        },\n                        \"city\": {\n                            \"id\": 13,\n                            \"organization_id\": 59,\n                            \"name\": \"Moissy-Cramayel\",\n                            \"slug\": \"moissy-cramayel\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/079/logo_small/Logo-Moissy-cramayel.png?1453972720\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/079/logo_medium/Logo-Moissy-cramayel.png?1453972720\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/079/logo_large/Logo-Moissy-cramayel.png?1453972720\",\n                                \"alt\": \"image de profil de Moissy-Cramayel\"\n                            }\n                        }\n                    }\n                ],\n                \"agglomeration_titles\": [\n                    {\n                        \"id\": 8,\n                        \"title_type\": {\n                            \"id\": 11,\n                            \"name\": \"Vice-présidente\",\n                            \"subtitle\": \"chargée de l’enseignement supérieur, de la recherche et de l’innovation\",\n                            \"weight\": 5,\n                            \"type_category\": \"Agglomérations\"\n                        },\n                        \"agglomeration\": {\n                            \"id\": 4,\n                            \"organization_id\": 52,\n                            \"name\": \"Grand Paris Sud\",\n                            \"slug\": \"grand-paris-sud\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                                \"alt\": \"image de profil de Grand Paris Sud\"\n                            }\n                        }\n                    }\n                ],\n                \"department_titles\": [],\n                \"region_titles\": []\n            },\n            \"infos\": {\n                \"phone\": \"01 64 88 15 00\",\n                \"email\": \"\",\n                \"contact\": \"\",\n                \"website\": \"http://linemagne.com\",\n                \"social\": {\n                    \"facebook\": \"https://www.facebook.com/linemagne\",\n                    \"twitter\": \"\",\n                    \"googleplus\": \"https://plus.google.com/111439015019465473938/posts\",\n                    \"instagram\": \"\",\n                    \"linkedin\": \"\",\n                    \"viadeo\": \"\",\n                    \"flickr\": \"\",\n                    \"youtube\": \"\",\n                    \"dailymotion\": \"\",\n                    \"vimeo\": \"\",\n                    \"medium\": \"\",\n                    \"rss\": \"\",\n                    \"snapcode_svg\": \"\",\n                    \"messenger\": null,\n                    \"allocine\": null\n                }\n            }\n        },\n        {\n            \"id\": 15,\n            \"person_id\": 10,\n            \"civility\": \"M.\",\n            \"first_name\": \"René\",\n            \"last_name\": \"Réthoré\",\n            \"slug\": \"rene-rethore\",\n            \"blurb\": \"Vice-président de Grand Paris Sud chargé de la culture et du patrimoine, Maire de Nandy\",\n            \"pages\": [\n                {\n                    \"id\": 191,\n                    \"instance\": {\n                        \"slug\": \"portail-institutionnel-gps\"\n                    }\n                }\n            ],\n            \"profile_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/504/logo_small/Rene%C2%A6%C3%BC_RETHORE_nandy_Grand_Paris_Sud.jpg?1458123185\",\n                \"small_dimensions\": \"100x150\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/504/logo_medium/Rene%C2%A6%C3%BC_RETHORE_nandy_Grand_Paris_Sud.jpg?1458123185\",\n                \"medium_dimensions\": \"266x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/504/logo_large/Rene%C2%A6%C3%BC_RETHORE_nandy_Grand_Paris_Sud.jpg?1458123185\",\n                \"large_dimensions\": \"399x600\",\n                \"alt\": \"image de profil de René Réthoré\",\n                \"name\": \"image de profil de René Réthoré\",\n                \"slug\": \"image-de-profil-de-rene-rethore\",\n                \"description\": \"image de profil de René Réthoré\",\n                \"copyright\": \"\"\n            },\n            \"titles\": {\n                \"city_titles\": [\n                    {\n                        \"id\": 10,\n                        \"title_type\": {\n                            \"id\": 6,\n                            \"name\": \"Maire\",\n                            \"subtitle\": \"\",\n                            \"weight\": 1,\n                            \"type_category\": \"Communes\"\n                        },\n                        \"city\": {\n                            \"id\": 23,\n                            \"organization_id\": 69,\n                            \"name\": \"Nandy\",\n                            \"slug\": \"nandy\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/109/logo_small/Logo-Nandy.png?1453972772\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/109/logo_medium/Logo-Nandy.png?1453972772\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/109/logo_large/Logo-Nandy.png?1453972772\",\n                                \"alt\": \"image de profil de Nandy\"\n                            }\n                        }\n                    }\n                ],\n                \"agglomeration_titles\": [\n                    {\n                        \"id\": 9,\n                        \"title_type\": {\n                            \"id\": 11,\n                            \"name\": \"Vice-président\",\n                            \"subtitle\": \"chargé de la culture et du patrimoine\",\n                            \"weight\": 9,\n                            \"type_category\": \"Agglomérations\"\n                        },\n                        \"agglomeration\": {\n                            \"id\": 4,\n                            \"organization_id\": 52,\n                            \"name\": \"Grand Paris Sud\",\n                            \"slug\": \"grand-paris-sud\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                                \"alt\": \"image de profil de Grand Paris Sud\"\n                            }\n                        }\n                    }\n                ],\n                \"department_titles\": [],\n                \"region_titles\": []\n            },\n            \"infos\": {\n                \"phone\": \"01 64 19 29 29\",\n                \"email\": \"mairie@nandy.fr\",\n                \"contact\": \"\",\n                \"website\": \"\",\n                \"social\": {\n                    \"facebook\": \"\",\n                    \"twitter\": \"\",\n                    \"googleplus\": \"\",\n                    \"instagram\": \"\",\n                    \"linkedin\": \"\",\n                    \"viadeo\": \"\",\n                    \"flickr\": \"\",\n                    \"youtube\": \"\",\n                    \"dailymotion\": \"\",\n                    \"vimeo\": \"\",\n                    \"medium\": \"\",\n                    \"rss\": \"\",\n                    \"snapcode_svg\": \"\",\n                    \"messenger\": null,\n                    \"allocine\": null\n                }\n            }\n        },\n        {\n            \"id\": 16,\n            \"person_id\": 11,\n            \"civility\": \"M.\",\n            \"first_name\": \"Alain\",\n            \"last_name\": \"Auzet\",\n            \"slug\": \"alain-auzet\",\n            \"blurb\": \"Conseiller communautaire de Grand Paris Sud chargé de l’aéronautique et de l’activité aéroportuaire, Maire de Réau\",\n            \"pages\": [\n                {\n                    \"id\": 192,\n                    \"instance\": {\n                        \"slug\": \"portail-institutionnel-gps\"\n                    }\n                }\n            ],\n            \"profile_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/507/logo_small/Alain_AUZET_%28reau%29.jpg?1458245832\",\n                \"small_dimensions\": \"100x150\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/507/logo_medium/Alain_AUZET_%28reau%29.jpg?1458245832\",\n                \"medium_dimensions\": \"266x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/507/logo_large/Alain_AUZET_%28reau%29.jpg?1458245832\",\n                \"large_dimensions\": \"399x600\",\n                \"alt\": \"image de profil de Alain Auzet\",\n                \"name\": \"image de profil de Alain Auzet\",\n                \"slug\": \"image-de-profil-de-alain-auzet\",\n                \"description\": \"image de profil de Alain Auzet\",\n                \"copyright\": \"\"\n            },\n            \"titles\": {\n                \"city_titles\": [\n                    {\n                        \"id\": 11,\n                        \"title_type\": {\n                            \"id\": 6,\n                            \"name\": \"Maire\",\n                            \"subtitle\": \"\",\n                            \"weight\": 1,\n                            \"type_category\": \"Communes\"\n                        },\n                        \"city\": {\n                            \"id\": 29,\n                            \"organization_id\": 75,\n                            \"name\": \"Réau\",\n                            \"slug\": \"reau\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/127/logo_small/Logo-Reau.png?1453972806\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/127/logo_medium/Logo-Reau.png?1453972806\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/127/logo_large/Logo-Reau.png?1453972806\",\n                                \"alt\": \"image de profil de Réau\"\n                            }\n                        }\n                    }\n                ],\n                \"agglomeration_titles\": [\n                    {\n                        \"id\": 12,\n                        \"title_type\": {\n                            \"id\": 9,\n                            \"name\": \"Conseiller communautaire\",\n                            \"subtitle\": \"chargé de l’aéronautique et de l’activité aéroportuaire\",\n                            \"weight\": 6,\n                            \"type_category\": \"Agglomérations\"\n                        },\n                        \"agglomeration\": {\n                            \"id\": 4,\n                            \"organization_id\": 52,\n                            \"name\": \"Grand Paris Sud\",\n                            \"slug\": \"grand-paris-sud\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                                \"alt\": \"image de profil de Grand Paris Sud\"\n                            }\n                        }\n                    }\n                ],\n                \"department_titles\": [],\n                \"region_titles\": []\n            },\n            \"infos\": {\n                \"phone\": \"01 60 60 85 55\",\n                \"email\": \"\",\n                \"contact\": \"\",\n                \"website\": \"http://www.alainauzet.com\",\n                \"social\": {\n                    \"facebook\": \"https://www.facebook.com/profile.php?id=100009433548795&fref=ts\",\n                    \"twitter\": \"https://twitter.com/alainauzet\",\n                    \"googleplus\": \"\",\n                    \"instagram\": \"\",\n                    \"linkedin\": \"\",\n                    \"viadeo\": \"\",\n                    \"flickr\": \"\",\n                    \"youtube\": \"\",\n                    \"dailymotion\": \"\",\n                    \"vimeo\": \"\",\n                    \"medium\": \"\",\n                    \"rss\": \"\",\n                    \"snapcode_svg\": \"\",\n                    \"messenger\": null,\n                    \"allocine\": null\n                }\n            }\n        },\n        {\n            \"id\": 25,\n            \"person_id\": 20,\n            \"civility\": \"M.\",\n            \"first_name\": \"Stéphane\",\n            \"last_name\": \"Raffalli\",\n            \"slug\": \"stephane-raffalli\",\n            \"blurb\": \"Vice-président de Grand Paris Sud chargé de l’aménagement, de l’habitat et des Grands projets, Maire de Ris-Orangis\",\n            \"pages\": [\n                {\n                    \"id\": 200,\n                    \"instance\": {\n                        \"slug\": \"portail-institutionnel-gps\"\n                    }\n                }\n            ],\n            \"profile_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/854/logo_small/Ste%C2%A6%C3%BCphane_RAFFALLI_ris_orangis_Grand_Paris_Sud.jpg?1458123378\",\n                \"small_dimensions\": \"100x150\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/854/logo_medium/Ste%C2%A6%C3%BCphane_RAFFALLI_ris_orangis_Grand_Paris_Sud.jpg?1458123378\",\n                \"medium_dimensions\": \"266x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/854/logo_large/Ste%C2%A6%C3%BCphane_RAFFALLI_ris_orangis_Grand_Paris_Sud.jpg?1458123378\",\n                \"large_dimensions\": \"399x600\",\n                \"alt\": \"image de profil de Stéphane Raffalli\",\n                \"name\": \"image de profil de Stéphane Raffalli\",\n                \"slug\": \"image-de-profil-de-stephane-raffalli\",\n                \"description\": \"image de profil de Stéphane Raffalli\",\n                \"copyright\": \"\"\n            },\n            \"titles\": {\n                \"city_titles\": [\n                    {\n                        \"id\": 30,\n                        \"title_type\": {\n                            \"id\": 6,\n                            \"name\": \"Maire\",\n                            \"subtitle\": \"\",\n                            \"weight\": 1,\n                            \"type_category\": \"Communes\"\n                        },\n                        \"city\": {\n                            \"id\": 11,\n                            \"organization_id\": 57,\n                            \"name\": \"Ris-Orangis\",\n                            \"slug\": \"ris-orangis\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/073/logo_small/logo-risorangis.png?1473694036\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/073/logo_medium/logo-risorangis.png?1473694036\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/073/logo_large/logo-risorangis.png?1473694036\",\n                                \"alt\": \"image de profil de Ris-Orangis\"\n                            }\n                        }\n                    }\n                ],\n                \"agglomeration_titles\": [\n                    {\n                        \"id\": 29,\n                        \"title_type\": {\n                            \"id\": 11,\n                            \"name\": \"Vice-président\",\n                            \"subtitle\": \"chargé de l’aménagement, de l’habitat et des Grands projets\",\n                            \"weight\": 4,\n                            \"type_category\": \"Agglomérations\"\n                        },\n                        \"agglomeration\": {\n                            \"id\": 4,\n                            \"organization_id\": 52,\n                            \"name\": \"Grand Paris Sud\",\n                            \"slug\": \"grand-paris-sud\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                                \"alt\": \"image de profil de Grand Paris Sud\"\n                            }\n                        }\n                    }\n                ],\n                \"department_titles\": [],\n                \"region_titles\": []\n            },\n            \"infos\": {\n                \"phone\": \"01 69 02 52 02\",\n                \"email\": \"s.raffalli@ville-ris-orangis.fr\",\n                \"contact\": \"\",\n                \"website\": \"\",\n                \"social\": {\n                    \"facebook\": \"https://www.facebook.com/stephane.raffalli.3\",\n                    \"twitter\": \"https://twitter.com/stefraffalli\",\n                    \"googleplus\": \"\",\n                    \"instagram\": \"\",\n                    \"linkedin\": \"\",\n                    \"viadeo\": \"\",\n                    \"flickr\": \"\",\n                    \"youtube\": \"\",\n                    \"dailymotion\": \"\",\n                    \"vimeo\": \"\",\n                    \"medium\": \"\",\n                    \"rss\": \"\",\n                    \"snapcode_svg\": \"\",\n                    \"messenger\": null,\n                    \"allocine\": null\n                }\n            }\n        },\n        {\n            \"id\": 17,\n            \"person_id\": 12,\n            \"civility\": \"Mme\",\n            \"first_name\": \"Marie-Line\",\n            \"last_name\": \"Pichery\",\n            \"slug\": \"marie-line-pichery\",\n            \"blurb\": \"Vice-président de Grand Paris Sud chargée de la politique de la ville, du renouvellement urbain et de l’accès à la santé, Maire de Savigny-le-Temple\",\n            \"pages\": [\n                {\n                    \"id\": 193,\n                    \"instance\": {\n                        \"slug\": \"portail-institutionnel-gps\"\n                    }\n                }\n            ],\n            \"profile_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/510/logo_small/Marie-Line_PICHERY_Savigny_le_Temple_Grand_Paris_Sud.jpg?1458249923\",\n                \"small_dimensions\": \"100x150\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/510/logo_medium/Marie-Line_PICHERY_Savigny_le_Temple_Grand_Paris_Sud.jpg?1458249923\",\n                \"medium_dimensions\": \"266x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/510/logo_large/Marie-Line_PICHERY_Savigny_le_Temple_Grand_Paris_Sud.jpg?1458249923\",\n                \"large_dimensions\": \"399x600\",\n                \"alt\": \"image de profil de Marie-Line Pichery\",\n                \"name\": \"image de profil de Marie-Line Pichery\",\n                \"slug\": \"image-de-profil-de-marie-line-pichery\",\n                \"description\": \"image de profil de Marie-Line Pichery\",\n                \"copyright\": \"\"\n            },\n            \"titles\": {\n                \"city_titles\": [\n                    {\n                        \"id\": 13,\n                        \"title_type\": {\n                            \"id\": 6,\n                            \"name\": \"Maire\",\n                            \"subtitle\": \"\",\n                            \"weight\": 1,\n                            \"type_category\": \"Communes\"\n                        },\n                        \"city\": {\n                            \"id\": 9,\n                            \"organization_id\": 55,\n                            \"name\": \"Savigny-le-Temple\",\n                            \"slug\": \"savigny-le-temple\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/070/logo_small/Logo-Savigny.png?1453972707\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/070/logo_medium/Logo-Savigny.png?1453972707\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/070/logo_large/Logo-Savigny.png?1453972707\",\n                                \"alt\": \"image de profil de Savigny-le-Temple\"\n                            }\n                        }\n                    }\n                ],\n                \"agglomeration_titles\": [\n                    {\n                        \"id\": 14,\n                        \"title_type\": {\n                            \"id\": 11,\n                            \"name\": \"Vice-présidente\",\n                            \"subtitle\": \"chargée de la politique de la ville, du renouvellement urbain et de l’accès à la santé\",\n                            \"weight\": 3,\n                            \"type_category\": \"Agglomérations\"\n                        },\n                        \"agglomeration\": {\n                            \"id\": 4,\n                            \"organization_id\": 52,\n                            \"name\": \"Grand Paris Sud\",\n                            \"slug\": \"grand-paris-sud\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                                \"alt\": \"image de profil de Grand Paris Sud\"\n                            }\n                        }\n                    }\n                ],\n                \"department_titles\": [],\n                \"region_titles\": []\n            },\n            \"infos\": {\n                \"phone\": \"01 64 10 18 00\",\n                \"email\": \"\",\n                \"contact\": \"\",\n                \"website\": \"\",\n                \"social\": {\n                    \"facebook\": \"https://fr-fr.facebook.com/marieline.pichery\",\n                    \"twitter\": \"\",\n                    \"googleplus\": \"\",\n                    \"instagram\": \"\",\n                    \"linkedin\": \"\",\n                    \"viadeo\": \"\",\n                    \"flickr\": \"\",\n                    \"youtube\": \"\",\n                    \"dailymotion\": \"\",\n                    \"vimeo\": \"\",\n                    \"medium\": \"\",\n                    \"rss\": \"\",\n                    \"snapcode_svg\": \"\",\n                    \"messenger\": null,\n                    \"allocine\": null\n                }\n            }\n        },\n        {\n            \"id\": 18,\n            \"person_id\": 13,\n            \"civility\": \"M.\",\n            \"first_name\": \"Guy-Rubens\",\n            \"last_name\": \"Duval\",\n            \"slug\": \"guy-rubens-duval\",\n            \"blurb\": \"Conseiller communautaire de Grand Paris Sud chargé de l’éclairage public, Maire de Morsang-sur-Seine\",\n            \"pages\": [\n                {\n                    \"id\": 194,\n                    \"instance\": {\n                        \"slug\": \"portail-institutionnel-gps\"\n                    }\n                }\n            ],\n            \"profile_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/212/logo_small/Guy_Rubens_DUVAL_Morsang_sur_Seine_Grand_Paris_Sud.jpg?1458720352\",\n                \"small_dimensions\": \"100x150\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/212/logo_medium/Guy_Rubens_DUVAL_Morsang_sur_Seine_Grand_Paris_Sud.jpg?1458720352\",\n                \"medium_dimensions\": \"266x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/212/logo_large/Guy_Rubens_DUVAL_Morsang_sur_Seine_Grand_Paris_Sud.jpg?1458720352\",\n                \"large_dimensions\": \"399x600\",\n                \"alt\": \"image de profil de Guy-Rubens Duval\",\n                \"name\": \"image de profil de Guy-Rubens Duval\",\n                \"slug\": \"image-de-profil-de-guy-rubens-duval\",\n                \"description\": \"image de profil de Guy-Rubens Duval\",\n                \"copyright\": \"\"\n            },\n            \"titles\": {\n                \"city_titles\": [\n                    {\n                        \"id\": 16,\n                        \"title_type\": {\n                            \"id\": 6,\n                            \"name\": \"Maire\",\n                            \"subtitle\": \"\",\n                            \"weight\": 1,\n                            \"type_category\": \"Communes\"\n                        },\n                        \"city\": {\n                            \"id\": 30,\n                            \"organization_id\": 76,\n                            \"name\": \"Morsang-sur-Seine\",\n                            \"slug\": \"morsang-sur-seine\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/130/logo_small/Logo-Morsang-sur-seine.png?1453972810\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/130/logo_medium/Logo-Morsang-sur-seine.png?1453972810\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/130/logo_large/Logo-Morsang-sur-seine.png?1453972810\",\n                                \"alt\": \"image de profil de Morsang-sur-Seine\"\n                            }\n                        }\n                    }\n                ],\n                \"agglomeration_titles\": [\n                    {\n                        \"id\": 15,\n                        \"title_type\": {\n                            \"id\": 9,\n                            \"name\": \"Conseiller communautaire\",\n                            \"subtitle\": \"chargé de l’éclairage public\",\n                            \"weight\": 7,\n                            \"type_category\": \"Agglomérations\"\n                        },\n                        \"agglomeration\": {\n                            \"id\": 4,\n                            \"organization_id\": 52,\n                            \"name\": \"Grand Paris Sud\",\n                            \"slug\": \"grand-paris-sud\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                                \"alt\": \"image de profil de Grand Paris Sud\"\n                            }\n                        }\n                    }\n                ],\n                \"department_titles\": [],\n                \"region_titles\": []\n            },\n            \"infos\": {\n                \"phone\": \"01 69 25 39 00\",\n                \"email\": \"\",\n                \"contact\": \"\",\n                \"website\": \"\",\n                \"social\": {\n                    \"facebook\": \"\",\n                    \"twitter\": \"\",\n                    \"googleplus\": \"https://plus.google.com/118361952509386035553/posts\",\n                    \"instagram\": \"\",\n                    \"linkedin\": \"\",\n                    \"viadeo\": \"\",\n                    \"flickr\": \"\",\n                    \"youtube\": \"\",\n                    \"dailymotion\": \"\",\n                    \"vimeo\": \"\",\n                    \"medium\": \"\",\n                    \"rss\": \"\",\n                    \"snapcode_svg\": \"\",\n                    \"messenger\": null,\n                    \"allocine\": null\n                }\n            }\n        },\n        {\n            \"id\": 19,\n            \"person_id\": 14,\n            \"civility\": \"Mme\",\n            \"first_name\": \"Catherine\",\n            \"last_name\": \"Aliquot-Vialat\",\n            \"slug\": \"catherine-aliquot-vialat\",\n            \"blurb\": \"Conseiller communautaire de Grand Paris Sud chargée du logement et de l’urbanisme réglementaire, Maire de Saint-Pierre-du-Perray\",\n            \"pages\": [\n                {\n                    \"id\": 195,\n                    \"instance\": {\n                        \"slug\": \"portail-institutionnel-gps\"\n                    }\n                }\n            ],\n            \"profile_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/407/logo_small/Catherine_ALIQUOT-VIALAT_Saint-Pierre-du-Perray_Grand_Paris_Sud.jpg?1458249712\",\n                \"small_dimensions\": \"100x150\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/407/logo_medium/Catherine_ALIQUOT-VIALAT_Saint-Pierre-du-Perray_Grand_Paris_Sud.jpg?1458249712\",\n                \"medium_dimensions\": \"266x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/407/logo_large/Catherine_ALIQUOT-VIALAT_Saint-Pierre-du-Perray_Grand_Paris_Sud.jpg?1458249712\",\n                \"large_dimensions\": \"399x600\",\n                \"alt\": \"image de profil de Catherine Aliquot-Vialat\",\n                \"name\": \"image de profil de Catherine Aliquot-Vialat\",\n                \"slug\": \"image-de-profil-de-catherine-aliquot-vialat\",\n                \"description\": \"image de profil de Catherine Aliquot-Vialat\",\n                \"copyright\": \"\"\n            },\n            \"titles\": {\n                \"city_titles\": [\n                    {\n                        \"id\": 17,\n                        \"title_type\": {\n                            \"id\": 6,\n                            \"name\": \"Maire\",\n                            \"subtitle\": \"\",\n                            \"weight\": 1,\n                            \"type_category\": \"Communes\"\n                        },\n                        \"city\": {\n                            \"id\": 16,\n                            \"organization_id\": 62,\n                            \"name\": \"Saint-Pierre-du-Perray\",\n                            \"slug\": \"saint-pierre-du-perray\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/088/logo_small/Logo-Saint-pierre-du-perray.png?1453972736\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/088/logo_medium/Logo-Saint-pierre-du-perray.png?1453972736\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/088/logo_large/Logo-Saint-pierre-du-perray.png?1453972736\",\n                                \"alt\": \"image de profil de Saint-Pierre-du-Perray\"\n                            }\n                        }\n                    }\n                ],\n                \"agglomeration_titles\": [\n                    {\n                        \"id\": 18,\n                        \"title_type\": {\n                            \"id\": 9,\n                            \"name\": \"Conseillère communautaire\",\n                            \"subtitle\": \"chargée du logement et de l’urbanisme réglementaire\",\n                            \"weight\": 2,\n                            \"type_category\": \"Agglomérations\"\n                        },\n                        \"agglomeration\": {\n                            \"id\": 4,\n                            \"organization_id\": 52,\n                            \"name\": \"Grand Paris Sud\",\n                            \"slug\": \"grand-paris-sud\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                                \"alt\": \"image de profil de Grand Paris Sud\"\n                            }\n                        }\n                    }\n                ],\n                \"department_titles\": [],\n                \"region_titles\": []\n            },\n            \"infos\": {\n                \"phone\": \"01 69 89 75 00\",\n                \"email\": \"catherine.aliquot@stpdp.com\",\n                \"contact\": \"\",\n                \"website\": \"http://www.catherine-aliquot-vialat.fr/blog/index.html\",\n                \"social\": {\n                    \"facebook\": \"https://www.facebook.com/catherine.aliquotvialat\",\n                    \"twitter\": \"\",\n                    \"googleplus\": \"\",\n                    \"instagram\": \"\",\n                    \"linkedin\": \"https://www.linkedin.com/in/catherine-aliquot-vialat-b5275b36\",\n                    \"viadeo\": \"\",\n                    \"flickr\": \"\",\n                    \"youtube\": \"\",\n                    \"dailymotion\": \"\",\n                    \"vimeo\": \"\",\n                    \"medium\": \"\",\n                    \"rss\": \"\",\n                    \"snapcode_svg\": \"\",\n                    \"messenger\": null,\n                    \"allocine\": null\n                }\n            }\n        },\n        {\n            \"id\": 117,\n            \"person_id\": 113,\n            \"civility\": \"M.\",\n            \"first_name\": \"Gil\",\n            \"last_name\": \"Melin\",\n            \"slug\": \"gil-melin\",\n            \"pages\": [\n                {\n                    \"id\": 9200,\n                    \"instance\": {\n                        \"slug\": \"portail-institutionnel-gps\"\n                    }\n                }\n            ],\n            \"profile_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/025/461/logo_small/gil-melin-ris-orangis-grandparissud.jpg?1519988128\",\n                \"small_dimensions\": \"128x150\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/025/461/logo_medium/gil-melin-ris-orangis-grandparissud.jpg?1519988128\",\n                \"medium_dimensions\": \"340x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/025/461/logo_large/gil-melin-ris-orangis-grandparissud.jpg?1519988128\",\n                \"large_dimensions\": \"510x600\",\n                \"alt\": \"image de profil de Gil Melin\",\n                \"name\": \"image de profil de Gil Melin\",\n                \"slug\": null,\n                \"description\": \"image de profil de Gil Melin\",\n                \"copyright\": \"\"\n            },\n            \"titles\": {\n                \"city_titles\": [\n                    {\n                        \"id\": 214,\n                        \"title_type\": {\n                            \"id\": 7,\n                            \"name\": \"Maire adjoint\",\n                            \"subtitle\": \"chargé de l’Environnement, du Développement durable et de l’Aménagement\",\n                            \"weight\": 1,\n                            \"type_category\": \"Communes\"\n                        },\n                        \"city\": {\n                            \"id\": 11,\n                            \"organization_id\": 57,\n                            \"name\": \"Ris-Orangis\",\n                            \"slug\": \"ris-orangis\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/073/logo_small/logo-risorangis.png?1473694036\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/073/logo_medium/logo-risorangis.png?1473694036\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/073/logo_large/logo-risorangis.png?1473694036\",\n                                \"alt\": \"image de profil de Ris-Orangis\"\n                            }\n                        }\n                    }\n                ],\n                \"agglomeration_titles\": [\n                    {\n                        \"id\": 213,\n                        \"title_type\": {\n                            \"id\": 9,\n                            \"name\": \"Conseiller communautaire\",\n                            \"subtitle\": \"\",\n                            \"weight\": 46,\n                            \"type_category\": \"Agglomérations\"\n                        },\n                        \"agglomeration\": {\n                            \"id\": 4,\n                            \"organization_id\": 52,\n                            \"name\": \"Grand Paris Sud\",\n                            \"slug\": \"grand-paris-sud\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                                \"alt\": \"image de profil de Grand Paris Sud\"\n                            }\n                        }\n                    }\n                ],\n                \"department_titles\": [],\n                \"region_titles\": []\n            },\n            \"infos\": {\n                \"phone\": null,\n                \"email\": \"contact@ville-ris-orangis.fr\",\n                \"contact\": \"\",\n                \"website\": \"\",\n                \"social\": {\n                    \"facebook\": \"\",\n                    \"twitter\": \"\",\n                    \"googleplus\": \"\",\n                    \"instagram\": \"\",\n                    \"linkedin\": \"\",\n                    \"viadeo\": \"\",\n                    \"flickr\": \"\",\n                    \"youtube\": \"\",\n                    \"dailymotion\": \"\",\n                    \"vimeo\": \"\",\n                    \"medium\": \"\",\n                    \"rss\": \"\",\n                    \"snapcode_svg\": \"\",\n                    \"messenger\": \"\",\n                    \"allocine\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 22,\n            \"person_id\": 17,\n            \"civility\": \"M.\",\n            \"first_name\": \"Stéphane\",\n            \"last_name\": \"Beaudet\",\n            \"slug\": \"stephane-beaudet\",\n            \"blurb\": \"Vice-président de Grand Paris Sud chargé de la mobilité et des transports, Maire de Courcouronnes\",\n            \"pages\": [\n                {\n                    \"id\": 198,\n                    \"instance\": {\n                        \"slug\": \"portail-institutionnel-gps\"\n                    }\n                }\n            ],\n            \"profile_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/858/logo_small/Ste%C2%A6%C3%BCphane_BEAUDET_%28courcouronnes%29.jpg?1458205671\",\n                \"small_dimensions\": \"100x150\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/858/logo_medium/Ste%C2%A6%C3%BCphane_BEAUDET_%28courcouronnes%29.jpg?1458205671\",\n                \"medium_dimensions\": \"266x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/858/logo_large/Ste%C2%A6%C3%BCphane_BEAUDET_%28courcouronnes%29.jpg?1458205671\",\n                \"large_dimensions\": \"399x600\",\n                \"alt\": \"image de profil de Stéphane Beaudet\",\n                \"name\": \"image de profil de Stéphane Beaudet\",\n                \"slug\": \"image-de-profil-de-stephane-beaudet\",\n                \"description\": \"image de profil de Stéphane Beaudet\",\n                \"copyright\": \"\"\n            },\n            \"titles\": {\n                \"city_titles\": [\n                    {\n                        \"id\": 24,\n                        \"title_type\": {\n                            \"id\": 6,\n                            \"name\": \"Maire\",\n                            \"subtitle\": \"\",\n                            \"weight\": 1,\n                            \"type_category\": \"Communes\"\n                        },\n                        \"city\": {\n                            \"id\": 14,\n                            \"organization_id\": 60,\n                            \"name\": \"Courcouronnes\",\n                            \"slug\": \"courcouronnes\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/082/logo_small/Logo-Courcouronnes.png?1453972725\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/082/logo_medium/Logo-Courcouronnes.png?1453972725\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/082/logo_large/Logo-Courcouronnes.png?1453972725\",\n                                \"alt\": \"image de profil de Courcouronnes\"\n                            }\n                        }\n                    }\n                ],\n                \"agglomeration_titles\": [\n                    {\n                        \"id\": 23,\n                        \"title_type\": {\n                            \"id\": 11,\n                            \"name\": \"Vice-président\",\n                            \"subtitle\": \"chargé de la mobilité et des transports\",\n                            \"weight\": 15,\n                            \"type_category\": \"Agglomérations\"\n                        },\n                        \"agglomeration\": {\n                            \"id\": 4,\n                            \"organization_id\": 52,\n                            \"name\": \"Grand Paris Sud\",\n                            \"slug\": \"grand-paris-sud\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                                \"alt\": \"image de profil de Grand Paris Sud\"\n                            }\n                        }\n                    }\n                ],\n                \"department_titles\": [],\n                \"region_titles\": []\n            },\n            \"infos\": {\n                \"phone\": \"01 69 36 66 02\",\n                \"email\": \"stephane.beaudet@courcouronnes.fr\",\n                \"contact\": \"\",\n                \"website\": \"http://www.stephanebeaudet.fr\",\n                \"social\": {\n                    \"facebook\": \"https://facebook.com/stephane.beaudet\",\n                    \"twitter\": \"https://twitter.com/beaudetstephane\",\n                    \"googleplus\": \"\",\n                    \"instagram\": \"https://www.instagram.com/beaudetstephane/\",\n                    \"linkedin\": \"\",\n                    \"viadeo\": \"\",\n                    \"flickr\": \"\",\n                    \"youtube\": \"https://www.youtube.com/channel/UCslNbR8pmgZu6Hy_ehoBCYQ\",\n                    \"dailymotion\": \"\",\n                    \"vimeo\": \"\",\n                    \"medium\": \"\",\n                    \"rss\": \"\",\n                    \"snapcode_svg\": \"\",\n                    \"messenger\": null,\n                    \"allocine\": null\n                }\n            }\n        },\n        {\n            \"id\": 23,\n            \"person_id\": 18,\n            \"civility\": \"M.\",\n            \"first_name\": \"Jean\",\n            \"last_name\": \"Hartz\",\n            \"slug\": \"jean-hartz\",\n            \"blurb\": \"Vice-président de Grand Paris Sud chargé des ressources humaines, de la commande publique, de la coopération décentralisée et des relations internationales, Maire de Bondoufle\",\n            \"pages\": [\n                {\n                    \"id\": 199,\n                    \"instance\": {\n                        \"slug\": \"portail-institutionnel-gps\"\n                    }\n                }\n            ],\n            \"profile_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/850/logo_small/Jean_HARTZ_%28bondoufle%29.jpg?1458204329\",\n                \"small_dimensions\": \"100x150\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/850/logo_medium/Jean_HARTZ_%28bondoufle%29.jpg?1458204329\",\n                \"medium_dimensions\": \"266x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/850/logo_large/Jean_HARTZ_%28bondoufle%29.jpg?1458204329\",\n                \"large_dimensions\": \"399x600\",\n                \"alt\": \"image de profil de Jean Hartz\",\n                \"name\": \"image de profil de Jean Hartz\",\n                \"slug\": \"image-de-profil-de-jean-hartz\",\n                \"description\": \"image de profil de Jean Hartz\",\n                \"copyright\": \"\"\n            },\n            \"titles\": {\n                \"city_titles\": [\n                    {\n                        \"id\": 25,\n                        \"title_type\": {\n                            \"id\": 6,\n                            \"name\": \"Maire\",\n                            \"subtitle\": \"\",\n                            \"weight\": 1,\n                            \"type_category\": \"Communes\"\n                        },\n                        \"city\": {\n                            \"id\": 18,\n                            \"organization_id\": 64,\n                            \"name\": \"Bondoufle\",\n                            \"slug\": \"bondoufle\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/094/logo_small/logo-bondoufle.png?1473694015\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/094/logo_medium/logo-bondoufle.png?1473694015\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/094/logo_large/logo-bondoufle.png?1473694015\",\n                                \"alt\": \"image de profil de Bondoufle\"\n                            }\n                        }\n                    }\n                ],\n                \"agglomeration_titles\": [\n                    {\n                        \"id\": 26,\n                        \"title_type\": {\n                            \"id\": 11,\n                            \"name\": \"Vice-président\",\n                            \"subtitle\": \"chargé des ressources humaines, de la commande publique, de la coopération décentralisée et des relations internationales\",\n                            \"weight\": 8,\n                            \"type_category\": \"Agglomérations\"\n                        },\n                        \"agglomeration\": {\n                            \"id\": 4,\n                            \"organization_id\": 52,\n                            \"name\": \"Grand Paris Sud\",\n                            \"slug\": \"grand-paris-sud\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                                \"alt\": \"image de profil de Grand Paris Sud\"\n                            }\n                        }\n                    }\n                ],\n                \"department_titles\": [],\n                \"region_titles\": []\n            },\n            \"infos\": {\n                \"phone\": \"01 60 86 47 27\",\n                \"email\": \"jean.hartz@ville-bondoufle.fr\",\n                \"contact\": \"\",\n                \"website\": \"\",\n                \"social\": {\n                    \"facebook\": \"\",\n                    \"twitter\": \"\",\n                    \"googleplus\": \"\",\n                    \"instagram\": \"\",\n                    \"linkedin\": \"\",\n                    \"viadeo\": \"\",\n                    \"flickr\": \"\",\n                    \"youtube\": \"\",\n                    \"dailymotion\": \"\",\n                    \"vimeo\": \"\",\n                    \"medium\": \"\",\n                    \"rss\": \"\",\n                    \"snapcode_svg\": \"\",\n                    \"messenger\": null,\n                    \"allocine\": null\n                }\n            }\n        },\n        {\n            \"id\": 26,\n            \"person_id\": 21,\n            \"civility\": \"M.\",\n            \"first_name\": \"François\",\n            \"last_name\": \"Gros\",\n            \"slug\": \"francois-gros\",\n            \"blurb\": \"Vice-président de Grand Paris Sud chargé des berges de Seine et des zones d’activités portuaires, Maire du Coudray-Montceaux\",\n            \"pages\": [\n                {\n                    \"id\": 201,\n                    \"instance\": {\n                        \"slug\": \"portail-institutionnel-gps\"\n                    }\n                }\n            ],\n            \"profile_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/064/logo_small/Franc%C2%A6%C2%BAois_GROS_%28courdray_montceaux%29.jpg?1458203245\",\n                \"small_dimensions\": \"100x150\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/064/logo_medium/Franc%C2%A6%C2%BAois_GROS_%28courdray_montceaux%29.jpg?1458203245\",\n                \"medium_dimensions\": \"266x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/064/logo_large/Franc%C2%A6%C2%BAois_GROS_%28courdray_montceaux%29.jpg?1458203245\",\n                \"large_dimensions\": \"399x600\",\n                \"alt\": \"image de profil de François Gros\",\n                \"name\": \"image de profil de François Gros\",\n                \"slug\": \"image-de-profil-de-francois-gros\",\n                \"description\": \"image de profil de François Gros\",\n                \"copyright\": \"\"\n            },\n            \"titles\": {\n                \"city_titles\": [\n                    {\n                        \"id\": 31,\n                        \"title_type\": {\n                            \"id\": 6,\n                            \"name\": \"Maire\",\n                            \"subtitle\": \"\",\n                            \"weight\": 1,\n                            \"type_category\": \"Communes\"\n                        },\n                        \"city\": {\n                            \"id\": 26,\n                            \"organization_id\": 72,\n                            \"name\": \"Le Coudray-Montceaux\",\n                            \"slug\": \"le-coudray-montceaux\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/118/logo_small/Logo-Coudray-montceaux.png?1453972789\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/118/logo_medium/Logo-Coudray-montceaux.png?1453972789\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/118/logo_large/Logo-Coudray-montceaux.png?1453972789\",\n                                \"alt\": \"image de profil de Le Coudray-Montceaux\"\n                            }\n                        }\n                    }\n                ],\n                \"agglomeration_titles\": [\n                    {\n                        \"id\": 32,\n                        \"title_type\": {\n                            \"id\": 11,\n                            \"name\": \"Vice-président\",\n                            \"subtitle\": \"chargé des berges de Seine et des zones d’activités portuaires\",\n                            \"weight\": 12,\n                            \"type_category\": \"Agglomérations\"\n                        },\n                        \"agglomeration\": {\n                            \"id\": 4,\n                            \"organization_id\": 52,\n                            \"name\": \"Grand Paris Sud\",\n                            \"slug\": \"grand-paris-sud\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                                \"alt\": \"image de profil de Grand Paris Sud\"\n                            }\n                        }\n                    }\n                ],\n                \"department_titles\": [],\n                \"region_titles\": []\n            },\n            \"infos\": {\n                \"phone\": \"01 64 93 74 64\",\n                \"email\": \"\",\n                \"contact\": \"\",\n                \"website\": \"\",\n                \"social\": {\n                    \"facebook\": \"\",\n                    \"twitter\": \"\",\n                    \"googleplus\": \"\",\n                    \"instagram\": \"\",\n                    \"linkedin\": \"\",\n                    \"viadeo\": \"\",\n                    \"flickr\": \"\",\n                    \"youtube\": \"\",\n                    \"dailymotion\": \"\",\n                    \"vimeo\": \"\",\n                    \"medium\": \"\",\n                    \"rss\": \"\",\n                    \"snapcode_svg\": \"\",\n                    \"messenger\": null,\n                    \"allocine\": null\n                }\n            }\n        },\n        {\n            \"id\": 27,\n            \"person_id\": 22,\n            \"civility\": \"M.\",\n            \"first_name\": \"Jean\\u00ad-Pierre\",\n            \"last_name\": \"Bechter\",\n            \"slug\": \"jean-pierre-bechter\",\n            \"blurb\": \"Vice-président de Grand Paris Sud rapporteur de la Conférence financière, Maire de Corbeil-Essonnes\",\n            \"pages\": [\n                {\n                    \"id\": 202,\n                    \"instance\": {\n                        \"slug\": \"portail-institutionnel-gps\"\n                    }\n                }\n            ],\n            \"profile_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/191/logo_small/Corbeil_Essonnes_-_BECHTER_Jean-Pierre.jpg?1456417069\",\n                \"small_dimensions\": \"104x150\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/191/logo_medium/Corbeil_Essonnes_-_BECHTER_Jean-Pierre.jpg?1456417069\",\n                \"medium_dimensions\": \"278x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/191/logo_large/Corbeil_Essonnes_-_BECHTER_Jean-Pierre.jpg?1456417069\",\n                \"large_dimensions\": \"417x600\",\n                \"alt\": \"image de profil de Jean\\u00ad-Pierre Bechter\",\n                \"name\": \"image de profil de Jean\\u00ad-Pierre Bechter\",\n                \"slug\": \"image-de-profil-de-jean-pierre-bechter\",\n                \"description\": \"image de profil de Jean\\u00ad-Pierre Bechter\",\n                \"copyright\": \"\"\n            },\n            \"titles\": {\n                \"city_titles\": [\n                    {\n                        \"id\": 34,\n                        \"title_type\": {\n                            \"id\": 6,\n                            \"name\": \"Maire\",\n                            \"subtitle\": \"\",\n                            \"weight\": 1,\n                            \"type_category\": \"Communes\"\n                        },\n                        \"city\": {\n                            \"id\": 8,\n                            \"organization_id\": 54,\n                            \"name\": \"Corbeil-Essonnes\",\n                            \"slug\": \"corbeil-essonnes\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/067/logo_small/corbeil-essonnes-grandparissud.png?1520348885\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/067/logo_medium/corbeil-essonnes-grandparissud.png?1520348885\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/067/logo_large/corbeil-essonnes-grandparissud.png?1520348885\",\n                                \"alt\": \"image de profil de Corbeil-Essonnes\"\n                            }\n                        }\n                    }\n                ],\n                \"agglomeration_titles\": [\n                    {\n                        \"id\": 33,\n                        \"title_type\": {\n                            \"id\": 11,\n                            \"name\": \"Vice-président\",\n                            \"subtitle\": \"Rapporteur de la Conférence financière\",\n                            \"weight\": 2,\n                            \"type_category\": \"Agglomérations\"\n                        },\n                        \"agglomeration\": {\n                            \"id\": 4,\n                            \"organization_id\": 52,\n                            \"name\": \"Grand Paris Sud\",\n                            \"slug\": \"grand-paris-sud\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                                \"alt\": \"image de profil de Grand Paris Sud\"\n                            }\n                        }\n                    }\n                ],\n                \"department_titles\": [],\n                \"region_titles\": []\n            },\n            \"infos\": {\n                \"phone\": \"01 60 89 71 79\",\n                \"email\": \"bechter.jp@mairiecorbeilessonnes.fr\",\n                \"contact\": \"\",\n                \"website\": \"\",\n                \"social\": {\n                    \"facebook\": \"\",\n                    \"twitter\": \"\",\n                    \"googleplus\": \"https://plus.google.com/100003297766960816809/posts\",\n                    \"instagram\": \"\",\n                    \"linkedin\": \"\",\n                    \"viadeo\": \"\",\n                    \"flickr\": \"\",\n                    \"youtube\": \"\",\n                    \"dailymotion\": \"\",\n                    \"vimeo\": \"\",\n                    \"medium\": \"\",\n                    \"rss\": \"\",\n                    \"snapcode_svg\": \"\",\n                    \"messenger\": null,\n                    \"allocine\": null\n                }\n            }\n        },\n        {\n            \"id\": 28,\n            \"person_id\": 23,\n            \"civility\": \"M.\",\n            \"first_name\": \"Yann\",\n            \"last_name\": \"Pétel\",\n            \"slug\": \"yann-petel\",\n            \"blurb\": \"Conseiller communautaire de Grand Paris Sud chargé de la politique d’investissement, Maire de Saint-Germain-lès-Corbeil\",\n            \"pages\": [\n                {\n                    \"id\": 203,\n                    \"instance\": {\n                        \"slug\": \"portail-institutionnel-gps\"\n                    }\n                }\n            ],\n            \"profile_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/192/logo_small/Yann_PETEL_%28st_germain_les-corbeil%29.jpg?1458230278\",\n                \"small_dimensions\": \"100x150\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/192/logo_medium/Yann_PETEL_%28st_germain_les-corbeil%29.jpg?1458230278\",\n                \"medium_dimensions\": \"266x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/192/logo_large/Yann_PETEL_%28st_germain_les-corbeil%29.jpg?1458230278\",\n                \"large_dimensions\": \"350x526\",\n                \"alt\": \"image de profil de Yann Pétel\",\n                \"name\": \"image de profil de Yann Pétel\",\n                \"slug\": \"image-de-profil-de-yann-petel\",\n                \"description\": \"image de profil de Yann Pétel\",\n                \"copyright\": \"\"\n            },\n            \"titles\": {\n                \"city_titles\": [\n                    {\n                        \"id\": 36,\n                        \"title_type\": {\n                            \"id\": 6,\n                            \"name\": \"Maire\",\n                            \"subtitle\": \"\",\n                            \"weight\": 1,\n                            \"type_category\": \"Communes\"\n                        },\n                        \"city\": {\n                            \"id\": 20,\n                            \"organization_id\": 66,\n                            \"name\": \"Saint-Germain-lès-Corbeil\",\n                            \"slug\": \"saint-germain-les-corbeil\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/100/logo_small/Logo-St-germain-les-corbeils.png?1453972757\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/100/logo_medium/Logo-St-germain-les-corbeils.png?1453972757\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/100/logo_large/Logo-St-germain-les-corbeils.png?1453972757\",\n                                \"alt\": \"image de profil de Saint-Germain-lès-Corbeil\"\n                            }\n                        }\n                    }\n                ],\n                \"agglomeration_titles\": [\n                    {\n                        \"id\": 35,\n                        \"title_type\": {\n                            \"id\": 9,\n                            \"name\": \"Conseiller communautaire\",\n                            \"subtitle\": \"chargé de la politique d’investissement\",\n                            \"weight\": 3,\n                            \"type_category\": \"Agglomérations\"\n                        },\n                        \"agglomeration\": {\n                            \"id\": 4,\n                            \"organization_id\": 52,\n                            \"name\": \"Grand Paris Sud\",\n                            \"slug\": \"grand-paris-sud\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                                \"alt\": \"image de profil de Grand Paris Sud\"\n                            }\n                        }\n                    }\n                ],\n                \"department_titles\": [],\n                \"region_titles\": []\n            },\n            \"infos\": {\n                \"phone\": \"01 69 89 70 70\",\n                \"email\": \"\",\n                \"contact\": \"\",\n                \"website\": \"http://www.yann-petel.fr/\",\n                \"social\": {\n                    \"facebook\": \"https://www.facebook.com/yann.petel\",\n                    \"twitter\": \"https://twitter.com/YannPetel\",\n                    \"googleplus\": \"\",\n                    \"instagram\": \"\",\n                    \"linkedin\": \"https://www.linkedin.com/in/petelyann?authType=NAME_SEARCH&authToken=n_8A&locale=fr_FR&srchid=4239113571456398662967&srchindex=1&srchtotal=2&trk=vsrp_people_res_name&trkInfo=VSRPsearchId%3A4239113571456398662967%2CVSRPtargetId%3A192540502%2CVSRPcmpt%3Aprimary%2CVSRPnm%3Atrue%2CauthType%3ANAME_SEARCH\",\n                    \"viadeo\": \"\",\n                    \"flickr\": \"\",\n                    \"youtube\": \"\",\n                    \"dailymotion\": \"\",\n                    \"vimeo\": \"\",\n                    \"medium\": \"\",\n                    \"rss\": \"\",\n                    \"snapcode_svg\": \"\",\n                    \"messenger\": null,\n                    \"allocine\": null\n                }\n            }\n        },\n        {\n            \"id\": 42,\n            \"person_id\": 38,\n            \"civility\": \"Mme\",\n            \"first_name\": \"Éléonore\",\n            \"last_name\": \"Pays\",\n            \"slug\": \"eleonore-pays\",\n            \"blurb\": \"Conseiller communautaire de Grand Paris Sud, Conseiller municipal de Savigny-le-Temple en charge de la Petite Enfance\",\n            \"pages\": [\n                {\n                    \"id\": 216,\n                    \"instance\": {\n                        \"slug\": \"portail-institutionnel-gps\"\n                    }\n                }\n            ],\n            \"profile_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/480/logo_small/Savigny-le-Temple_eleonore_pays.JPG?1453974362\",\n                \"small_dimensions\": \"130x150\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/480/logo_medium/Savigny-le-Temple_eleonore_pays.JPG?1453974362\",\n                \"medium_dimensions\": \"348x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/480/logo_large/Savigny-le-Temple_eleonore_pays.JPG?1453974362\",\n                \"large_dimensions\": \"521x600\",\n                \"alt\": \"image de profil de Éléonore Pays\",\n                \"name\": \"image de profil de Éléonore Pays\",\n                \"slug\": \"image-de-profil-de-eleonore-pays\",\n                \"description\": \"image de profil de Éléonore Pays\",\n                \"copyright\": \"\"\n            },\n            \"titles\": {\n                \"city_titles\": [\n                    {\n                        \"id\": 78,\n                        \"title_type\": {\n                            \"id\": 8,\n                            \"name\": \"Conseillère municipale\",\n                            \"subtitle\": \"en charge de la Petite Enfance\",\n                            \"weight\": 1,\n                            \"type_category\": \"Communes\"\n                        },\n                        \"city\": {\n                            \"id\": 9,\n                            \"organization_id\": 55,\n                            \"name\": \"Savigny-le-Temple\",\n                            \"slug\": \"savigny-le-temple\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/070/logo_small/Logo-Savigny.png?1453972707\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/070/logo_medium/Logo-Savigny.png?1453972707\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/070/logo_large/Logo-Savigny.png?1453972707\",\n                                \"alt\": \"image de profil de Savigny-le-Temple\"\n                            }\n                        }\n                    }\n                ],\n                \"agglomeration_titles\": [\n                    {\n                        \"id\": 77,\n                        \"title_type\": {\n                            \"id\": 9,\n                            \"name\": \"Conseillère communautaire\",\n                            \"subtitle\": \"\",\n                            \"weight\": 50,\n                            \"type_category\": \"Agglomérations\"\n                        },\n                        \"agglomeration\": {\n                            \"id\": 4,\n                            \"organization_id\": 52,\n                            \"name\": \"Grand Paris Sud\",\n                            \"slug\": \"grand-paris-sud\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                                \"alt\": \"image de profil de Grand Paris Sud\"\n                            }\n                        }\n                    }\n                ],\n                \"department_titles\": [],\n                \"region_titles\": []\n            },\n            \"infos\": {\n                \"phone\": \"01 64 10 18 00\",\n                \"email\": \"\",\n                \"contact\": \"http://www.savigny-le-temple.fr/acces-direct/contacter-les-services\",\n                \"website\": \"\",\n                \"social\": {\n                    \"facebook\": \"\",\n                    \"twitter\": \"\",\n                    \"googleplus\": \"\",\n                    \"instagram\": \"\",\n                    \"linkedin\": \"\",\n                    \"viadeo\": \"\",\n                    \"flickr\": \"\",\n                    \"youtube\": \"\",\n                    \"dailymotion\": \"\",\n                    \"vimeo\": \"\",\n                    \"medium\": \"\",\n                    \"rss\": \"\",\n                    \"snapcode_svg\": \"\",\n                    \"messenger\": null,\n                    \"allocine\": null\n                }\n            }\n        },\n        {\n            \"id\": 43,\n            \"person_id\": 39,\n            \"civility\": \"M.\",\n            \"first_name\": \"Hervé\",\n            \"last_name\": \"Kiteba Simo\",\n            \"slug\": \"herve-kiteba-simo\",\n            \"blurb\": \"Conseiller communautaire de Grand Paris Sud, Conseiller municipal de Savigny-le-Temple\",\n            \"pages\": [\n                {\n                    \"id\": 217,\n                    \"instance\": {\n                        \"slug\": \"portail-institutionnel-gps\"\n                    }\n                }\n            ],\n            \"profile_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/477/logo_small/Herve%E2%95%A0%C3%BC_KITEBA-SIMO_Savigny_le_Temple_Grand_Paris_Sud.jpg?1458250386\",\n                \"small_dimensions\": \"100x150\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/477/logo_medium/Herve%E2%95%A0%C3%BC_KITEBA-SIMO_Savigny_le_Temple_Grand_Paris_Sud.jpg?1458250386\",\n                \"medium_dimensions\": \"266x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/477/logo_large/Herve%E2%95%A0%C3%BC_KITEBA-SIMO_Savigny_le_Temple_Grand_Paris_Sud.jpg?1458250386\",\n                \"large_dimensions\": \"399x600\",\n                \"alt\": \"image de profil de Hervé Kiteba Simo\",\n                \"name\": \"image de profil de Hervé Kiteba Simo\",\n                \"slug\": \"image-de-profil-de-herve-kiteba-simo\",\n                \"description\": \"image de profil de Hervé Kiteba Simo\",\n                \"copyright\": \"\"\n            },\n            \"titles\": {\n                \"city_titles\": [\n                    {\n                        \"id\": 80,\n                        \"title_type\": {\n                            \"id\": 8,\n                            \"name\": \"Conseiller municipal\",\n                            \"subtitle\": \"\",\n                            \"weight\": 1,\n                            \"type_category\": \"Communes\"\n                        },\n                        \"city\": {\n                            \"id\": 9,\n                            \"organization_id\": 55,\n                            \"name\": \"Savigny-le-Temple\",\n                            \"slug\": \"savigny-le-temple\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/070/logo_small/Logo-Savigny.png?1453972707\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/070/logo_medium/Logo-Savigny.png?1453972707\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/070/logo_large/Logo-Savigny.png?1453972707\",\n                                \"alt\": \"image de profil de Savigny-le-Temple\"\n                            }\n                        }\n                    }\n                ],\n                \"agglomeration_titles\": [\n                    {\n                        \"id\": 79,\n                        \"title_type\": {\n                            \"id\": 9,\n                            \"name\": \"Conseiller communautaire\",\n                            \"subtitle\": \"\",\n                            \"weight\": 43,\n                            \"type_category\": \"Agglomérations\"\n                        },\n                        \"agglomeration\": {\n                            \"id\": 4,\n                            \"organization_id\": 52,\n                            \"name\": \"Grand Paris Sud\",\n                            \"slug\": \"grand-paris-sud\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                                \"alt\": \"image de profil de Grand Paris Sud\"\n                            }\n                        }\n                    }\n                ],\n                \"department_titles\": [],\n                \"region_titles\": []\n            },\n            \"infos\": {\n                \"phone\": \"01 64 10 18 00\",\n                \"email\": \"\",\n                \"contact\": \"http://www.savigny-le-temple.fr/acces-direct/contacter-les-services\",\n                \"website\": \"\",\n                \"social\": {\n                    \"facebook\": \"https://www.facebook.com/Herve.KitebaSimo/?fref=ts\",\n                    \"twitter\": \"https://twitter.com/h_ks\",\n                    \"googleplus\": \"\",\n                    \"instagram\": \"\",\n                    \"linkedin\": \"https://fr.linkedin.com/in/kitebasimo\",\n                    \"viadeo\": \"\",\n                    \"flickr\": \"\",\n                    \"youtube\": \"\",\n                    \"dailymotion\": \"\",\n                    \"vimeo\": \"\",\n                    \"medium\": \"\",\n                    \"rss\": \"\",\n                    \"snapcode_svg\": \"\",\n                    \"messenger\": null,\n                    \"allocine\": null\n                }\n            }\n        },\n        {\n            \"id\": 44,\n            \"person_id\": 40,\n            \"civility\": \"M.\",\n            \"first_name\": \"Jean-Louis\",\n            \"last_name\": \"Duval\",\n            \"slug\": \"jean-louis-duval\",\n            \"blurb\": \"Maire adjoint de Cesson chargé des finances, du développement économique et des nouvelles technologies, Conseiller communautaire de Grand Paris Sud\",\n            \"pages\": [\n                {\n                    \"id\": 218,\n                    \"instance\": {\n                        \"slug\": \"portail-institutionnel-gps\"\n                    }\n                }\n            ],\n            \"profile_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/500/logo_small/Jean-Louis_DUVAL_%28cesson%29.jpg?1458204378\",\n                \"small_dimensions\": \"100x150\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/500/logo_medium/Jean-Louis_DUVAL_%28cesson%29.jpg?1458204378\",\n                \"medium_dimensions\": \"266x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/500/logo_large/Jean-Louis_DUVAL_%28cesson%29.jpg?1458204378\",\n                \"large_dimensions\": \"399x600\",\n                \"alt\": \"image de profil de Jean-Louis Duval\",\n                \"name\": \"image de profil de Jean-Louis Duval\",\n                \"slug\": \"image-de-profil-de-jean-louis-duval\",\n                \"description\": \"image de profil de Jean-Louis Duval\",\n                \"copyright\": \"\"\n            },\n            \"titles\": {\n                \"city_titles\": [\n                    {\n                        \"id\": 81,\n                        \"title_type\": {\n                            \"id\": 7,\n                            \"name\": \"Maire adjoint\",\n                            \"subtitle\": \"chargé des finances, du développement économique et des nouvelles technologies\",\n                            \"weight\": 1,\n                            \"type_category\": \"Communes\"\n                        },\n                        \"city\": {\n                            \"id\": 17,\n                            \"organization_id\": 63,\n                            \"name\": \"Cesson\",\n                            \"slug\": \"cesson\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/091/logo_small/Logo-Cesson.png?1453972742\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/091/logo_medium/Logo-Cesson.png?1453972742\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/091/logo_large/Logo-Cesson.png?1453972742\",\n                                \"alt\": \"image de profil de Cesson\"\n                            }\n                        }\n                    }\n                ],\n                \"agglomeration_titles\": [\n                    {\n                        \"id\": 82,\n                        \"title_type\": {\n                            \"id\": 9,\n                            \"name\": \"Conseiller communautaire\",\n                            \"subtitle\": \"\",\n                            \"weight\": 36,\n                            \"type_category\": \"Agglomérations\"\n                        },\n                        \"agglomeration\": {\n                            \"id\": 4,\n                            \"organization_id\": 52,\n                            \"name\": \"Grand Paris Sud\",\n                            \"slug\": \"grand-paris-sud\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                                \"alt\": \"image de profil de Grand Paris Sud\"\n                            }\n                        }\n                    }\n                ],\n                \"department_titles\": [],\n                \"region_titles\": []\n            },\n            \"infos\": {\n                \"phone\": \"01 64 10 51 00\",\n                \"email\": \"\",\n                \"contact\": \"\",\n                \"website\": \"\",\n                \"social\": {\n                    \"facebook\": \"https://www.facebook.com/jlduval?ref=br_rs\",\n                    \"twitter\": \"https://twitter.com/jlduval1\",\n                    \"googleplus\": \"https://plus.google.com/+JeanLouisDuval01/posts\",\n                    \"instagram\": \"\",\n                    \"linkedin\": \"\",\n                    \"viadeo\": \"\",\n                    \"flickr\": \"\",\n                    \"youtube\": \"\",\n                    \"dailymotion\": \"\",\n                    \"vimeo\": \"\",\n                    \"medium\": \"\",\n                    \"rss\": \"\",\n                    \"snapcode_svg\": \"\",\n                    \"messenger\": null,\n                    \"allocine\": null\n                }\n            }\n        },\n        {\n            \"id\": 45,\n            \"person_id\": 41,\n            \"civility\": \"M.\",\n            \"first_name\": \"Karl\",\n            \"last_name\": \"Dirat\",\n            \"slug\": \"karl-dirat\",\n            \"blurb\": \"Vice-président de Grand Paris Sud chargé des travaux, de la voirie et des espaces publics, Maire de Villabé\",\n            \"pages\": [\n                {\n                    \"id\": 219,\n                    \"instance\": {\n                        \"slug\": \"portail-institutionnel-gps\"\n                    }\n                }\n            ],\n            \"profile_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/864/logo_small/Karl_DIRAT_Villabe_Grand_Paris_Sud.jpg?1458250904\",\n                \"small_dimensions\": \"100x150\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/864/logo_medium/Karl_DIRAT_Villabe_Grand_Paris_Sud.jpg?1458250904\",\n                \"medium_dimensions\": \"266x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/864/logo_large/Karl_DIRAT_Villabe_Grand_Paris_Sud.jpg?1458250904\",\n                \"large_dimensions\": \"399x600\",\n                \"alt\": \"image de profil de Karl Dirat\",\n                \"name\": \"image de profil de Karl Dirat\",\n                \"slug\": \"image-de-profil-de-karl-dirat\",\n                \"description\": \"image de profil de Karl Dirat\",\n                \"copyright\": \"\"\n            },\n            \"titles\": {\n                \"city_titles\": [\n                    {\n                        \"id\": 83,\n                        \"title_type\": {\n                            \"id\": 6,\n                            \"name\": \"Maire\",\n                            \"subtitle\": \"\",\n                            \"weight\": 1,\n                            \"type_category\": \"Communes\"\n                        },\n                        \"city\": {\n                            \"id\": 25,\n                            \"organization_id\": 71,\n                            \"name\": \"Villabé\",\n                            \"slug\": \"villabe\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/115/logo_small/villabe-grandparissud.png?1520348702\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/115/logo_medium/villabe-grandparissud.png?1520348702\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/115/logo_large/villabe-grandparissud.png?1520348702\",\n                                \"alt\": \"image de profil de Villabé\"\n                            }\n                        }\n                    }\n                ],\n                \"agglomeration_titles\": [\n                    {\n                        \"id\": 84,\n                        \"title_type\": {\n                            \"id\": 11,\n                            \"name\": \"Vice-président\",\n                            \"subtitle\": \"chargé des travaux, de la voirie et des espaces publics\",\n                            \"weight\": 14,\n                            \"type_category\": \"Agglomérations\"\n                        },\n                        \"agglomeration\": {\n                            \"id\": 4,\n                            \"organization_id\": 52,\n                            \"name\": \"Grand Paris Sud\",\n                            \"slug\": \"grand-paris-sud\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                                \"alt\": \"image de profil de Grand Paris Sud\"\n                            }\n                        }\n                    }\n                ],\n                \"department_titles\": [],\n                \"region_titles\": []\n            },\n            \"infos\": {\n                \"phone\": \"01 69 11 19 73\",\n                \"email\": \"contact@mairie-villabe.fr\",\n                \"contact\": \"\",\n                \"website\": \"http://www.karl-dirat.fr/\",\n                \"social\": {\n                    \"facebook\": \"https://www.facebook.com/karl.dirat\",\n                    \"twitter\": \"\",\n                    \"googleplus\": \"\",\n                    \"instagram\": \"\",\n                    \"linkedin\": \"https://fr.linkedin.com/in/karl-dirat-4ab8a063\",\n                    \"viadeo\": \"\",\n                    \"flickr\": \"\",\n                    \"youtube\": \"\",\n                    \"dailymotion\": \"\",\n                    \"vimeo\": \"\",\n                    \"medium\": \"\",\n                    \"rss\": \"\",\n                    \"snapcode_svg\": \"\",\n                    \"messenger\": null,\n                    \"allocine\": null\n                }\n            }\n        },\n        {\n            \"id\": 46,\n            \"person_id\": 42,\n            \"civility\": \"Mme\",\n            \"first_name\": \"Elodie\",\n            \"last_name\": \"François\",\n            \"slug\": \"elodie-francois\",\n            \"blurb\": \"Conseiller communautaire de Grand Paris Sud, Maire adjoint d'Évry chargée du Développement, du Renouvellement Urbain, du Développement Durable et du Conseil de quartier Centre-Ville\",\n            \"pages\": [\n                {\n                    \"id\": 220,\n                    \"instance\": {\n                        \"slug\": \"portail-institutionnel-gps\"\n                    }\n                }\n            ],\n            \"profile_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/091/logo_small/Elodie_FRANCOIS_%28evry%29.jpg?1458202819\",\n                \"small_dimensions\": \"100x150\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/091/logo_medium/Elodie_FRANCOIS_%28evry%29.jpg?1458202819\",\n                \"medium_dimensions\": \"266x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/091/logo_large/Elodie_FRANCOIS_%28evry%29.jpg?1458202819\",\n                \"large_dimensions\": \"399x600\",\n                \"alt\": \"image de profil de Elodie François\",\n                \"name\": \"image de profil de Elodie François\",\n                \"slug\": \"image-de-profil-de-elodie-francois\",\n                \"description\": \"image de profil de Elodie François\",\n                \"copyright\": \"\"\n            },\n            \"titles\": {\n                \"city_titles\": [\n                    {\n                        \"id\": 86,\n                        \"title_type\": {\n                            \"id\": 7,\n                            \"name\": \"Maire adjointe\",\n                            \"subtitle\": \"Chargée du Développement, du Renouvellement Urbain, du Développement Durable et du Conseil de quartier Centre-Ville\",\n                            \"weight\": 1,\n                            \"type_category\": \"Communes\"\n                        },\n                        \"city\": {\n                            \"id\": 7,\n                            \"organization_id\": 53,\n                            \"name\": \"Évry\",\n                            \"slug\": \"evry\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/066/logo_small/Logo-Evry.png?1453972695\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/066/logo_medium/Logo-Evry.png?1453972695\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/066/logo_large/Logo-Evry.png?1453972695\",\n                                \"alt\": \"image de profil de Évry\"\n                            }\n                        }\n                    }\n                ],\n                \"agglomeration_titles\": [\n                    {\n                        \"id\": 85,\n                        \"title_type\": {\n                            \"id\": 9,\n                            \"name\": \"Conseillère communautaire\",\n                            \"subtitle\": \"\",\n                            \"weight\": 39,\n                            \"type_category\": \"Agglomérations\"\n                        },\n                        \"agglomeration\": {\n                            \"id\": 4,\n                            \"organization_id\": 52,\n                            \"name\": \"Grand Paris Sud\",\n                            \"slug\": \"grand-paris-sud\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                                \"alt\": \"image de profil de Grand Paris Sud\"\n                            }\n                        }\n                    }\n                ],\n                \"department_titles\": [],\n                \"region_titles\": []\n            },\n            \"infos\": {\n                \"phone\": \"01 60 91 63 98\",\n                \"email\": \"\",\n                \"contact\": \"\",\n                \"website\": \"\",\n                \"social\": {\n                    \"facebook\": \"https://www.facebook.com/elodie.francois.750?ref=br_rs\",\n                    \"twitter\": \"https://twitter.com/elo_francois\",\n                    \"googleplus\": \"\",\n                    \"instagram\": \"\",\n                    \"linkedin\": \"https://www.linkedin.com/in/elodie-francois-23a0944a\",\n                    \"viadeo\": \"\",\n                    \"flickr\": \"\",\n                    \"youtube\": \"\",\n                    \"dailymotion\": \"\",\n                    \"vimeo\": \"\",\n                    \"medium\": \"\",\n                    \"rss\": \"\",\n                    \"snapcode_svg\": \"\",\n                    \"messenger\": null,\n                    \"allocine\": null\n                }\n            }\n        },\n        {\n            \"id\": 47,\n            \"person_id\": 43,\n            \"civility\": \"M.\",\n            \"first_name\": \"Manuel\",\n            \"last_name\": \"Valls\",\n            \"slug\": \"manuel-valls\",\n            \"blurb\": \"Conseiller communautaire de Grand Paris Sud, Conseiller municipal d'Évry\",\n            \"pages\": [\n                {\n                    \"id\": 221,\n                    \"instance\": {\n                        \"slug\": \"portail-institutionnel-gps\"\n                    }\n                }\n            ],\n            \"profile_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/094/logo_small/Manuel-Valls.jpg?1456236605\",\n                \"small_dimensions\": \"150x111\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/094/logo_medium/Manuel-Valls.jpg?1456236605\",\n                \"medium_dimensions\": \"400x295\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/094/logo_large/Manuel-Valls.jpg?1456236605\",\n                \"large_dimensions\": \"600x443\",\n                \"alt\": \"image de profil de Manuel Valls\",\n                \"name\": \"image de profil de Manuel Valls\",\n                \"slug\": \"image-de-profil-de-manuel-valls\",\n                \"description\": \"image de profil de Manuel Valls\",\n                \"copyright\": \"\"\n            },\n            \"titles\": {\n                \"city_titles\": [\n                    {\n                        \"id\": 87,\n                        \"title_type\": {\n                            \"id\": 8,\n                            \"name\": \"Conseiller municipal\",\n                            \"subtitle\": \"\",\n                            \"weight\": 1,\n                            \"type_category\": \"Communes\"\n                        },\n                        \"city\": {\n                            \"id\": 7,\n                            \"organization_id\": 53,\n                            \"name\": \"Évry\",\n                            \"slug\": \"evry\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/066/logo_small/Logo-Evry.png?1453972695\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/066/logo_medium/Logo-Evry.png?1453972695\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/066/logo_large/Logo-Evry.png?1453972695\",\n                                \"alt\": \"image de profil de Évry\"\n                            }\n                        }\n                    }\n                ],\n                \"agglomeration_titles\": [\n                    {\n                        \"id\": 88,\n                        \"title_type\": {\n                            \"id\": 9,\n                            \"name\": \"Conseiller communautaire\",\n                            \"subtitle\": \"\",\n                            \"weight\": 59,\n                            \"type_category\": \"Agglomérations\"\n                        },\n                        \"agglomeration\": {\n                            \"id\": 4,\n                            \"organization_id\": 52,\n                            \"name\": \"Grand Paris Sud\",\n                            \"slug\": \"grand-paris-sud\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                                \"alt\": \"image de profil de Grand Paris Sud\"\n                            }\n                        }\n                    }\n                ],\n                \"department_titles\": [],\n                \"region_titles\": []\n            },\n            \"infos\": {\n                \"phone\": \"01 60 91 63 98\",\n                \"email\": \"\",\n                \"contact\": \"\",\n                \"website\": \"\",\n                \"social\": {\n                    \"facebook\": \"https://www.facebook.com/manuelvalls/?fref=ts\",\n                    \"twitter\": \"https://twitter.com/manuelvalls\",\n                    \"googleplus\": \"\",\n                    \"instagram\": \"\",\n                    \"linkedin\": \"\",\n                    \"viadeo\": \"\",\n                    \"flickr\": \"\",\n                    \"youtube\": \"\",\n                    \"dailymotion\": \"\",\n                    \"vimeo\": \"\",\n                    \"medium\": \"\",\n                    \"rss\": \"\",\n                    \"snapcode_svg\": \"\",\n                    \"messenger\": null,\n                    \"allocine\": null\n                }\n            }\n        },\n        {\n            \"id\": 48,\n            \"person_id\": 44,\n            \"civility\": \"Mme\",\n            \"first_name\": \"Edith\",\n            \"last_name\": \"Maurin\",\n            \"slug\": \"edith-maurin\",\n            \"blurb\": \"Conseiller communautaire de Grand Paris Sud chargée des réseaux, de l’énergie et de la Régie de l’eau, Conseiller municipal d'Évry chargée de l’Urbanisme Règlementaire\",\n            \"pages\": [\n                {\n                    \"id\": 222,\n                    \"instance\": {\n                        \"slug\": \"portail-institutionnel-gps\"\n                    }\n                }\n            ],\n            \"profile_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/139/logo_small/Edith_MAURIN_%28evry%29.jpg?1458202774\",\n                \"small_dimensions\": \"100x150\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/139/logo_medium/Edith_MAURIN_%28evry%29.jpg?1458202774\",\n                \"medium_dimensions\": \"266x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/139/logo_large/Edith_MAURIN_%28evry%29.jpg?1458202774\",\n                \"large_dimensions\": \"399x600\",\n                \"alt\": \"image de profil de Edith Maurin\",\n                \"name\": \"image de profil de Edith Maurin\",\n                \"slug\": \"image-de-profil-de-edith-maurin\",\n                \"description\": \"image de profil de Edith Maurin\",\n                \"copyright\": \"\"\n            },\n            \"titles\": {\n                \"city_titles\": [\n                    {\n                        \"id\": 89,\n                        \"title_type\": {\n                            \"id\": 8,\n                            \"name\": \"Conseillère municipale\",\n                            \"subtitle\": \"chargée de l’Urbanisme Règlementaire\",\n                            \"weight\": 1,\n                            \"type_category\": \"Communes\"\n                        },\n                        \"city\": {\n                            \"id\": 7,\n                            \"organization_id\": 53,\n                            \"name\": \"Évry\",\n                            \"slug\": \"evry\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/066/logo_small/Logo-Evry.png?1453972695\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/066/logo_medium/Logo-Evry.png?1453972695\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/066/logo_large/Logo-Evry.png?1453972695\",\n                                \"alt\": \"image de profil de Évry\"\n                            }\n                        }\n                    }\n                ],\n                \"agglomeration_titles\": [\n                    {\n                        \"id\": 118,\n                        \"title_type\": {\n                            \"id\": 9,\n                            \"name\": \"Conseillère communautaire\",\n                            \"subtitle\": \"chargée des réseaux, de l’énergie et de la Régie de l’eau\",\n                            \"weight\": 15,\n                            \"type_category\": \"Agglomérations\"\n                        },\n                        \"agglomeration\": {\n                            \"id\": 4,\n                            \"organization_id\": 52,\n                            \"name\": \"Grand Paris Sud\",\n                            \"slug\": \"grand-paris-sud\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                                \"alt\": \"image de profil de Grand Paris Sud\"\n                            }\n                        }\n                    }\n                ],\n                \"department_titles\": [],\n                \"region_titles\": []\n            },\n            \"infos\": {\n                \"phone\": \"01 60 91 63 98\",\n                \"email\": \"\",\n                \"contact\": \"http://www.evry.fr/contact/index.html\",\n                \"website\": \"\",\n                \"social\": {\n                    \"facebook\": \"\",\n                    \"twitter\": \"\",\n                    \"googleplus\": \"\",\n                    \"instagram\": \"\",\n                    \"linkedin\": \"\",\n                    \"viadeo\": \"\",\n                    \"flickr\": \"\",\n                    \"youtube\": \"\",\n                    \"dailymotion\": \"\",\n                    \"vimeo\": \"\",\n                    \"medium\": \"\",\n                    \"rss\": \"\",\n                    \"snapcode_svg\": \"\",\n                    \"messenger\": null,\n                    \"allocine\": null\n                }\n            }\n        },\n        {\n            \"id\": 49,\n            \"person_id\": 45,\n            \"civility\": \"M.\",\n            \"first_name\": \"Farouk\",\n            \"last_name\": \"Alouani\",\n            \"slug\": \"farouk-alouani\",\n            \"blurb\": \"Conseiller communautaire de Grand Paris Sud chargé de la mobilisation du territoire pour l’emploi des jeunes, Maire adjoint d'Évry chargé de la Jeunesse et du Conseil des Jeunes d’Evry, de l’Emploi et de l’Insertion et adjoint du quartier des Aunettes\",\n            \"pages\": [\n                {\n                    \"id\": 223,\n                    \"instance\": {\n                        \"slug\": \"portail-institutionnel-gps\"\n                    }\n                }\n            ],\n            \"profile_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/095/logo_small/Farouk_ALOUANI_%28evry%29.jpg?1458203032\",\n                \"small_dimensions\": \"100x150\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/095/logo_medium/Farouk_ALOUANI_%28evry%29.jpg?1458203032\",\n                \"medium_dimensions\": \"266x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/095/logo_large/Farouk_ALOUANI_%28evry%29.jpg?1458203032\",\n                \"large_dimensions\": \"399x600\",\n                \"alt\": \"image de profil de Farouk Alouani\",\n                \"name\": \"image de profil de Farouk Alouani\",\n                \"slug\": \"image-de-profil-de-farouk-alouani\",\n                \"description\": \"image de profil de Farouk Alouani\",\n                \"copyright\": \"\"\n            },\n            \"titles\": {\n                \"city_titles\": [\n                    {\n                        \"id\": 90,\n                        \"title_type\": {\n                            \"id\": 7,\n                            \"name\": \"Maire adjoint\",\n                            \"subtitle\": \"chargé de la Jeunesse et du Conseil des Jeunes d’Evry, de l’Emploi et de l’Insertion et adjoint du quartier des Aunettes \",\n                            \"weight\": 1,\n                            \"type_category\": \"Communes\"\n                        },\n                        \"city\": {\n                            \"id\": 7,\n                            \"organization_id\": 53,\n                            \"name\": \"Évry\",\n                            \"slug\": \"evry\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/066/logo_small/Logo-Evry.png?1453972695\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/066/logo_medium/Logo-Evry.png?1453972695\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/066/logo_large/Logo-Evry.png?1453972695\",\n                                \"alt\": \"image de profil de Évry\"\n                            }\n                        }\n                    }\n                ],\n                \"agglomeration_titles\": [\n                    {\n                        \"id\": 91,\n                        \"title_type\": {\n                            \"id\": 9,\n                            \"name\": \"Conseiller communautaire\",\n                            \"subtitle\": \"chargé de la mobilisation du territoire pour l’emploi des jeunes\",\n                            \"weight\": 8,\n                            \"type_category\": \"Agglomérations\"\n                        },\n                        \"agglomeration\": {\n                            \"id\": 4,\n                            \"organization_id\": 52,\n                            \"name\": \"Grand Paris Sud\",\n                            \"slug\": \"grand-paris-sud\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                                \"alt\": \"image de profil de Grand Paris Sud\"\n                            }\n                        }\n                    }\n                ],\n                \"department_titles\": [],\n                \"region_titles\": []\n            },\n            \"infos\": {\n                \"phone\": \"01 60 91 63 98\",\n                \"email\": \"\",\n                \"contact\": \"http://www.evry.fr/contact/index.html\",\n                \"website\": \"\",\n                \"social\": {\n                    \"facebook\": \"\",\n                    \"twitter\": \"\",\n                    \"googleplus\": \"\",\n                    \"instagram\": \"\",\n                    \"linkedin\": \"\",\n                    \"viadeo\": \"\",\n                    \"flickr\": \"\",\n                    \"youtube\": \"\",\n                    \"dailymotion\": \"\",\n                    \"vimeo\": \"\",\n                    \"medium\": \"\",\n                    \"rss\": \"\",\n                    \"snapcode_svg\": \"\",\n                    \"messenger\": null,\n                    \"allocine\": null\n                }\n            }\n        },\n        {\n            \"id\": 1,\n            \"person_id\": 1,\n            \"civility\": \"M.\",\n            \"first_name\": \"Jean\",\n            \"last_name\": \"Caron\",\n            \"slug\": \"jean-caron\",\n            \"blurb\": \"Conseiller communautaire de Grand Paris Sud, Maire adjoint de Courcouronnes chargé de l'Économie et des Finances\",\n            \"pages\": [\n                {\n                    \"id\": 183,\n                    \"instance\": {\n                        \"slug\": \"portail-institutionnel-gps\"\n                    }\n                }\n            ],\n            \"profile_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/081/logo_small/Jean_CARON_%28courcouronnes%29.jpg?1458204269\",\n                \"small_dimensions\": \"100x150\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/081/logo_medium/Jean_CARON_%28courcouronnes%29.jpg?1458204269\",\n                \"medium_dimensions\": \"266x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/081/logo_large/Jean_CARON_%28courcouronnes%29.jpg?1458204269\",\n                \"large_dimensions\": \"399x600\",\n                \"alt\": \"image de profil de Jean Caron\",\n                \"name\": \"image de profil de Jean Caron\",\n                \"slug\": \"image-de-profil-de-jean-caron\",\n                \"description\": \"image de profil de Jean Caron\",\n                \"copyright\": \"\"\n            },\n            \"titles\": {\n                \"city_titles\": [\n                    {\n                        \"id\": 48,\n                        \"title_type\": {\n                            \"id\": 7,\n                            \"name\": \"Maire adjoint\",\n                            \"subtitle\": \"Chargé de l'Économie et des Finances\",\n                            \"weight\": 1,\n                            \"type_category\": \"Communes\"\n                        },\n                        \"city\": {\n                            \"id\": 14,\n                            \"organization_id\": 60,\n                            \"name\": \"Courcouronnes\",\n                            \"slug\": \"courcouronnes\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/082/logo_small/Logo-Courcouronnes.png?1453972725\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/082/logo_medium/Logo-Courcouronnes.png?1453972725\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/082/logo_large/Logo-Courcouronnes.png?1453972725\",\n                                \"alt\": \"image de profil de Courcouronnes\"\n                            }\n                        }\n                    }\n                ],\n                \"agglomeration_titles\": [\n                    {\n                        \"id\": 43,\n                        \"title_type\": {\n                            \"id\": 9,\n                            \"name\": \"Conseiller communautaire\",\n                            \"subtitle\": \"\",\n                            \"weight\": 33,\n                            \"type_category\": \"Agglomérations\"\n                        },\n                        \"agglomeration\": {\n                            \"id\": 4,\n                            \"organization_id\": 52,\n                            \"name\": \"Grand Paris Sud\",\n                            \"slug\": \"grand-paris-sud\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                                \"alt\": \"image de profil de Grand Paris Sud\"\n                            }\n                        }\n                    }\n                ],\n                \"department_titles\": [],\n                \"region_titles\": []\n            },\n            \"infos\": {\n                \"phone\": \"01 69 36 66 66\",\n                \"email\": \"secretariat.elus@courcouronnes.fr\",\n                \"contact\": \"\",\n                \"website\": \"\",\n                \"social\": {\n                    \"facebook\": \"\",\n                    \"twitter\": \"\",\n                    \"googleplus\": \"\",\n                    \"instagram\": \"\",\n                    \"linkedin\": \"https://www.linkedin.com/in/jean-caron-139462?authType=NAME_SEARCH&authToken=TtoQ&locale=en_US&srchid=4239113571456397433052&srchindex=1&srchtotal=1179&trk=vsrp_people_res_name&trkInfo=VSRPsearchId%3A4239113571456397433052%2CVSRPtargetId%3A1123389%2CVSRPcmpt%3Aprimary%2CVSRPnm%3Atrue%2CauthType%3ANAME_SEARCH\",\n                    \"viadeo\": \"\",\n                    \"flickr\": \"\",\n                    \"youtube\": \"\",\n                    \"dailymotion\": \"\",\n                    \"vimeo\": \"\",\n                    \"medium\": \"\",\n                    \"rss\": \"\",\n                    \"snapcode_svg\": \"\",\n                    \"messenger\": \"\",\n                    \"allocine\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 20,\n            \"person_id\": 15,\n            \"civility\": \"Mme\",\n            \"first_name\": \"Martine\",\n            \"last_name\": \"Cartau-Oury\",\n            \"slug\": \"martine-cartau-oury\",\n            \"blurb\": \"Conseiller communautaire de Grand Paris Sud chargée de l’événementiel économique, Maire de Saintry-sur-Seine\",\n            \"pages\": [\n                {\n                    \"id\": 196,\n                    \"instance\": {\n                        \"slug\": \"portail-institutionnel-gps\"\n                    }\n                }\n            ],\n            \"profile_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/578/logo_small/Martine_CARTAU_OURY_Saintry_sur_Seine_Grand_Paris_Sud.jpg?1457088776\",\n                \"small_dimensions\": \"99x150\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/578/logo_medium/Martine_CARTAU_OURY_Saintry_sur_Seine_Grand_Paris_Sud.jpg?1457088776\",\n                \"medium_dimensions\": \"265x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/578/logo_large/Martine_CARTAU_OURY_Saintry_sur_Seine_Grand_Paris_Sud.jpg?1457088776\",\n                \"large_dimensions\": \"397x600\",\n                \"alt\": \"image de profil de Martine Cartau-Oury\",\n                \"name\": \"image de profil de Martine Cartau-Oury\",\n                \"slug\": \"image-de-profil-de-martine-cartau-oury\",\n                \"description\": \"image de profil de Martine Cartau-Oury\",\n                \"copyright\": \"\"\n            },\n            \"titles\": {\n                \"city_titles\": [\n                    {\n                        \"id\": 20,\n                        \"title_type\": {\n                            \"id\": 6,\n                            \"name\": \"Maire\",\n                            \"subtitle\": \"\",\n                            \"weight\": 1,\n                            \"type_category\": \"Communes\"\n                        },\n                        \"city\": {\n                            \"id\": 24,\n                            \"organization_id\": 70,\n                            \"name\": \"Saintry-sur-Seine\",\n                            \"slug\": \"saintry-sur-seine\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/112/logo_small/logo-Mairie.png?1463046613\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/112/logo_medium/logo-Mairie.png?1463046613\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/112/logo_large/logo-Mairie.png?1463046613\",\n                                \"alt\": \"image de profil de Saintry-sur-Seine\"\n                            }\n                        }\n                    }\n                ],\n                \"agglomeration_titles\": [\n                    {\n                        \"id\": 19,\n                        \"title_type\": {\n                            \"id\": 11,\n                            \"name\": \"Vice-présidente\",\n                            \"subtitle\": \"chargée du commerce \",\n                            \"weight\": 10,\n                            \"type_category\": \"Agglomérations\"\n                        },\n                        \"agglomeration\": {\n                            \"id\": 4,\n                            \"organization_id\": 52,\n                            \"name\": \"Grand Paris Sud\",\n                            \"slug\": \"grand-paris-sud\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                                \"alt\": \"image de profil de Grand Paris Sud\"\n                            }\n                        }\n                    }\n                ],\n                \"department_titles\": [],\n                \"region_titles\": []\n            },\n            \"infos\": {\n                \"phone\": \"01 69 89 52 52\",\n                \"email\": \"cdm@saintry-sur-seine.fr\",\n                \"contact\": \"\",\n                \"website\": \"\",\n                \"social\": {\n                    \"facebook\": \"https://www.facebook.com/martinecartauourysaintry\",\n                    \"twitter\": \"https://twitter.com/CartauOury?lang=fr\",\n                    \"googleplus\": \"\",\n                    \"instagram\": \"\",\n                    \"linkedin\": \"\",\n                    \"viadeo\": \"\",\n                    \"flickr\": \"\",\n                    \"youtube\": \"\",\n                    \"dailymotion\": \"\",\n                    \"vimeo\": \"\",\n                    \"medium\": \"\",\n                    \"rss\": \"\",\n                    \"snapcode_svg\": \"\",\n                    \"messenger\": \"\",\n                    \"allocine\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 114,\n            \"person_id\": 110,\n            \"civility\": \"M.\",\n            \"first_name\": \"Henri \",\n            \"last_name\": \"Bret\",\n            \"slug\": \"henri-bret\",\n            \"pages\": [],\n            \"profile_picture\": {\n                \"small\": \"/assets/missing_logo_small-25a62311fd6b6f4ed32f37b43490bac1a6bfded378c748ba62200eb1b6a26910.png\",\n                \"small_dimensions\": \"x\",\n                \"medium\": \"/assets/missing_logo_medium-79214fc42d47c1bbc916d3ef5b8ec183dc05d77afc66225a29a3173711d3fc3b.png\",\n                \"medium_dimensions\": \"x\",\n                \"large\": \"/assets/missing_logo_large-2e2cb84c5127f21e8d1292b385da9507537c2baba88388c599c5aac99c5c111b.png\",\n                \"large_dimensions\": \"x\",\n                \"alt\": \"image de profil de Henri  Bret\",\n                \"name\": \"image de profil de Henri  Bret\",\n                \"slug\": null,\n                \"description\": \"image de profil de Henri  Bret\",\n                \"copyright\": \"\"\n            },\n            \"titles\": {\n                \"city_titles\": [],\n                \"agglomeration_titles\": [\n                    {\n                        \"id\": 209,\n                        \"title_type\": {\n                            \"id\": 9,\n                            \"name\": \"Conseiller communautaire\",\n                            \"subtitle\": \"chargé de l'accessibilité et du handicap \",\n                            \"weight\": 1,\n                            \"type_category\": \"Agglomérations\"\n                        },\n                        \"agglomeration\": {\n                            \"id\": 4,\n                            \"organization_id\": 52,\n                            \"name\": \"Grand Paris Sud\",\n                            \"slug\": \"grand-paris-sud\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                                \"alt\": \"image de profil de Grand Paris Sud\"\n                            }\n                        }\n                    }\n                ],\n                \"department_titles\": [],\n                \"region_titles\": []\n            },\n            \"infos\": {\n                \"phone\": null,\n                \"email\": \"\",\n                \"contact\": \"\",\n                \"website\": \"\",\n                \"social\": {\n                    \"facebook\": \"\",\n                    \"twitter\": \"\",\n                    \"googleplus\": \"\",\n                    \"instagram\": \"\",\n                    \"linkedin\": \"\",\n                    \"viadeo\": \"\",\n                    \"flickr\": \"\",\n                    \"youtube\": \"\",\n                    \"dailymotion\": \"\",\n                    \"vimeo\": \"\",\n                    \"medium\": \"\",\n                    \"rss\": \"\",\n                    \"snapcode_svg\": \"\",\n                    \"messenger\": \"\",\n                    \"allocine\": \"\"\n                }\n            }\n        },\n        {\n            \"id\": 50,\n            \"person_id\": 46,\n            \"civility\": \"Mme\",\n            \"first_name\": \"Florence\",\n            \"last_name\": \"Bellamy\",\n            \"slug\": \"florence-bellamy\",\n            \"blurb\": \"Conseiller communautaire de Grand Paris Sud, Maire adjoint d'Évry chargée de la Politique de la Ville et de la Démocratie Participative\",\n            \"pages\": [\n                {\n                    \"id\": 224,\n                    \"instance\": {\n                        \"slug\": \"portail-institutionnel-gps\"\n                    }\n                }\n            ],\n            \"profile_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/100/logo_small/Florence_BELLAMY_%28evry%29.jpg?1458203198\",\n                \"small_dimensions\": \"100x150\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/100/logo_medium/Florence_BELLAMY_%28evry%29.jpg?1458203198\",\n                \"medium_dimensions\": \"266x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/100/logo_large/Florence_BELLAMY_%28evry%29.jpg?1458203198\",\n                \"large_dimensions\": \"399x600\",\n                \"alt\": \"image de profil de Florence Bellamy\",\n                \"name\": \"image de profil de Florence Bellamy\",\n                \"slug\": \"image-de-profil-de-florence-bellamy\",\n                \"description\": \"image de profil de Florence Bellamy\",\n                \"copyright\": \"\"\n            },\n            \"titles\": {\n                \"city_titles\": [\n                    {\n                        \"id\": 92,\n                        \"title_type\": {\n                            \"id\": 7,\n                            \"name\": \"Maire adjointe\",\n                            \"subtitle\": \"chargée de la Politique de la Ville et de la Démocratie Participative \",\n                            \"weight\": 1,\n                            \"type_category\": \"Communes\"\n                        },\n                        \"city\": {\n                            \"id\": 7,\n                            \"organization_id\": 53,\n                            \"name\": \"Évry\",\n                            \"slug\": \"evry\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/066/logo_small/Logo-Evry.png?1453972695\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/066/logo_medium/Logo-Evry.png?1453972695\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/066/logo_large/Logo-Evry.png?1453972695\",\n                                \"alt\": \"image de profil de Évry\"\n                            }\n                        }\n                    }\n                ],\n                \"agglomeration_titles\": [\n                    {\n                        \"id\": 93,\n                        \"title_type\": {\n                            \"id\": 9,\n                            \"name\": \"Conseillère communautaire\",\n                            \"subtitle\": \"\",\n                            \"weight\": 28,\n                            \"type_category\": \"Agglomérations\"\n                        },\n                        \"agglomeration\": {\n                            \"id\": 4,\n                            \"organization_id\": 52,\n                            \"name\": \"Grand Paris Sud\",\n                            \"slug\": \"grand-paris-sud\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                                \"alt\": \"image de profil de Grand Paris Sud\"\n                            }\n                        }\n                    }\n                ],\n                \"department_titles\": [],\n                \"region_titles\": []\n            },\n            \"infos\": {\n                \"phone\": \"01 60 91 63 98\",\n                \"email\": \"\",\n                \"contact\": \"http://www.evry.fr/contact/index.html\",\n                \"website\": \"http://www.florence-bellamy.fr/\",\n                \"social\": {\n                    \"facebook\": \"https://www.facebook.com/florence.bellamy?fref=ts\",\n                    \"twitter\": \"https://twitter.com/FloBellamy\",\n                    \"googleplus\": \"https://plus.google.com/115296838154867185714/posts\",\n                    \"instagram\": \"\",\n                    \"linkedin\": \"\",\n                    \"viadeo\": \"\",\n                    \"flickr\": \"\",\n                    \"youtube\": \"\",\n                    \"dailymotion\": \"\",\n                    \"vimeo\": \"\",\n                    \"medium\": \"\",\n                    \"rss\": \"\",\n                    \"snapcode_svg\": \"\",\n                    \"messenger\": null,\n                    \"allocine\": null\n                }\n            }\n        },\n        {\n            \"id\": 51,\n            \"person_id\": 47,\n            \"civility\": \"M.\",\n            \"first_name\": \"Ronan\",\n            \"last_name\": \"Fleury\",\n            \"slug\": \"ronan-fleury\",\n            \"blurb\": \"Conseiller communautaire de Grand Paris Sud, Maire adjoint d'Évry chargé des Finances et du Budget, des Ressources Humaines et des Relations Sociales\",\n            \"pages\": [\n                {\n                    \"id\": 225,\n                    \"instance\": {\n                        \"slug\": \"portail-institutionnel-gps\"\n                    }\n                }\n            ],\n            \"profile_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/103/logo_small/Ronan_FLEURY_%28evry%29.jpg?1458205579\",\n                \"small_dimensions\": \"100x150\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/103/logo_medium/Ronan_FLEURY_%28evry%29.jpg?1458205579\",\n                \"medium_dimensions\": \"266x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/103/logo_large/Ronan_FLEURY_%28evry%29.jpg?1458205579\",\n                \"large_dimensions\": \"399x600\",\n                \"alt\": \"image de profil de Ronan Fleury\",\n                \"name\": \"image de profil de Ronan Fleury\",\n                \"slug\": \"image-de-profil-de-ronan-fleury\",\n                \"description\": \"image de profil de Ronan Fleury\",\n                \"copyright\": \"\"\n            },\n            \"titles\": {\n                \"city_titles\": [\n                    {\n                        \"id\": 94,\n                        \"title_type\": {\n                            \"id\": 7,\n                            \"name\": \"Maire adjoint\",\n                            \"subtitle\": \"chargé des Finances et du Budget, des Ressources Humaines et des Relations Sociales\",\n                            \"weight\": 1,\n                            \"type_category\": \"Communes\"\n                        },\n                        \"city\": {\n                            \"id\": 7,\n                            \"organization_id\": 53,\n                            \"name\": \"Évry\",\n                            \"slug\": \"evry\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/066/logo_small/Logo-Evry.png?1453972695\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/066/logo_medium/Logo-Evry.png?1453972695\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/066/logo_large/Logo-Evry.png?1453972695\",\n                                \"alt\": \"image de profil de Évry\"\n                            }\n                        }\n                    }\n                ],\n                \"agglomeration_titles\": [\n                    {\n                        \"id\": 95,\n                        \"title_type\": {\n                            \"id\": 9,\n                            \"name\": \"Conseiller communautaire\",\n                            \"subtitle\": \"\",\n                            \"weight\": 38,\n                            \"type_category\": \"Agglomérations\"\n                        },\n                        \"agglomeration\": {\n                            \"id\": 4,\n                            \"organization_id\": 52,\n                            \"name\": \"Grand Paris Sud\",\n                            \"slug\": \"grand-paris-sud\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                                \"alt\": \"image de profil de Grand Paris Sud\"\n                            }\n                        }\n                    }\n                ],\n                \"department_titles\": [],\n                \"region_titles\": []\n            },\n            \"infos\": {\n                \"phone\": \"01 60 91 63 98\",\n                \"email\": \"\",\n                \"contact\": \"http://www.evry.fr/contact/index.html\",\n                \"website\": \"\",\n                \"social\": {\n                    \"facebook\": \"https://www.facebook.com/ronan.fleury.7\",\n                    \"twitter\": \"https://twitter.com/Ronan_Fleury\",\n                    \"googleplus\": \"\",\n                    \"instagram\": \"\",\n                    \"linkedin\": \"\",\n                    \"viadeo\": \"\",\n                    \"flickr\": \"\",\n                    \"youtube\": \"\",\n                    \"dailymotion\": \"\",\n                    \"vimeo\": \"\",\n                    \"medium\": \"\",\n                    \"rss\": \"\",\n                    \"snapcode_svg\": \"\",\n                    \"messenger\": null,\n                    \"allocine\": null\n                }\n            }\n        },\n        {\n            \"id\": 52,\n            \"person_id\": 48,\n            \"civility\": \"M.\",\n            \"first_name\": \"Jacques\",\n            \"last_name\": \"Longuet\",\n            \"slug\": \"jacques-longuet\",\n            \"blurb\": \"Conseiller communautaire de Grand Paris Sud, Maire adjoint d'Évry en charge de la Vie scolaire, de la Parentalité, du Patrimoine et de la Mémoire de la ville\",\n            \"pages\": [\n                {\n                    \"id\": 226,\n                    \"instance\": {\n                        \"slug\": \"portail-institutionnel-gps\"\n                    }\n                }\n            ],\n            \"profile_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/106/logo_small/Jacques_LONGUET_%28evry%29.jpg?1458203968\",\n                \"small_dimensions\": \"100x150\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/106/logo_medium/Jacques_LONGUET_%28evry%29.jpg?1458203968\",\n                \"medium_dimensions\": \"266x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/106/logo_large/Jacques_LONGUET_%28evry%29.jpg?1458203968\",\n                \"large_dimensions\": \"399x600\",\n                \"alt\": \"image de profil de Jacques Longuet\",\n                \"name\": \"image de profil de Jacques Longuet\",\n                \"slug\": \"image-de-profil-de-jacques-longuet\",\n                \"description\": \"image de profil de Jacques Longuet\",\n                \"copyright\": \"\"\n            },\n            \"titles\": {\n                \"city_titles\": [\n                    {\n                        \"id\": 96,\n                        \"title_type\": {\n                            \"id\": 7,\n                            \"name\": \"Maire adjoint\",\n                            \"subtitle\": \"en charge de la Vie scolaire, de la Parentalité, du Patrimoine et de la Mémoire de la ville\",\n                            \"weight\": 1,\n                            \"type_category\": \"Communes\"\n                        },\n                        \"city\": {\n                            \"id\": 7,\n                            \"organization_id\": 53,\n                            \"name\": \"Évry\",\n                            \"slug\": \"evry\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/066/logo_small/Logo-Evry.png?1453972695\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/066/logo_medium/Logo-Evry.png?1453972695\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/066/logo_large/Logo-Evry.png?1453972695\",\n                                \"alt\": \"image de profil de Évry\"\n                            }\n                        }\n                    }\n                ],\n                \"agglomeration_titles\": [\n                    {\n                        \"id\": 97,\n                        \"title_type\": {\n                            \"id\": 9,\n                            \"name\": \"Conseiller communautaire\",\n                            \"subtitle\": \"\",\n                            \"weight\": 44,\n                            \"type_category\": \"Agglomérations\"\n                        },\n                        \"agglomeration\": {\n                            \"id\": 4,\n                            \"organization_id\": 52,\n                            \"name\": \"Grand Paris Sud\",\n                            \"slug\": \"grand-paris-sud\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                                \"alt\": \"image de profil de Grand Paris Sud\"\n                            }\n                        }\n                    }\n                ],\n                \"department_titles\": [],\n                \"region_titles\": []\n            },\n            \"infos\": {\n                \"phone\": \"01 60 91 63 98\",\n                \"email\": \"\",\n                \"contact\": \"\",\n                \"website\": \"\",\n                \"social\": {\n                    \"facebook\": \"https://www.facebook.com/jacques.longuet.94?fref=ts\",\n                    \"twitter\": \"\",\n                    \"googleplus\": \"\",\n                    \"instagram\": \"\",\n                    \"linkedin\": \"\",\n                    \"viadeo\": \"\",\n                    \"flickr\": \"\",\n                    \"youtube\": \"\",\n                    \"dailymotion\": \"\",\n                    \"vimeo\": \"\",\n                    \"medium\": \"\",\n                    \"rss\": \"\",\n                    \"snapcode_svg\": \"\",\n                    \"messenger\": null,\n                    \"allocine\": null\n                }\n            }\n        },\n        {\n            \"id\": 53,\n            \"person_id\": 49,\n            \"civility\": \"Mme\",\n            \"first_name\": \"Danielle\",\n            \"last_name\": \"Valero\",\n            \"slug\": \"danielle-valero\",\n            \"blurb\": \"Conseiller communautaire de Grand Paris Sud, Maire adjoint d'Évry chargée du Projet Educatif et du Pôle Territorial de Santé\",\n            \"pages\": [\n                {\n                    \"id\": 227,\n                    \"instance\": {\n                        \"slug\": \"portail-institutionnel-gps\"\n                    }\n                }\n            ],\n            \"profile_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/109/logo_small/Danielle_Valero_%28evry%29.jpg?1458202619\",\n                \"small_dimensions\": \"100x150\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/109/logo_medium/Danielle_Valero_%28evry%29.jpg?1458202619\",\n                \"medium_dimensions\": \"266x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/109/logo_large/Danielle_Valero_%28evry%29.jpg?1458202619\",\n                \"large_dimensions\": \"399x600\",\n                \"alt\": \"image de profil de Danielle Valero\",\n                \"name\": \"image de profil de Danielle Valero\",\n                \"slug\": \"image-de-profil-de-danielle-valero\",\n                \"description\": \"image de profil de Danielle Valero\",\n                \"copyright\": \"\"\n            },\n            \"titles\": {\n                \"city_titles\": [\n                    {\n                        \"id\": 98,\n                        \"title_type\": {\n                            \"id\": 7,\n                            \"name\": \"Maire adjointe\",\n                            \"subtitle\": \"chargée du Projet Educatif et du Pôle Territorial de Santé\",\n                            \"weight\": 1,\n                            \"type_category\": \"Communes\"\n                        },\n                        \"city\": {\n                            \"id\": 7,\n                            \"organization_id\": 53,\n                            \"name\": \"Évry\",\n                            \"slug\": \"evry\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/066/logo_small/Logo-Evry.png?1453972695\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/066/logo_medium/Logo-Evry.png?1453972695\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/066/logo_large/Logo-Evry.png?1453972695\",\n                                \"alt\": \"image de profil de Évry\"\n                            }\n                        }\n                    }\n                ],\n                \"agglomeration_titles\": [\n                    {\n                        \"id\": 99,\n                        \"title_type\": {\n                            \"id\": 9,\n                            \"name\": \"Conseillère communautaire\",\n                            \"subtitle\": \"\",\n                            \"weight\": 58,\n                            \"type_category\": \"Agglomérations\"\n                        },\n                        \"agglomeration\": {\n                            \"id\": 4,\n                            \"organization_id\": 52,\n                            \"name\": \"Grand Paris Sud\",\n                            \"slug\": \"grand-paris-sud\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                                \"alt\": \"image de profil de Grand Paris Sud\"\n                            }\n                        }\n                    }\n                ],\n                \"department_titles\": [],\n                \"region_titles\": []\n            },\n            \"infos\": {\n                \"phone\": \"01 60 91 63 98\",\n                \"email\": \"\",\n                \"contact\": \"http://www.evry.fr/contact/index.html\",\n                \"website\": \"\",\n                \"social\": {\n                    \"facebook\": \"https://www.facebook.com/danielle.valero.1?fref=ts\",\n                    \"twitter\": \"\",\n                    \"googleplus\": \"\",\n                    \"instagram\": \"\",\n                    \"linkedin\": \"\",\n                    \"viadeo\": \"\",\n                    \"flickr\": \"\",\n                    \"youtube\": \"\",\n                    \"dailymotion\": \"\",\n                    \"vimeo\": \"\",\n                    \"medium\": \"\",\n                    \"rss\": \"\",\n                    \"snapcode_svg\": \"\",\n                    \"messenger\": null,\n                    \"allocine\": null\n                }\n            }\n        },\n        {\n            \"id\": 54,\n            \"person_id\": 50,\n            \"civility\": \"M.\",\n            \"first_name\": \"Joseph\",\n            \"last_name\": \"Nouvellon\",\n            \"slug\": \"joseph-nouvellon\",\n            \"blurb\": \"Conseiller communautaire de Grand Paris Sud, Conseiller municipal d'Évry\",\n            \"pages\": [\n                {\n                    \"id\": 228,\n                    \"instance\": {\n                        \"slug\": \"portail-institutionnel-gps\"\n                    }\n                }\n            ],\n            \"profile_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/112/logo_small/Joseph_Nouvellon.jpg?1456239987\",\n                \"small_dimensions\": \"100x150\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/112/logo_medium/Joseph_Nouvellon.jpg?1456239987\",\n                \"medium_dimensions\": \"266x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/112/logo_large/Joseph_Nouvellon.jpg?1456239987\",\n                \"large_dimensions\": \"399x600\",\n                \"alt\": \"image de profil de Joseph Nouvellon\",\n                \"name\": \"image de profil de Joseph Nouvellon\",\n                \"slug\": \"image-de-profil-de-joseph-nouvellon\",\n                \"description\": \"image de profil de Joseph Nouvellon\",\n                \"copyright\": \"\"\n            },\n            \"titles\": {\n                \"city_titles\": [\n                    {\n                        \"id\": 100,\n                        \"title_type\": {\n                            \"id\": 8,\n                            \"name\": \"Conseiller municipal\",\n                            \"subtitle\": \"\",\n                            \"weight\": 1,\n                            \"type_category\": \"Communes\"\n                        },\n                        \"city\": {\n                            \"id\": 7,\n                            \"organization_id\": 53,\n                            \"name\": \"Évry\",\n                            \"slug\": \"evry\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/066/logo_small/Logo-Evry.png?1453972695\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/066/logo_medium/Logo-Evry.png?1453972695\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/066/logo_large/Logo-Evry.png?1453972695\",\n                                \"alt\": \"image de profil de Évry\"\n                            }\n                        }\n                    }\n                ],\n                \"agglomeration_titles\": [\n                    {\n                        \"id\": 101,\n                        \"title_type\": {\n                            \"id\": 9,\n                            \"name\": \"Conseiller communautaire\",\n                            \"subtitle\": \"\",\n                            \"weight\": 49,\n                            \"type_category\": \"Agglomérations\"\n                        },\n                        \"agglomeration\": {\n                            \"id\": 4,\n                            \"organization_id\": 52,\n                            \"name\": \"Grand Paris Sud\",\n                            \"slug\": \"grand-paris-sud\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                                \"alt\": \"image de profil de Grand Paris Sud\"\n                            }\n                        }\n                    }\n                ],\n                \"department_titles\": [],\n                \"region_titles\": []\n            },\n            \"infos\": {\n                \"phone\": \"01 60 91 63 98\",\n                \"email\": \"\",\n                \"contact\": \"http://www.evry.fr/contact/index.html\",\n                \"website\": \"\",\n                \"social\": {\n                    \"facebook\": \"\",\n                    \"twitter\": \"\",\n                    \"googleplus\": \"\",\n                    \"instagram\": \"\",\n                    \"linkedin\": \"https://fr.linkedin.com/in/josephnouvellon\",\n                    \"viadeo\": \"\",\n                    \"flickr\": \"\",\n                    \"youtube\": \"\",\n                    \"dailymotion\": \"\",\n                    \"vimeo\": \"\",\n                    \"medium\": \"\",\n                    \"rss\": \"\",\n                    \"snapcode_svg\": \"\",\n                    \"messenger\": null,\n                    \"allocine\": null\n                }\n            }\n        },\n        {\n            \"id\": 56,\n            \"person_id\": 52,\n            \"civility\": \"Mme\",\n            \"first_name\": \"Farida\",\n            \"last_name\": \"Amrani\",\n            \"slug\": \"farida-amrani\",\n            \"blurb\": \"Conseiller communautaire de Grand Paris Sud, Conseiller municipal d'Évry\",\n            \"pages\": [\n                {\n                    \"id\": 230,\n                    \"instance\": {\n                        \"slug\": \"portail-institutionnel-gps\"\n                    }\n                }\n            ],\n            \"profile_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/118/logo_small/Farida_AMRANI_%28evry%29.jpg?1458202985\",\n                \"small_dimensions\": \"100x150\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/118/logo_medium/Farida_AMRANI_%28evry%29.jpg?1458202985\",\n                \"medium_dimensions\": \"266x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/118/logo_large/Farida_AMRANI_%28evry%29.jpg?1458202985\",\n                \"large_dimensions\": \"399x600\",\n                \"alt\": \"image de profil de Farida Amrani\",\n                \"name\": \"image de profil de Farida Amrani\",\n                \"slug\": \"image-de-profil-de-farida-amrani\",\n                \"description\": \"image de profil de Farida Amrani\",\n                \"copyright\": \"\"\n            },\n            \"titles\": {\n                \"city_titles\": [\n                    {\n                        \"id\": 104,\n                        \"title_type\": {\n                            \"id\": 8,\n                            \"name\": \"Conseillère municipale\",\n                            \"subtitle\": \"\",\n                            \"weight\": 1,\n                            \"type_category\": \"Communes\"\n                        },\n                        \"city\": {\n                            \"id\": 7,\n                            \"organization_id\": 53,\n                            \"name\": \"Évry\",\n                            \"slug\": \"evry\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/066/logo_small/Logo-Evry.png?1453972695\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/066/logo_medium/Logo-Evry.png?1453972695\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/066/logo_large/Logo-Evry.png?1453972695\",\n                                \"alt\": \"image de profil de Évry\"\n                            }\n                        }\n                    }\n                ],\n                \"agglomeration_titles\": [\n                    {\n                        \"id\": 105,\n                        \"title_type\": {\n                            \"id\": 9,\n                            \"name\": \"Conseillère communautaire\",\n                            \"subtitle\": \"\",\n                            \"weight\": 22,\n                            \"type_category\": \"Agglomérations\"\n                        },\n                        \"agglomeration\": {\n                            \"id\": 4,\n                            \"organization_id\": 52,\n                            \"name\": \"Grand Paris Sud\",\n                            \"slug\": \"grand-paris-sud\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                                \"alt\": \"image de profil de Grand Paris Sud\"\n                            }\n                        }\n                    }\n                ],\n                \"department_titles\": [],\n                \"region_titles\": []\n            },\n            \"infos\": {\n                \"phone\": \"01 60 91 63 98\",\n                \"email\": \"\",\n                \"contact\": \"http://www.evry.fr/contact/index.html\",\n                \"website\": \"\",\n                \"social\": {\n                    \"facebook\": \"https://www.facebook.com/profile.php?id=100000705035956\",\n                    \"twitter\": \"\",\n                    \"googleplus\": \"\",\n                    \"instagram\": \"\",\n                    \"linkedin\": \"\",\n                    \"viadeo\": \"\",\n                    \"flickr\": \"\",\n                    \"youtube\": \"\",\n                    \"dailymotion\": \"\",\n                    \"vimeo\": \"\",\n                    \"medium\": \"\",\n                    \"rss\": \"\",\n                    \"snapcode_svg\": \"\",\n                    \"messenger\": null,\n                    \"allocine\": null\n                }\n            }\n        },\n        {\n            \"id\": 57,\n            \"person_id\": 53,\n            \"civility\": \"Mme\",\n            \"first_name\": \"Najwa\",\n            \"last_name\": \"El Haité\",\n            \"slug\": \"najwa-el-haite\",\n            \"blurb\": \"Conseiller communautaire de Grand Paris Sud, Maire adjoint d'Évry en charge de la Culture et de la Ville Numérique\",\n            \"pages\": [\n                {\n                    \"id\": 231,\n                    \"instance\": {\n                        \"slug\": \"portail-institutionnel-gps\"\n                    }\n                }\n            ],\n            \"profile_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/119/logo_small/Najwa_El_Haite.jpg?1456241199\",\n                \"small_dimensions\": \"100x150\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/119/logo_medium/Najwa_El_Haite.jpg?1456241199\",\n                \"medium_dimensions\": \"266x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/119/logo_large/Najwa_El_Haite.jpg?1456241199\",\n                \"large_dimensions\": \"399x600\",\n                \"alt\": \"image de profil de Najwa El Haité\",\n                \"name\": \"image de profil de Najwa El Haité\",\n                \"slug\": \"image-de-profil-de-najwa-el-haite\",\n                \"description\": \"image de profil de Najwa El Haité\",\n                \"copyright\": \"\"\n            },\n            \"titles\": {\n                \"city_titles\": [\n                    {\n                        \"id\": 106,\n                        \"title_type\": {\n                            \"id\": 7,\n                            \"name\": \"Maire adjointe\",\n                            \"subtitle\": \"en charge de la Culture et de la Ville Numérique\",\n                            \"weight\": 1,\n                            \"type_category\": \"Communes\"\n                        },\n                        \"city\": {\n                            \"id\": 7,\n                            \"organization_id\": 53,\n                            \"name\": \"Évry\",\n                            \"slug\": \"evry\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/066/logo_small/Logo-Evry.png?1453972695\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/066/logo_medium/Logo-Evry.png?1453972695\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/066/logo_large/Logo-Evry.png?1453972695\",\n                                \"alt\": \"image de profil de Évry\"\n                            }\n                        }\n                    }\n                ],\n                \"agglomeration_titles\": [\n                    {\n                        \"id\": 107,\n                        \"title_type\": {\n                            \"id\": 9,\n                            \"name\": \"Conseillère communautaire\",\n                            \"subtitle\": \"\",\n                            \"weight\": 37,\n                            \"type_category\": \"Agglomérations\"\n                        },\n                        \"agglomeration\": {\n                            \"id\": 4,\n                            \"organization_id\": 52,\n                            \"name\": \"Grand Paris Sud\",\n                            \"slug\": \"grand-paris-sud\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                                \"alt\": \"image de profil de Grand Paris Sud\"\n                            }\n                        }\n                    }\n                ],\n                \"department_titles\": [],\n                \"region_titles\": []\n            },\n            \"infos\": {\n                \"phone\": \"01 60 91 63 98\",\n                \"email\": \"\",\n                \"contact\": \"http://www.evry.fr/contact/index.html\",\n                \"website\": \"\",\n                \"social\": {\n                    \"facebook\": \"https://www.facebook.com/najwa.elhaite?fref=ts\",\n                    \"twitter\": \"https://twitter.com/najwaelhaite\",\n                    \"googleplus\": \"\",\n                    \"instagram\": \"\",\n                    \"linkedin\": \"\",\n                    \"viadeo\": \"\",\n                    \"flickr\": \"\",\n                    \"youtube\": \"\",\n                    \"dailymotion\": \"\",\n                    \"vimeo\": \"\",\n                    \"medium\": \"\",\n                    \"rss\": \"\",\n                    \"snapcode_svg\": \"\",\n                    \"messenger\": null,\n                    \"allocine\": null\n                }\n            }\n        },\n        {\n            \"id\": 59,\n            \"person_id\": 55,\n            \"civility\": \"Mme\",\n            \"first_name\": \"Françoise\",\n            \"last_name\": \"Surrault\",\n            \"slug\": \"francoise-surrault\",\n            \"blurb\": \"Conseiller communautaire de Grand Paris Sud, Maire adjoint de Ris-Orangis chargée du Développement économique, du Commerce, de l'Emploi et de la Formation\",\n            \"pages\": [\n                {\n                    \"id\": 233,\n                    \"instance\": {\n                        \"slug\": \"portail-institutionnel-gps\"\n                    }\n                }\n            ],\n            \"profile_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/127/logo_small/Francoise_Surralt_Ris_Orangis_Grand_Paris_Sud_.jpg?1458251314\",\n                \"small_dimensions\": \"100x150\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/127/logo_medium/Francoise_Surralt_Ris_Orangis_Grand_Paris_Sud_.jpg?1458251314\",\n                \"medium_dimensions\": \"266x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/127/logo_large/Francoise_Surralt_Ris_Orangis_Grand_Paris_Sud_.jpg?1458251314\",\n                \"large_dimensions\": \"399x600\",\n                \"alt\": \"image de profil de Françoise Surrault\",\n                \"name\": \"image de profil de Françoise Surrault\",\n                \"slug\": \"image-de-profil-de-francoise-surrault\",\n                \"description\": \"image de profil de Françoise Surrault\",\n                \"copyright\": \"\"\n            },\n            \"titles\": {\n                \"city_titles\": [\n                    {\n                        \"id\": 110,\n                        \"title_type\": {\n                            \"id\": 7,\n                            \"name\": \"Maire adjointe\",\n                            \"subtitle\": \"chargée du Développement économique, du Commerce, de l'Emploi et de la Formation\",\n                            \"weight\": 1,\n                            \"type_category\": \"Communes\"\n                        },\n                        \"city\": {\n                            \"id\": 11,\n                            \"organization_id\": 57,\n                            \"name\": \"Ris-Orangis\",\n                            \"slug\": \"ris-orangis\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/073/logo_small/logo-risorangis.png?1473694036\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/073/logo_medium/logo-risorangis.png?1473694036\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/073/logo_large/logo-risorangis.png?1473694036\",\n                                \"alt\": \"image de profil de Ris-Orangis\"\n                            }\n                        }\n                    }\n                ],\n                \"agglomeration_titles\": [\n                    {\n                        \"id\": 111,\n                        \"title_type\": {\n                            \"id\": 9,\n                            \"name\": \"Conseillère communautaire\",\n                            \"subtitle\": \"\",\n                            \"weight\": 55,\n                            \"type_category\": \"Agglomérations\"\n                        },\n                        \"agglomeration\": {\n                            \"id\": 4,\n                            \"organization_id\": 52,\n                            \"name\": \"Grand Paris Sud\",\n                            \"slug\": \"grand-paris-sud\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                                \"alt\": \"image de profil de Grand Paris Sud\"\n                            }\n                        }\n                    }\n                ],\n                \"department_titles\": [],\n                \"region_titles\": []\n            },\n            \"infos\": {\n                \"phone\": \"01 69 02 52 52\",\n                \"email\": \"contact@ville-ris-orangis.fr\",\n                \"contact\": \"\",\n                \"website\": \"\",\n                \"social\": {\n                    \"facebook\": \"\",\n                    \"twitter\": \"\",\n                    \"googleplus\": \"\",\n                    \"instagram\": \"\",\n                    \"linkedin\": \"\",\n                    \"viadeo\": \"\",\n                    \"flickr\": \"\",\n                    \"youtube\": \"\",\n                    \"dailymotion\": \"\",\n                    \"vimeo\": \"\",\n                    \"medium\": \"\",\n                    \"rss\": \"\",\n                    \"snapcode_svg\": \"\",\n                    \"messenger\": null,\n                    \"allocine\": null\n                }\n            }\n        },\n        {\n            \"id\": 60,\n            \"person_id\": 56,\n            \"civility\": \"M.\",\n            \"first_name\": \"Serge\",\n            \"last_name\": \"Mercieca\",\n            \"slug\": \"serge-mercieca\",\n            \"blurb\": \"Conseiller communautaire de Grand Paris Sud chargé du traitement des déchets, Conseiller municipal de Ris-Orangis\",\n            \"pages\": [\n                {\n                    \"id\": 234,\n                    \"instance\": {\n                        \"slug\": \"portail-institutionnel-gps\"\n                    }\n                }\n            ],\n            \"profile_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/130/logo_small/Serge_MERCIECA_Ris_Orangis_Grand_Paris_Sud.jpg?1458249425\",\n                \"small_dimensions\": \"100x150\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/130/logo_medium/Serge_MERCIECA_Ris_Orangis_Grand_Paris_Sud.jpg?1458249425\",\n                \"medium_dimensions\": \"266x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/130/logo_large/Serge_MERCIECA_Ris_Orangis_Grand_Paris_Sud.jpg?1458249425\",\n                \"large_dimensions\": \"399x600\",\n                \"alt\": \"image de profil de Serge Mercieca\",\n                \"name\": \"image de profil de Serge Mercieca\",\n                \"slug\": \"image-de-profil-de-serge-mercieca\",\n                \"description\": \"image de profil de Serge Mercieca\",\n                \"copyright\": \"\"\n            },\n            \"titles\": {\n                \"city_titles\": [\n                    {\n                        \"id\": 112,\n                        \"title_type\": {\n                            \"id\": 8,\n                            \"name\": \"Conseiller municipal\",\n                            \"subtitle\": \"\",\n                            \"weight\": 1,\n                            \"type_category\": \"Communes\"\n                        },\n                        \"city\": {\n                            \"id\": 11,\n                            \"organization_id\": 57,\n                            \"name\": \"Ris-Orangis\",\n                            \"slug\": \"ris-orangis\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/073/logo_small/logo-risorangis.png?1473694036\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/073/logo_medium/logo-risorangis.png?1473694036\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/073/logo_large/logo-risorangis.png?1473694036\",\n                                \"alt\": \"image de profil de Ris-Orangis\"\n                            }\n                        }\n                    }\n                ],\n                \"agglomeration_titles\": [\n                    {\n                        \"id\": 113,\n                        \"title_type\": {\n                            \"id\": 9,\n                            \"name\": \"Conseiller communautaire\",\n                            \"subtitle\": \"chargé du traitement des déchets\",\n                            \"weight\": 16,\n                            \"type_category\": \"Agglomérations\"\n                        },\n                        \"agglomeration\": {\n                            \"id\": 4,\n                            \"organization_id\": 52,\n                            \"name\": \"Grand Paris Sud\",\n                            \"slug\": \"grand-paris-sud\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                                \"alt\": \"image de profil de Grand Paris Sud\"\n                            }\n                        }\n                    }\n                ],\n                \"department_titles\": [],\n                \"region_titles\": []\n            },\n            \"infos\": {\n                \"phone\": \"01 69 02 52 52\",\n                \"email\": \"contact@ville-ris-orangis.fr\",\n                \"contact\": \"\",\n                \"website\": \"\",\n                \"social\": {\n                    \"facebook\": \"https://www.facebook.com/serge.mercieca?fref=ts\",\n                    \"twitter\": \"\",\n                    \"googleplus\": \"\",\n                    \"instagram\": \"\",\n                    \"linkedin\": \"\",\n                    \"viadeo\": \"\",\n                    \"flickr\": \"\",\n                    \"youtube\": \"\",\n                    \"dailymotion\": \"\",\n                    \"vimeo\": \"\",\n                    \"medium\": \"\",\n                    \"rss\": \"\",\n                    \"snapcode_svg\": \"\",\n                    \"messenger\": null,\n                    \"allocine\": null\n                }\n            }\n        },\n        {\n            \"id\": 61,\n            \"person_id\": 57,\n            \"civility\": \"M.\",\n            \"first_name\": \"Ange\",\n            \"last_name\": \"Balzano\",\n            \"slug\": \"ange-balzano\",\n            \"blurb\": \"Conseiller communautaire de Grand Paris Sud, Conseiller municipal de Ris-Orangis chargé des Travaux, du Cadre de Vie et de la Propreté\",\n            \"pages\": [\n                {\n                    \"id\": 235,\n                    \"instance\": {\n                        \"slug\": \"portail-institutionnel-gps\"\n                    }\n                }\n            ],\n            \"profile_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/133/logo_small/Ange_BALZANO_Ris_Orangis_Grand_Paris_Sud.jpg?1458249545\",\n                \"small_dimensions\": \"100x150\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/133/logo_medium/Ange_BALZANO_Ris_Orangis_Grand_Paris_Sud.jpg?1458249545\",\n                \"medium_dimensions\": \"266x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/133/logo_large/Ange_BALZANO_Ris_Orangis_Grand_Paris_Sud.jpg?1458249545\",\n                \"large_dimensions\": \"399x600\",\n                \"alt\": \"image de profil de Ange Balzano\",\n                \"name\": \"image de profil de Ange Balzano\",\n                \"slug\": \"image-de-profil-de-ange-balzano\",\n                \"description\": \"image de profil de Ange Balzano\",\n                \"copyright\": \"\"\n            },\n            \"titles\": {\n                \"city_titles\": [\n                    {\n                        \"id\": 114,\n                        \"title_type\": {\n                            \"id\": 8,\n                            \"name\": \"Conseiller municipal\",\n                            \"subtitle\": \"chargé des Travaux, du Cadre de Vie et de la Propreté\",\n                            \"weight\": 1,\n                            \"type_category\": \"Communes\"\n                        },\n                        \"city\": {\n                            \"id\": 11,\n                            \"organization_id\": 57,\n                            \"name\": \"Ris-Orangis\",\n                            \"slug\": \"ris-orangis\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/073/logo_small/logo-risorangis.png?1473694036\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/073/logo_medium/logo-risorangis.png?1473694036\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/073/logo_large/logo-risorangis.png?1473694036\",\n                                \"alt\": \"image de profil de Ris-Orangis\"\n                            }\n                        }\n                    }\n                ],\n                \"agglomeration_titles\": [\n                    {\n                        \"id\": 115,\n                        \"title_type\": {\n                            \"id\": 9,\n                            \"name\": \"Conseiller communautaire\",\n                            \"subtitle\": \"\",\n                            \"weight\": 24,\n                            \"type_category\": \"Agglomérations\"\n                        },\n                        \"agglomeration\": {\n                            \"id\": 4,\n                            \"organization_id\": 52,\n                            \"name\": \"Grand Paris Sud\",\n                            \"slug\": \"grand-paris-sud\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                                \"alt\": \"image de profil de Grand Paris Sud\"\n                            }\n                        }\n                    }\n                ],\n                \"department_titles\": [],\n                \"region_titles\": []\n            },\n            \"infos\": {\n                \"phone\": \"01 69 02 52 52\",\n                \"email\": \"contact@ville-ris-orangis.fr\",\n                \"contact\": \"\",\n                \"website\": \"\",\n                \"social\": {\n                    \"facebook\": \"\",\n                    \"twitter\": \"\",\n                    \"googleplus\": \"\",\n                    \"instagram\": \"\",\n                    \"linkedin\": \"\",\n                    \"viadeo\": \"\",\n                    \"flickr\": \"\",\n                    \"youtube\": \"\",\n                    \"dailymotion\": \"\",\n                    \"vimeo\": \"\",\n                    \"medium\": \"\",\n                    \"rss\": \"\",\n                    \"snapcode_svg\": \"\",\n                    \"messenger\": null,\n                    \"allocine\": null\n                }\n            }\n        },\n        {\n            \"id\": 62,\n            \"person_id\": 58,\n            \"civility\": \"Mme\",\n            \"first_name\": \"Nhu-Anh\",\n            \"last_name\": \"Desormeaux\",\n            \"slug\": \"nhu-anh-desormeaux\",\n            \"blurb\": \"Conseiller communautaire de Grand Paris Sud, Conseiller municipal de Ris-Orangis\",\n            \"pages\": [\n                {\n                    \"id\": 236,\n                    \"instance\": {\n                        \"slug\": \"portail-institutionnel-gps\"\n                    }\n                }\n            ],\n            \"profile_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/136/logo_small/Nhu-Anh_DESORMEAUX_Ris_Orangis_Grand_Paris_Sud.jpg?1458249624\",\n                \"small_dimensions\": \"100x150\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/136/logo_medium/Nhu-Anh_DESORMEAUX_Ris_Orangis_Grand_Paris_Sud.jpg?1458249624\",\n                \"medium_dimensions\": \"266x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/136/logo_large/Nhu-Anh_DESORMEAUX_Ris_Orangis_Grand_Paris_Sud.jpg?1458249624\",\n                \"large_dimensions\": \"399x600\",\n                \"alt\": \"image de profil de Nhu-Anh Desormeaux\",\n                \"name\": \"image de profil de Nhu-Anh Desormeaux\",\n                \"slug\": \"image-de-profil-de-nhu-anh-desormeaux\",\n                \"description\": \"image de profil de Nhu-Anh Desormeaux\",\n                \"copyright\": \"\"\n            },\n            \"titles\": {\n                \"city_titles\": [\n                    {\n                        \"id\": 116,\n                        \"title_type\": {\n                            \"id\": 8,\n                            \"name\": \"Conseillère municipale\",\n                            \"subtitle\": \"\",\n                            \"weight\": 1,\n                            \"type_category\": \"Communes\"\n                        },\n                        \"city\": {\n                            \"id\": 11,\n                            \"organization_id\": 57,\n                            \"name\": \"Ris-Orangis\",\n                            \"slug\": \"ris-orangis\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/073/logo_small/logo-risorangis.png?1473694036\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/073/logo_medium/logo-risorangis.png?1473694036\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/073/logo_large/logo-risorangis.png?1473694036\",\n                                \"alt\": \"image de profil de Ris-Orangis\"\n                            }\n                        }\n                    }\n                ],\n                \"agglomeration_titles\": [\n                    {\n                        \"id\": 117,\n                        \"title_type\": {\n                            \"id\": 9,\n                            \"name\": \"Conseillère communautaire\",\n                            \"subtitle\": \"\",\n                            \"weight\": 34,\n                            \"type_category\": \"Agglomérations\"\n                        },\n                        \"agglomeration\": {\n                            \"id\": 4,\n                            \"organization_id\": 52,\n                            \"name\": \"Grand Paris Sud\",\n                            \"slug\": \"grand-paris-sud\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                                \"alt\": \"image de profil de Grand Paris Sud\"\n                            }\n                        }\n                    }\n                ],\n                \"department_titles\": [],\n                \"region_titles\": []\n            },\n            \"infos\": {\n                \"phone\": \"01 69 02 52 52\",\n                \"email\": \"contact@ville-ris-orangis.fr\",\n                \"contact\": \"\",\n                \"website\": \"\",\n                \"social\": {\n                    \"facebook\": \"\",\n                    \"twitter\": \"\",\n                    \"googleplus\": \"\",\n                    \"instagram\": \"\",\n                    \"linkedin\": \"\",\n                    \"viadeo\": \"\",\n                    \"flickr\": \"\",\n                    \"youtube\": \"\",\n                    \"dailymotion\": \"\",\n                    \"vimeo\": \"\",\n                    \"medium\": \"\",\n                    \"rss\": \"\",\n                    \"snapcode_svg\": \"\",\n                    \"messenger\": null,\n                    \"allocine\": null\n                }\n            }\n        },\n        {\n            \"id\": 63,\n            \"person_id\": 59,\n            \"civility\": \"M.\",\n            \"first_name\": \"Jean-Michel\",\n            \"last_name\": \"Fritz\",\n            \"slug\": \"jean-michel-fritz\",\n            \"blurb\": \"Maire adjoint de Corbeil-Essonnes chargé de l'Administration générale, du personnel municipal, de la culture, Conseiller communautaire de Grand Paris Sud chargé du développement du tourisme et du mécénat culturel\",\n            \"pages\": [\n                {\n                    \"id\": 237,\n                    \"instance\": {\n                        \"slug\": \"portail-institutionnel-gps\"\n                    }\n                }\n            ],\n            \"profile_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/186/logo_small/Jean-Michel_FRITZ_%28corbeil_essonnes%29.jpg?1458204423\",\n                \"small_dimensions\": \"100x150\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/186/logo_medium/Jean-Michel_FRITZ_%28corbeil_essonnes%29.jpg?1458204423\",\n                \"medium_dimensions\": \"266x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/186/logo_large/Jean-Michel_FRITZ_%28corbeil_essonnes%29.jpg?1458204423\",\n                \"large_dimensions\": \"399x600\",\n                \"alt\": \"image de profil de Jean-Michel Fritz\",\n                \"name\": \"image de profil de Jean-Michel Fritz\",\n                \"slug\": \"image-de-profil-de-jean-michel-fritz\",\n                \"description\": \"image de profil de Jean-Michel Fritz\",\n                \"copyright\": \"\"\n            },\n            \"titles\": {\n                \"city_titles\": [\n                    {\n                        \"id\": 119,\n                        \"title_type\": {\n                            \"id\": 7,\n                            \"name\": \"Maire adjoint\",\n                            \"subtitle\": \"chargé de l'Administration générale, du personnel municipal, de la culture\",\n                            \"weight\": 1,\n                            \"type_category\": \"Communes\"\n                        },\n                        \"city\": {\n                            \"id\": 8,\n                            \"organization_id\": 54,\n                            \"name\": \"Corbeil-Essonnes\",\n                            \"slug\": \"corbeil-essonnes\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/067/logo_small/corbeil-essonnes-grandparissud.png?1520348885\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/067/logo_medium/corbeil-essonnes-grandparissud.png?1520348885\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/067/logo_large/corbeil-essonnes-grandparissud.png?1520348885\",\n                                \"alt\": \"image de profil de Corbeil-Essonnes\"\n                            }\n                        }\n                    }\n                ],\n                \"agglomeration_titles\": [\n                    {\n                        \"id\": 120,\n                        \"title_type\": {\n                            \"id\": 9,\n                            \"name\": \"Conseiller communautaire\",\n                            \"subtitle\": \"chargé du développement du tourisme et du mécénat culturel\",\n                            \"weight\": 12,\n                            \"type_category\": \"Agglomérations\"\n                        },\n                        \"agglomeration\": {\n                            \"id\": 4,\n                            \"organization_id\": 52,\n                            \"name\": \"Grand Paris Sud\",\n                            \"slug\": \"grand-paris-sud\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                                \"alt\": \"image de profil de Grand Paris Sud\"\n                            }\n                        }\n                    }\n                ],\n                \"department_titles\": [],\n                \"region_titles\": []\n            },\n            \"infos\": {\n                \"phone\": \"01 60 89 71 79\",\n                \"email\": \"\",\n                \"contact\": \"\",\n                \"website\": \"\",\n                \"social\": {\n                    \"facebook\": \"\",\n                    \"twitter\": \"\",\n                    \"googleplus\": \"\",\n                    \"instagram\": \"\",\n                    \"linkedin\": \"\",\n                    \"viadeo\": \"\",\n                    \"flickr\": \"\",\n                    \"youtube\": \"\",\n                    \"dailymotion\": \"\",\n                    \"vimeo\": \"\",\n                    \"medium\": \"\",\n                    \"rss\": \"\",\n                    \"snapcode_svg\": \"\",\n                    \"messenger\": null,\n                    \"allocine\": null\n                }\n            }\n        },\n        {\n            \"id\": 64,\n            \"person_id\": 60,\n            \"civility\": \"Mme\",\n            \"first_name\": \"Nathalie\",\n            \"last_name\": \"Bausivoir\",\n            \"slug\": \"nathalie-bausivoir\",\n            \"blurb\": \"Conseiller communautaire de Grand Paris Sud, Maire adjoint de Corbeil-Essonnes en charge des Affaires Scolaires\",\n            \"pages\": [\n                {\n                    \"id\": 238,\n                    \"instance\": {\n                        \"slug\": \"portail-institutionnel-gps\"\n                    }\n                }\n            ],\n            \"profile_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/174/logo_small/Nathalie_BAUSIVOIR_%28corbeil_essonnes%29.jpg?1458204658\",\n                \"small_dimensions\": \"100x150\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/174/logo_medium/Nathalie_BAUSIVOIR_%28corbeil_essonnes%29.jpg?1458204658\",\n                \"medium_dimensions\": \"266x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/174/logo_large/Nathalie_BAUSIVOIR_%28corbeil_essonnes%29.jpg?1458204658\",\n                \"large_dimensions\": \"399x600\",\n                \"alt\": \"image de profil de Nathalie Bausivoir\",\n                \"name\": \"image de profil de Nathalie Bausivoir\",\n                \"slug\": \"image-de-profil-de-nathalie-bausivoir\",\n                \"description\": \"image de profil de Nathalie Bausivoir\",\n                \"copyright\": \"\"\n            },\n            \"titles\": {\n                \"city_titles\": [\n                    {\n                        \"id\": 121,\n                        \"title_type\": {\n                            \"id\": 7,\n                            \"name\": \"Maire adjointe\",\n                            \"subtitle\": \"en charge des Affaires Scolaires\",\n                            \"weight\": 1,\n                            \"type_category\": \"Communes\"\n                        },\n                        \"city\": {\n                            \"id\": 8,\n                            \"organization_id\": 54,\n                            \"name\": \"Corbeil-Essonnes\",\n                            \"slug\": \"corbeil-essonnes\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/067/logo_small/corbeil-essonnes-grandparissud.png?1520348885\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/067/logo_medium/corbeil-essonnes-grandparissud.png?1520348885\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/067/logo_large/corbeil-essonnes-grandparissud.png?1520348885\",\n                                \"alt\": \"image de profil de Corbeil-Essonnes\"\n                            }\n                        }\n                    }\n                ],\n                \"agglomeration_titles\": [\n                    {\n                        \"id\": 122,\n                        \"title_type\": {\n                            \"id\": 9,\n                            \"name\": \"Conseillère communautaire\",\n                            \"subtitle\": \"\",\n                            \"weight\": 26,\n                            \"type_category\": \"Agglomérations\"\n                        },\n                        \"agglomeration\": {\n                            \"id\": 4,\n                            \"organization_id\": 52,\n                            \"name\": \"Grand Paris Sud\",\n                            \"slug\": \"grand-paris-sud\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                                \"alt\": \"image de profil de Grand Paris Sud\"\n                            }\n                        }\n                    }\n                ],\n                \"department_titles\": [],\n                \"region_titles\": []\n            },\n            \"infos\": {\n                \"phone\": \"01 60 89 71 79\",\n                \"email\": \"\",\n                \"contact\": \"\",\n                \"website\": \"\",\n                \"social\": {\n                    \"facebook\": \"\",\n                    \"twitter\": \"\",\n                    \"googleplus\": \"\",\n                    \"instagram\": \"\",\n                    \"linkedin\": \"\",\n                    \"viadeo\": \"\",\n                    \"flickr\": \"\",\n                    \"youtube\": \"\",\n                    \"dailymotion\": \"\",\n                    \"vimeo\": \"\",\n                    \"medium\": \"\",\n                    \"rss\": \"\",\n                    \"snapcode_svg\": \"\",\n                    \"messenger\": null,\n                    \"allocine\": null\n                }\n            }\n        },\n        {\n            \"id\": 65,\n            \"person_id\": 61,\n            \"civility\": \"M.\",\n            \"first_name\": \"Bruno \",\n            \"last_name\": \"Piriou\",\n            \"slug\": \"bruno-piriou\",\n            \"blurb\": \"Conseiller communautaire de Grand Paris Sud, Conseiller municipal de Corbeil-Essonnes\",\n            \"pages\": [\n                {\n                    \"id\": 239,\n                    \"instance\": {\n                        \"slug\": \"portail-institutionnel-gps\"\n                    }\n                }\n            ],\n            \"profile_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/196/logo_small/Bruno_PIRIOU_%28corbeil_essonnes%29.jpg?1458201976\",\n                \"small_dimensions\": \"100x150\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/196/logo_medium/Bruno_PIRIOU_%28corbeil_essonnes%29.jpg?1458201976\",\n                \"medium_dimensions\": \"266x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/196/logo_large/Bruno_PIRIOU_%28corbeil_essonnes%29.jpg?1458201976\",\n                \"large_dimensions\": \"399x600\",\n                \"alt\": \"image de profil de Bruno  Piriou\",\n                \"name\": \"image de profil de Bruno  Piriou\",\n                \"slug\": \"image-de-profil-de-bruno-piriou\",\n                \"description\": \"image de profil de Bruno  Piriou\",\n                \"copyright\": \"\"\n            },\n            \"titles\": {\n                \"city_titles\": [\n                    {\n                        \"id\": 123,\n                        \"title_type\": {\n                            \"id\": 8,\n                            \"name\": \"Conseiller municipal\",\n                            \"subtitle\": \"\",\n                            \"weight\": 1,\n                            \"type_category\": \"Communes\"\n                        },\n                        \"city\": {\n                            \"id\": 8,\n                            \"organization_id\": 54,\n                            \"name\": \"Corbeil-Essonnes\",\n                            \"slug\": \"corbeil-essonnes\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/067/logo_small/corbeil-essonnes-grandparissud.png?1520348885\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/067/logo_medium/corbeil-essonnes-grandparissud.png?1520348885\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/067/logo_large/corbeil-essonnes-grandparissud.png?1520348885\",\n                                \"alt\": \"image de profil de Corbeil-Essonnes\"\n                            }\n                        }\n                    }\n                ],\n                \"agglomeration_titles\": [\n                    {\n                        \"id\": 124,\n                        \"title_type\": {\n                            \"id\": 9,\n                            \"name\": \"Conseiller communautaire\",\n                            \"subtitle\": \"\",\n                            \"weight\": 51,\n                            \"type_category\": \"Agglomérations\"\n                        },\n                        \"agglomeration\": {\n                            \"id\": 4,\n                            \"organization_id\": 52,\n                            \"name\": \"Grand Paris Sud\",\n                            \"slug\": \"grand-paris-sud\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                                \"alt\": \"image de profil de Grand Paris Sud\"\n                            }\n                        }\n                    }\n                ],\n                \"department_titles\": [],\n                \"region_titles\": []\n            },\n            \"infos\": {\n                \"phone\": \"01 60 89 71 79\",\n                \"email\": \"\",\n                \"contact\": \"\",\n                \"website\": \"http://brunopiriou.fr/\",\n                \"social\": {\n                    \"facebook\": \"https://www.facebook.com/bruno.piriou\",\n                    \"twitter\": \"https://twitter.com/BrunoPiriou\",\n                    \"googleplus\": \"\",\n                    \"instagram\": \"\",\n                    \"linkedin\": \"\",\n                    \"viadeo\": \"\",\n                    \"flickr\": \"\",\n                    \"youtube\": \"\",\n                    \"dailymotion\": \"\",\n                    \"vimeo\": \"\",\n                    \"medium\": \"\",\n                    \"rss\": \"\",\n                    \"snapcode_svg\": \"\",\n                    \"messenger\": null,\n                    \"allocine\": null\n                }\n            }\n        },\n        {\n            \"id\": 66,\n            \"person_id\": 62,\n            \"civility\": \"M.\",\n            \"first_name\": \"Jérôme \",\n            \"last_name\": \"Brezillon\",\n            \"slug\": \"jerome-brezillon\",\n            \"blurb\": \"Conseiller communautaire de Grand Paris Sud, Conseiller municipal de Corbeil-Essonnes\",\n            \"pages\": [\n                {\n                    \"id\": 240,\n                    \"instance\": {\n                        \"slug\": \"portail-institutionnel-gps\"\n                    }\n                }\n            ],\n            \"profile_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/183/logo_small/Je%C2%A6%C3%BCro%C2%A6%C3%A9me_BREZILLON_%28corbeil_essonnes%29.jpg?1458204210\",\n                \"small_dimensions\": \"100x150\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/183/logo_medium/Je%C2%A6%C3%BCro%C2%A6%C3%A9me_BREZILLON_%28corbeil_essonnes%29.jpg?1458204210\",\n                \"medium_dimensions\": \"266x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/183/logo_large/Je%C2%A6%C3%BCro%C2%A6%C3%A9me_BREZILLON_%28corbeil_essonnes%29.jpg?1458204210\",\n                \"large_dimensions\": \"399x600\",\n                \"alt\": \"image de profil de Jérôme  Brezillon\",\n                \"name\": \"image de profil de Jérôme  Brezillon\",\n                \"slug\": \"image-de-profil-de-jerome-brezillon\",\n                \"description\": \"image de profil de Jérôme  Brezillon\",\n                \"copyright\": \"\"\n            },\n            \"titles\": {\n                \"city_titles\": [\n                    {\n                        \"id\": 125,\n                        \"title_type\": {\n                            \"id\": 8,\n                            \"name\": \"Conseiller municipal\",\n                            \"subtitle\": \"\",\n                            \"weight\": 1,\n                            \"type_category\": \"Communes\"\n                        },\n                        \"city\": {\n                            \"id\": 8,\n                            \"organization_id\": 54,\n                            \"name\": \"Corbeil-Essonnes\",\n                            \"slug\": \"corbeil-essonnes\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/067/logo_small/corbeil-essonnes-grandparissud.png?1520348885\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/067/logo_medium/corbeil-essonnes-grandparissud.png?1520348885\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/067/logo_large/corbeil-essonnes-grandparissud.png?1520348885\",\n                                \"alt\": \"image de profil de Corbeil-Essonnes\"\n                            }\n                        }\n                    }\n                ],\n                \"agglomeration_titles\": [\n                    {\n                        \"id\": 126,\n                        \"title_type\": {\n                            \"id\": 9,\n                            \"name\": \"Conseiller communautaire\",\n                            \"subtitle\": \"\",\n                            \"weight\": 31,\n                            \"type_category\": \"Agglomérations\"\n                        },\n                        \"agglomeration\": {\n                            \"id\": 4,\n                            \"organization_id\": 52,\n                            \"name\": \"Grand Paris Sud\",\n                            \"slug\": \"grand-paris-sud\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                                \"alt\": \"image de profil de Grand Paris Sud\"\n                            }\n                        }\n                    }\n                ],\n                \"department_titles\": [],\n                \"region_titles\": []\n            },\n            \"infos\": {\n                \"phone\": \"01 60 89 71 79\",\n                \"email\": \"\",\n                \"contact\": \"\",\n                \"website\": \"\",\n                \"social\": {\n                    \"facebook\": \"https://www.facebook.com/profile.php?id=100009762525145&fref=ts\",\n                    \"twitter\": \"https://twitter.com/brezillonj\",\n                    \"googleplus\": \"\",\n                    \"instagram\": \"\",\n                    \"linkedin\": \"\",\n                    \"viadeo\": \"\",\n                    \"flickr\": \"\",\n                    \"youtube\": \"\",\n                    \"dailymotion\": \"\",\n                    \"vimeo\": \"\",\n                    \"medium\": \"\",\n                    \"rss\": \"\",\n                    \"snapcode_svg\": \"\",\n                    \"messenger\": null,\n                    \"allocine\": null\n                }\n            }\n        },\n        {\n            \"id\": 67,\n            \"person_id\": 63,\n            \"civility\": \"Mme\",\n            \"first_name\": \"Pascaline\",\n            \"last_name\": \"Vandenheede\",\n            \"slug\": \"pascaline-vandenheede\",\n            \"blurb\": \"Conseiller municipal de Corbeil-Essonnes chargée des Commissions marchés publics et délégations de service public, du handicap, de l'audition des mariages, Conseiller communautaire de Grand Paris Sud\",\n            \"pages\": [\n                {\n                    \"id\": 241,\n                    \"instance\": {\n                        \"slug\": \"portail-institutionnel-gps\"\n                    }\n                }\n            ],\n            \"profile_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/189/logo_small/Pascaline_VANDENHEEDE_%28corbeil_essonnes%29.jpg?1458204983\",\n                \"small_dimensions\": \"100x150\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/189/logo_medium/Pascaline_VANDENHEEDE_%28corbeil_essonnes%29.jpg?1458204983\",\n                \"medium_dimensions\": \"266x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/189/logo_large/Pascaline_VANDENHEEDE_%28corbeil_essonnes%29.jpg?1458204983\",\n                \"large_dimensions\": \"399x600\",\n                \"alt\": \"image de profil de Pascaline Vandenheede\",\n                \"name\": \"image de profil de Pascaline Vandenheede\",\n                \"slug\": \"image-de-profil-de-pascaline-vandenheede\",\n                \"description\": \"image de profil de Pascaline Vandenheede\",\n                \"copyright\": \"\"\n            },\n            \"titles\": {\n                \"city_titles\": [\n                    {\n                        \"id\": 127,\n                        \"title_type\": {\n                            \"id\": 8,\n                            \"name\": \"Conseillère municipale\",\n                            \"subtitle\": \"chargée des Commissions marchés publics et délégations de service public, du handicap, de l'audition des mariages\",\n                            \"weight\": 1,\n                            \"type_category\": \"Communes\"\n                        },\n                        \"city\": {\n                            \"id\": 8,\n                            \"organization_id\": 54,\n                            \"name\": \"Corbeil-Essonnes\",\n                            \"slug\": \"corbeil-essonnes\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/067/logo_small/corbeil-essonnes-grandparissud.png?1520348885\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/067/logo_medium/corbeil-essonnes-grandparissud.png?1520348885\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/067/logo_large/corbeil-essonnes-grandparissud.png?1520348885\",\n                                \"alt\": \"image de profil de Corbeil-Essonnes\"\n                            }\n                        }\n                    }\n                ],\n                \"agglomeration_titles\": [\n                    {\n                        \"id\": 128,\n                        \"title_type\": {\n                            \"id\": 9,\n                            \"name\": \"Conseillère communautaire\",\n                            \"subtitle\": \"\",\n                            \"weight\": 60,\n                            \"type_category\": \"Agglomérations\"\n                        },\n                        \"agglomeration\": {\n                            \"id\": 4,\n                            \"organization_id\": 52,\n                            \"name\": \"Grand Paris Sud\",\n                            \"slug\": \"grand-paris-sud\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                                \"alt\": \"image de profil de Grand Paris Sud\"\n                            }\n                        }\n                    }\n                ],\n                \"department_titles\": [],\n                \"region_titles\": []\n            },\n            \"infos\": {\n                \"phone\": \"01 60 89 71 79\",\n                \"email\": \"\",\n                \"contact\": \"\",\n                \"website\": \"\",\n                \"social\": {\n                    \"facebook\": \"https://www.facebook.com/pascaline.vandenheede.5\",\n                    \"twitter\": \"\",\n                    \"googleplus\": \"https://plus.google.com/106617922645675022903/posts\",\n                    \"instagram\": \"\",\n                    \"linkedin\": \"\",\n                    \"viadeo\": \"\",\n                    \"flickr\": \"\",\n                    \"youtube\": \"\",\n                    \"dailymotion\": \"\",\n                    \"vimeo\": \"\",\n                    \"medium\": \"\",\n                    \"rss\": \"\",\n                    \"snapcode_svg\": \"\",\n                    \"messenger\": null,\n                    \"allocine\": null\n                }\n            }\n        },\n        {\n            \"id\": 68,\n            \"person_id\": 64,\n            \"civility\": \"M.\",\n            \"first_name\": \"Volkan\",\n            \"last_name\": \"Aykut\",\n            \"slug\": \"volkan-aykut\",\n            \"blurb\": \"Maire adjoint de Corbeil-Essonnes chargé des Travaux des bâtiments et des Voiries, Conseiller communautaire de Grand Paris Sud\",\n            \"pages\": [\n                {\n                    \"id\": 242,\n                    \"instance\": {\n                        \"slug\": \"portail-institutionnel-gps\"\n                    }\n                }\n            ],\n            \"profile_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/171/logo_small/Volkan_AYKUT_%28corbeil_essonnes%29.jpg?1458205824\",\n                \"small_dimensions\": \"100x150\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/171/logo_medium/Volkan_AYKUT_%28corbeil_essonnes%29.jpg?1458205824\",\n                \"medium_dimensions\": \"266x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/171/logo_large/Volkan_AYKUT_%28corbeil_essonnes%29.jpg?1458205824\",\n                \"large_dimensions\": \"399x600\",\n                \"alt\": \"image de profil de Volkan Aykut\",\n                \"name\": \"image de profil de Volkan Aykut\",\n                \"slug\": \"image-de-profil-de-volkan-aykut\",\n                \"description\": \"image de profil de Volkan Aykut\",\n                \"copyright\": \"\"\n            },\n            \"titles\": {\n                \"city_titles\": [\n                    {\n                        \"id\": 129,\n                        \"title_type\": {\n                            \"id\": 7,\n                            \"name\": \"Maire adjoint\",\n                            \"subtitle\": \"chargé des Travaux des bâtiments et des Voiries\",\n                            \"weight\": 1,\n                            \"type_category\": \"Communes\"\n                        },\n                        \"city\": {\n                            \"id\": 8,\n                            \"organization_id\": 54,\n                            \"name\": \"Corbeil-Essonnes\",\n                            \"slug\": \"corbeil-essonnes\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/067/logo_small/corbeil-essonnes-grandparissud.png?1520348885\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/067/logo_medium/corbeil-essonnes-grandparissud.png?1520348885\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/067/logo_large/corbeil-essonnes-grandparissud.png?1520348885\",\n                                \"alt\": \"image de profil de Corbeil-Essonnes\"\n                            }\n                        }\n                    }\n                ],\n                \"agglomeration_titles\": [\n                    {\n                        \"id\": 130,\n                        \"title_type\": {\n                            \"id\": 9,\n                            \"name\": \"Conseiller communautaire\",\n                            \"subtitle\": \"\",\n                            \"weight\": 23,\n                            \"type_category\": \"Agglomérations\"\n                        },\n                        \"agglomeration\": {\n                            \"id\": 4,\n                            \"organization_id\": 52,\n                            \"name\": \"Grand Paris Sud\",\n                            \"slug\": \"grand-paris-sud\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                                \"alt\": \"image de profil de Grand Paris Sud\"\n                            }\n                        }\n                    }\n                ],\n                \"department_titles\": [],\n                \"region_titles\": []\n            },\n            \"infos\": {\n                \"phone\": \"01 60 89 71 79\",\n                \"email\": \"\",\n                \"contact\": \"\",\n                \"website\": \"\",\n                \"social\": {\n                    \"facebook\": \"\",\n                    \"twitter\": \"\",\n                    \"googleplus\": \"\",\n                    \"instagram\": \"\",\n                    \"linkedin\": \"\",\n                    \"viadeo\": \"\",\n                    \"flickr\": \"\",\n                    \"youtube\": \"\",\n                    \"dailymotion\": \"\",\n                    \"vimeo\": \"\",\n                    \"medium\": \"\",\n                    \"rss\": \"\",\n                    \"snapcode_svg\": \"\",\n                    \"messenger\": null,\n                    \"allocine\": null\n                }\n            }\n        },\n        {\n            \"id\": 69,\n            \"person_id\": 65,\n            \"civility\": \"M.\",\n            \"first_name\": \"Vincent\",\n            \"last_name\": \"Lorriere\",\n            \"slug\": \"vincent-lorriere\",\n            \"blurb\": \"Conseiller communautaire de Grand Paris Sud, Conseiller municipal de Saint-Pierre-du-Perray\",\n            \"pages\": [\n                {\n                    \"id\": 243,\n                    \"instance\": {\n                        \"slug\": \"portail-institutionnel-gps\"\n                    }\n                }\n            ],\n            \"profile_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/582/logo_small/Vincent_LORRIERE_Saint_Pierre_du_Perray_Grand_Paris_Sud.jpg?1458249804\",\n                \"small_dimensions\": \"100x150\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/582/logo_medium/Vincent_LORRIERE_Saint_Pierre_du_Perray_Grand_Paris_Sud.jpg?1458249804\",\n                \"medium_dimensions\": \"266x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/582/logo_large/Vincent_LORRIERE_Saint_Pierre_du_Perray_Grand_Paris_Sud.jpg?1458249804\",\n                \"large_dimensions\": \"399x600\",\n                \"alt\": \"image de profil de Vincent Lorriere\",\n                \"name\": \"image de profil de Vincent Lorriere\",\n                \"slug\": \"image-de-profil-de-vincent-lorriere\",\n                \"description\": \"image de profil de Vincent Lorriere\",\n                \"copyright\": \"\"\n            },\n            \"titles\": {\n                \"city_titles\": [\n                    {\n                        \"id\": 131,\n                        \"title_type\": {\n                            \"id\": 8,\n                            \"name\": \"Conseiller municipal\",\n                            \"subtitle\": \"\",\n                            \"weight\": 1,\n                            \"type_category\": \"Communes\"\n                        },\n                        \"city\": {\n                            \"id\": 16,\n                            \"organization_id\": 62,\n                            \"name\": \"Saint-Pierre-du-Perray\",\n                            \"slug\": \"saint-pierre-du-perray\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/088/logo_small/Logo-Saint-pierre-du-perray.png?1453972736\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/088/logo_medium/Logo-Saint-pierre-du-perray.png?1453972736\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/088/logo_large/Logo-Saint-pierre-du-perray.png?1453972736\",\n                                \"alt\": \"image de profil de Saint-Pierre-du-Perray\"\n                            }\n                        }\n                    }\n                ],\n                \"agglomeration_titles\": [\n                    {\n                        \"id\": 132,\n                        \"title_type\": {\n                            \"id\": 9,\n                            \"name\": \"Conseiller communautaire\",\n                            \"subtitle\": \"\",\n                            \"weight\": 45,\n                            \"type_category\": \"Agglomérations\"\n                        },\n                        \"agglomeration\": {\n                            \"id\": 4,\n                            \"organization_id\": 52,\n                            \"name\": \"Grand Paris Sud\",\n                            \"slug\": \"grand-paris-sud\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                                \"alt\": \"image de profil de Grand Paris Sud\"\n                            }\n                        }\n                    }\n                ],\n                \"department_titles\": [],\n                \"region_titles\": []\n            },\n            \"infos\": {\n                \"phone\": \"01 69 89 75 00\",\n                \"email\": \"\",\n                \"contact\": \"\",\n                \"website\": \"\",\n                \"social\": {\n                    \"facebook\": \"\",\n                    \"twitter\": \"\",\n                    \"googleplus\": \"\",\n                    \"instagram\": \"\",\n                    \"linkedin\": \"\",\n                    \"viadeo\": \"\",\n                    \"flickr\": \"\",\n                    \"youtube\": \"\",\n                    \"dailymotion\": \"\",\n                    \"vimeo\": \"\",\n                    \"medium\": \"\",\n                    \"rss\": \"\",\n                    \"snapcode_svg\": \"\",\n                    \"messenger\": null,\n                    \"allocine\": null\n                }\n            }\n        },\n        {\n            \"id\": 70,\n            \"person_id\": 66,\n            \"civility\": \"Mme\",\n            \"first_name\": \"Claire\",\n            \"last_name\": \"Renklicay\",\n            \"slug\": \"claire-renklicay\",\n            \"blurb\": \"Conseiller communautaire de Grand Paris Sud, Conseiller municipal de Grigny\",\n            \"pages\": [\n                {\n                    \"id\": 244,\n                    \"instance\": {\n                        \"slug\": \"portail-institutionnel-gps\"\n                    }\n                }\n            ],\n            \"profile_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/589/logo_small/Claire_RENKLICAY_%28grigny%29.jpg?1458202027\",\n                \"small_dimensions\": \"100x150\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/589/logo_medium/Claire_RENKLICAY_%28grigny%29.jpg?1458202027\",\n                \"medium_dimensions\": \"266x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/589/logo_large/Claire_RENKLICAY_%28grigny%29.jpg?1458202027\",\n                \"large_dimensions\": \"399x600\",\n                \"alt\": \"image de profil de Claire Renklicay\",\n                \"name\": \"image de profil de Claire Renklicay\",\n                \"slug\": \"image-de-profil-de-claire-renklicay\",\n                \"description\": \"image de profil de Claire Renklicay\",\n                \"copyright\": \"\"\n            },\n            \"titles\": {\n                \"city_titles\": [\n                    {\n                        \"id\": 133,\n                        \"title_type\": {\n                            \"id\": 8,\n                            \"name\": \"Conseillère municipale\",\n                            \"subtitle\": \"\",\n                            \"weight\": 1,\n                            \"type_category\": \"Communes\"\n                        },\n                        \"city\": {\n                            \"id\": 10,\n                            \"organization_id\": 56,\n                            \"name\": \"Grigny\",\n                            \"slug\": \"grigny\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/965/logo_small/logo_ville_de_Grigny.jpg?1455180924\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/965/logo_medium/logo_ville_de_Grigny.jpg?1455180924\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/965/logo_large/logo_ville_de_Grigny.jpg?1455180924\",\n                                \"alt\": \"image de profil de Grigny\"\n                            }\n                        }\n                    }\n                ],\n                \"agglomeration_titles\": [\n                    {\n                        \"id\": 134,\n                        \"title_type\": {\n                            \"id\": 9,\n                            \"name\": \"Conseillère communautaire\",\n                            \"subtitle\": \"\",\n                            \"weight\": 53,\n                            \"type_category\": \"Agglomérations\"\n                        },\n                        \"agglomeration\": {\n                            \"id\": 4,\n                            \"organization_id\": 52,\n                            \"name\": \"Grand Paris Sud\",\n                            \"slug\": \"grand-paris-sud\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                                \"alt\": \"image de profil de Grand Paris Sud\"\n                            }\n                        }\n                    }\n                ],\n                \"department_titles\": [],\n                \"region_titles\": []\n            },\n            \"infos\": {\n                \"phone\": \"01 69 02 53 53\",\n                \"email\": \"info@grigny91.fr\",\n                \"contact\": \"\",\n                \"website\": \"\",\n                \"social\": {\n                    \"facebook\": \"\",\n                    \"twitter\": \"\",\n                    \"googleplus\": \"\",\n                    \"instagram\": \"\",\n                    \"linkedin\": \"\",\n                    \"viadeo\": \"\",\n                    \"flickr\": \"\",\n                    \"youtube\": \"\",\n                    \"dailymotion\": \"\",\n                    \"vimeo\": \"\",\n                    \"medium\": \"\",\n                    \"rss\": \"\",\n                    \"snapcode_svg\": \"\",\n                    \"messenger\": null,\n                    \"allocine\": null\n                }\n            }\n        },\n        {\n            \"id\": 71,\n            \"person_id\": 67,\n            \"civility\": \"Mme\",\n            \"first_name\": \"Claire\",\n            \"last_name\": \"Tawab Kebay\",\n            \"slug\": \"claire-tawab-kebay\",\n            \"blurb\": \"Conseiller communautaire de Grand Paris Sud, Maire adjoint de Grigny chargée de la Petite Enfance et des Conseils d'école\",\n            \"pages\": [\n                {\n                    \"id\": 245,\n                    \"instance\": {\n                        \"slug\": \"portail-institutionnel-gps\"\n                    }\n                }\n            ],\n            \"profile_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/477/logo_small/Claire_TAWAB_%28grigny%29.jpg?1458202075\",\n                \"small_dimensions\": \"100x150\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/477/logo_medium/Claire_TAWAB_%28grigny%29.jpg?1458202075\",\n                \"medium_dimensions\": \"266x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/477/logo_large/Claire_TAWAB_%28grigny%29.jpg?1458202075\",\n                \"large_dimensions\": \"399x600\",\n                \"alt\": \"image de profil de Claire Tawab Kebay\",\n                \"name\": \"image de profil de Claire Tawab Kebay\",\n                \"slug\": \"image-de-profil-de-claire-tawab-kebay\",\n                \"description\": \"image de profil de Claire Tawab Kebay\",\n                \"copyright\": \"\"\n            },\n            \"titles\": {\n                \"city_titles\": [\n                    {\n                        \"id\": 135,\n                        \"title_type\": {\n                            \"id\": 7,\n                            \"name\": \"Maire adjointe\",\n                            \"subtitle\": \"chargée de la Petite Enfance et des Conseils d'école\",\n                            \"weight\": 1,\n                            \"type_category\": \"Communes\"\n                        },\n                        \"city\": {\n                            \"id\": 10,\n                            \"organization_id\": 56,\n                            \"name\": \"Grigny\",\n                            \"slug\": \"grigny\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/965/logo_small/logo_ville_de_Grigny.jpg?1455180924\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/965/logo_medium/logo_ville_de_Grigny.jpg?1455180924\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/965/logo_large/logo_ville_de_Grigny.jpg?1455180924\",\n                                \"alt\": \"image de profil de Grigny\"\n                            }\n                        }\n                    }\n                ],\n                \"agglomeration_titles\": [\n                    {\n                        \"id\": 136,\n                        \"title_type\": {\n                            \"id\": 9,\n                            \"name\": \"Conseillère communautaire\",\n                            \"subtitle\": \"\",\n                            \"weight\": 56,\n                            \"type_category\": \"Agglomérations\"\n                        },\n                        \"agglomeration\": {\n                            \"id\": 4,\n                            \"organization_id\": 52,\n                            \"name\": \"Grand Paris Sud\",\n                            \"slug\": \"grand-paris-sud\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                                \"alt\": \"image de profil de Grand Paris Sud\"\n                            }\n                        }\n                    }\n                ],\n                \"department_titles\": [],\n                \"region_titles\": []\n            },\n            \"infos\": {\n                \"phone\": \"01 69 02 53 53\",\n                \"email\": \"info@grigny91.fr\",\n                \"contact\": \"\",\n                \"website\": \"\",\n                \"social\": {\n                    \"facebook\": \"https://www.facebook.com/claire.tawab\",\n                    \"twitter\": \"\",\n                    \"googleplus\": \"https://plus.google.com/114519851160702150666/posts\",\n                    \"instagram\": \"\",\n                    \"linkedin\": \"\",\n                    \"viadeo\": \"\",\n                    \"flickr\": \"\",\n                    \"youtube\": \"\",\n                    \"dailymotion\": \"\",\n                    \"vimeo\": \"\",\n                    \"medium\": \"\",\n                    \"rss\": \"\",\n                    \"snapcode_svg\": \"\",\n                    \"messenger\": null,\n                    \"allocine\": null\n                }\n            }\n        },\n        {\n            \"id\": 72,\n            \"person_id\": 68,\n            \"civility\": \"M.\",\n            \"first_name\": \"Pascal\",\n            \"last_name\": \"Troadec\",\n            \"slug\": \"pascal-troadec\",\n            \"blurb\": \"Conseiller communautaire de Grand Paris Sud, Maire adjoint de Grigny chargé de la Culture et de la Formation Professionnelle\",\n            \"pages\": [\n                {\n                    \"id\": 246,\n                    \"instance\": {\n                        \"slug\": \"portail-institutionnel-gps\"\n                    }\n                }\n            ],\n            \"profile_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/478/logo_small/Pascal_TROADEC_%28grigny%29.jpg?1458204886\",\n                \"small_dimensions\": \"100x150\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/478/logo_medium/Pascal_TROADEC_%28grigny%29.jpg?1458204886\",\n                \"medium_dimensions\": \"266x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/478/logo_large/Pascal_TROADEC_%28grigny%29.jpg?1458204886\",\n                \"large_dimensions\": \"399x600\",\n                \"alt\": \"image de profil de Pascal Troadec\",\n                \"name\": \"image de profil de Pascal Troadec\",\n                \"slug\": \"image-de-profil-de-pascal-troadec\",\n                \"description\": \"image de profil de Pascal Troadec\",\n                \"copyright\": \"\"\n            },\n            \"titles\": {\n                \"city_titles\": [\n                    {\n                        \"id\": 137,\n                        \"title_type\": {\n                            \"id\": 7,\n                            \"name\": \"Maire adjoint\",\n                            \"subtitle\": \"chargé de la Culture et de la Formation Professionnelle\",\n                            \"weight\": 1,\n                            \"type_category\": \"Communes\"\n                        },\n                        \"city\": {\n                            \"id\": 10,\n                            \"organization_id\": 56,\n                            \"name\": \"Grigny\",\n                            \"slug\": \"grigny\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/965/logo_small/logo_ville_de_Grigny.jpg?1455180924\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/965/logo_medium/logo_ville_de_Grigny.jpg?1455180924\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/965/logo_large/logo_ville_de_Grigny.jpg?1455180924\",\n                                \"alt\": \"image de profil de Grigny\"\n                            }\n                        }\n                    }\n                ],\n                \"agglomeration_titles\": [\n                    {\n                        \"id\": 138,\n                        \"title_type\": {\n                            \"id\": 9,\n                            \"name\": \"Conseiller communautaire\",\n                            \"subtitle\": \"\",\n                            \"weight\": 57,\n                            \"type_category\": \"Agglomérations\"\n                        },\n                        \"agglomeration\": {\n                            \"id\": 4,\n                            \"organization_id\": 52,\n                            \"name\": \"Grand Paris Sud\",\n                            \"slug\": \"grand-paris-sud\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                                \"alt\": \"image de profil de Grand Paris Sud\"\n                            }\n                        }\n                    }\n                ],\n                \"department_titles\": [],\n                \"region_titles\": []\n            },\n            \"infos\": {\n                \"phone\": \"01 69 02 53 53\",\n                \"email\": \"info@grigny91.fr\",\n                \"contact\": \"\",\n                \"website\": \"\",\n                \"social\": {\n                    \"facebook\": \"https://www.facebook.com/pascal.troadec?ref=br_rs\",\n                    \"twitter\": \"\",\n                    \"googleplus\": \"\",\n                    \"instagram\": \"\",\n                    \"linkedin\": \"\",\n                    \"viadeo\": \"\",\n                    \"flickr\": \"\",\n                    \"youtube\": \"\",\n                    \"dailymotion\": \"\",\n                    \"vimeo\": \"\",\n                    \"medium\": \"\",\n                    \"rss\": \"\",\n                    \"snapcode_svg\": \"\",\n                    \"messenger\": null,\n                    \"allocine\": null\n                }\n            }\n        },\n        {\n            \"id\": 73,\n            \"person_id\": 69,\n            \"civility\": \"Mme\",\n            \"first_name\": \"Djouma\",\n            \"last_name\": \"Diarra\",\n            \"slug\": \"djouma-diarra\",\n            \"blurb\": \"Conseiller communautaire de Grand Paris Sud, Conseiller municipal de Grigny\",\n            \"pages\": [\n                {\n                    \"id\": 247,\n                    \"instance\": {\n                        \"slug\": \"portail-institutionnel-gps\"\n                    }\n                }\n            ],\n            \"profile_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/818/logo_small/Djouma_DIARRA_%28grigny%29.jpg?1458202686\",\n                \"small_dimensions\": \"100x150\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/818/logo_medium/Djouma_DIARRA_%28grigny%29.jpg?1458202686\",\n                \"medium_dimensions\": \"266x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/818/logo_large/Djouma_DIARRA_%28grigny%29.jpg?1458202686\",\n                \"large_dimensions\": \"399x600\",\n                \"alt\": \"image de profil de Djouma Diarra\",\n                \"name\": \"image de profil de Djouma Diarra\",\n                \"slug\": \"image-de-profil-de-djouma-diarra\",\n                \"description\": \"image de profil de Djouma Diarra\",\n                \"copyright\": \"\"\n            },\n            \"titles\": {\n                \"city_titles\": [\n                    {\n                        \"id\": 139,\n                        \"title_type\": {\n                            \"id\": 8,\n                            \"name\": \"Conseillère municipale\",\n                            \"subtitle\": \"\",\n                            \"weight\": 1,\n                            \"type_category\": \"Communes\"\n                        },\n                        \"city\": {\n                            \"id\": 10,\n                            \"organization_id\": 56,\n                            \"name\": \"Grigny\",\n                            \"slug\": \"grigny\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/965/logo_small/logo_ville_de_Grigny.jpg?1455180924\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/965/logo_medium/logo_ville_de_Grigny.jpg?1455180924\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/965/logo_large/logo_ville_de_Grigny.jpg?1455180924\",\n                                \"alt\": \"image de profil de Grigny\"\n                            }\n                        }\n                    }\n                ],\n                \"agglomeration_titles\": [\n                    {\n                        \"id\": 140,\n                        \"title_type\": {\n                            \"id\": 9,\n                            \"name\": \"Conseillère communautaire\",\n                            \"subtitle\": \"\",\n                            \"weight\": 35,\n                            \"type_category\": \"Agglomérations\"\n                        },\n                        \"agglomeration\": {\n                            \"id\": 4,\n                            \"organization_id\": 52,\n                            \"name\": \"Grand Paris Sud\",\n                            \"slug\": \"grand-paris-sud\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                                \"alt\": \"image de profil de Grand Paris Sud\"\n                            }\n                        }\n                    }\n                ],\n                \"department_titles\": [],\n                \"region_titles\": []\n            },\n            \"infos\": {\n                \"phone\": \"01 69 02 53 53\",\n                \"email\": \"info@grigny91.fr\",\n                \"contact\": \"\",\n                \"website\": \"\",\n                \"social\": {\n                    \"facebook\": \"https://www.facebook.com/djouma.diarra.16?fref=ts\",\n                    \"twitter\": \"\",\n                    \"googleplus\": \"\",\n                    \"instagram\": \"\",\n                    \"linkedin\": \"\",\n                    \"viadeo\": \"\",\n                    \"flickr\": \"\",\n                    \"youtube\": \"\",\n                    \"dailymotion\": \"\",\n                    \"vimeo\": \"\",\n                    \"medium\": \"\",\n                    \"rss\": \"\",\n                    \"snapcode_svg\": \"\",\n                    \"messenger\": null,\n                    \"allocine\": null\n                }\n            }\n        },\n        {\n            \"id\": 74,\n            \"person_id\": 70,\n            \"civility\": \"M.\",\n            \"first_name\": \"Jacky\",\n            \"last_name\": \"Bortoli\",\n            \"slug\": \"jacky-bortoli\",\n            \"blurb\": \"Conseiller communautaire de Grand Paris Sud chargé du cycle de l’eau, Conseiller municipal de Grigny en charge de la ZAC Centre-Ville, des Travaux et des Commerces\",\n            \"pages\": [\n                {\n                    \"id\": 248,\n                    \"instance\": {\n                        \"slug\": \"portail-institutionnel-gps\"\n                    }\n                }\n            ],\n            \"profile_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/476/logo_small/Jacky_BORTOLI_%28grigny%29.jpg?1458203857\",\n                \"small_dimensions\": \"100x150\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/476/logo_medium/Jacky_BORTOLI_%28grigny%29.jpg?1458203857\",\n                \"medium_dimensions\": \"266x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/476/logo_large/Jacky_BORTOLI_%28grigny%29.jpg?1458203857\",\n                \"large_dimensions\": \"399x600\",\n                \"alt\": \"image de profil de Jacky Bortoli\",\n                \"name\": \"image de profil de Jacky Bortoli\",\n                \"slug\": \"image-de-profil-de-jacky-bortoli\",\n                \"description\": \"image de profil de Jacky Bortoli\",\n                \"copyright\": \"\"\n            },\n            \"titles\": {\n                \"city_titles\": [\n                    {\n                        \"id\": 141,\n                        \"title_type\": {\n                            \"id\": 8,\n                            \"name\": \"Conseiller municipal\",\n                            \"subtitle\": \"en charge de la ZAC Centre-Ville, des Travaux et des Commerces\",\n                            \"weight\": 1,\n                            \"type_category\": \"Communes\"\n                        },\n                        \"city\": {\n                            \"id\": 10,\n                            \"organization_id\": 56,\n                            \"name\": \"Grigny\",\n                            \"slug\": \"grigny\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/965/logo_small/logo_ville_de_Grigny.jpg?1455180924\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/965/logo_medium/logo_ville_de_Grigny.jpg?1455180924\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/965/logo_large/logo_ville_de_Grigny.jpg?1455180924\",\n                                \"alt\": \"image de profil de Grigny\"\n                            }\n                        }\n                    }\n                ],\n                \"agglomeration_titles\": [\n                    {\n                        \"id\": 142,\n                        \"title_type\": {\n                            \"id\": 9,\n                            \"name\": \"Conseiller communautaire\",\n                            \"subtitle\": \"chargé du cycle de l’eau\",\n                            \"weight\": 10,\n                            \"type_category\": \"Agglomérations\"\n                        },\n                        \"agglomeration\": {\n                            \"id\": 4,\n                            \"organization_id\": 52,\n                            \"name\": \"Grand Paris Sud\",\n                            \"slug\": \"grand-paris-sud\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                                \"alt\": \"image de profil de Grand Paris Sud\"\n                            }\n                        }\n                    }\n                ],\n                \"department_titles\": [],\n                \"region_titles\": []\n            },\n            \"infos\": {\n                \"phone\": \"01 69 02 53 53\",\n                \"email\": \"info@grigny91.fr\",\n                \"contact\": \"\",\n                \"website\": \"\",\n                \"social\": {\n                    \"facebook\": \"\",\n                    \"twitter\": \"\",\n                    \"googleplus\": \"\",\n                    \"instagram\": \"\",\n                    \"linkedin\": \"\",\n                    \"viadeo\": \"\",\n                    \"flickr\": \"\",\n                    \"youtube\": \"\",\n                    \"dailymotion\": \"\",\n                    \"vimeo\": \"\",\n                    \"medium\": \"\",\n                    \"rss\": \"\",\n                    \"snapcode_svg\": \"\",\n                    \"messenger\": null,\n                    \"allocine\": null\n                }\n            }\n        },\n        {\n            \"id\": 75,\n            \"person_id\": 71,\n            \"civility\": \"M.\",\n            \"first_name\": \"Philippe\",\n            \"last_name\": \"Rio\",\n            \"slug\": \"philippe-rio\",\n            \"blurb\": \"Vice-président de Grand Paris Sud chargé du développement durable, de la transition énergétique, du cycle de l’eau et de la biodiversité, Maire de Grigny\",\n            \"pages\": [\n                {\n                    \"id\": 249,\n                    \"instance\": {\n                        \"slug\": \"portail-institutionnel-gps\"\n                    }\n                }\n            ],\n            \"profile_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/479/logo_small/Philippe_RIO_%28grigny%29.jpg?1458205425\",\n                \"small_dimensions\": \"100x150\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/479/logo_medium/Philippe_RIO_%28grigny%29.jpg?1458205425\",\n                \"medium_dimensions\": \"266x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/479/logo_large/Philippe_RIO_%28grigny%29.jpg?1458205425\",\n                \"large_dimensions\": \"399x600\",\n                \"alt\": \"image de profil de Philippe Rio\",\n                \"name\": \"image de profil de Philippe Rio\",\n                \"slug\": \"image-de-profil-de-philippe-rio\",\n                \"description\": \"image de profil de Philippe Rio\",\n                \"copyright\": \"\"\n            },\n            \"titles\": {\n                \"city_titles\": [\n                    {\n                        \"id\": 143,\n                        \"title_type\": {\n                            \"id\": 6,\n                            \"name\": \"Maire\",\n                            \"subtitle\": \"\",\n                            \"weight\": 1,\n                            \"type_category\": \"Communes\"\n                        },\n                        \"city\": {\n                            \"id\": 10,\n                            \"organization_id\": 56,\n                            \"name\": \"Grigny\",\n                            \"slug\": \"grigny\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/965/logo_small/logo_ville_de_Grigny.jpg?1455180924\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/965/logo_medium/logo_ville_de_Grigny.jpg?1455180924\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/965/logo_large/logo_ville_de_Grigny.jpg?1455180924\",\n                                \"alt\": \"image de profil de Grigny\"\n                            }\n                        }\n                    }\n                ],\n                \"agglomeration_titles\": [\n                    {\n                        \"id\": 144,\n                        \"title_type\": {\n                            \"id\": 11,\n                            \"name\": \"Vice-président\",\n                            \"subtitle\": \"chargé du développement durable, de la transition énergétique, du cycle de l’eau et de la biodiversité\",\n                            \"weight\": 6,\n                            \"type_category\": \"Agglomérations\"\n                        },\n                        \"agglomeration\": {\n                            \"id\": 4,\n                            \"organization_id\": 52,\n                            \"name\": \"Grand Paris Sud\",\n                            \"slug\": \"grand-paris-sud\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                                \"alt\": \"image de profil de Grand Paris Sud\"\n                            }\n                        }\n                    }\n                ],\n                \"department_titles\": [],\n                \"region_titles\": []\n            },\n            \"infos\": {\n                \"phone\": \"01 69 02 53 53\",\n                \"email\": \"info@grigny91.fr\",\n                \"contact\": \"\",\n                \"website\": \"\",\n                \"social\": {\n                    \"facebook\": \"https://www.facebook.com/philippe.rio.1232?fref=ts\",\n                    \"twitter\": \"https://twitter.com/prio91350\",\n                    \"googleplus\": \"\",\n                    \"instagram\": \"\",\n                    \"linkedin\": \"\",\n                    \"viadeo\": \"\",\n                    \"flickr\": \"\",\n                    \"youtube\": \"\",\n                    \"dailymotion\": \"\",\n                    \"vimeo\": \"\",\n                    \"medium\": \"\",\n                    \"rss\": \"\",\n                    \"snapcode_svg\": \"\",\n                    \"messenger\": null,\n                    \"allocine\": null\n                }\n            }\n        },\n        {\n            \"id\": 76,\n            \"person_id\": 72,\n            \"civility\": \"Mme\",\n            \"first_name\": \"Fatima\",\n            \"last_name\": \"Ogbi\",\n            \"slug\": \"fatima-ogbi\",\n            \"blurb\": \"Conseiller communautaire de Grand Paris Sud chargée de la qualité des services publics et de la proximité, Maire adjoint de Grigny chargée du Personnel, des Relations humaines et du Développement des services publics\",\n            \"pages\": [\n                {\n                    \"id\": 250,\n                    \"instance\": {\n                        \"slug\": \"portail-institutionnel-gps\"\n                    }\n                }\n            ],\n            \"profile_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/482/logo_small/Fatima_OGBI_%28grigny%29.jpg?1458203092\",\n                \"small_dimensions\": \"100x150\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/482/logo_medium/Fatima_OGBI_%28grigny%29.jpg?1458203092\",\n                \"medium_dimensions\": \"266x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/482/logo_large/Fatima_OGBI_%28grigny%29.jpg?1458203092\",\n                \"large_dimensions\": \"399x600\",\n                \"alt\": \"image de profil de Fatima Ogbi\",\n                \"name\": \"image de profil de Fatima Ogbi\",\n                \"slug\": \"image-de-profil-de-fatima-ogbi\",\n                \"description\": \"image de profil de Fatima Ogbi\",\n                \"copyright\": \"\"\n            },\n            \"titles\": {\n                \"city_titles\": [\n                    {\n                        \"id\": 145,\n                        \"title_type\": {\n                            \"id\": 7,\n                            \"name\": \"Maire adjointe\",\n                            \"subtitle\": \"chargée du Personnel, des Relations humaines et du Développement des services publics \",\n                            \"weight\": 1,\n                            \"type_category\": \"Communes\"\n                        },\n                        \"city\": {\n                            \"id\": 10,\n                            \"organization_id\": 56,\n                            \"name\": \"Grigny\",\n                            \"slug\": \"grigny\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/965/logo_small/logo_ville_de_Grigny.jpg?1455180924\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/965/logo_medium/logo_ville_de_Grigny.jpg?1455180924\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/965/logo_large/logo_ville_de_Grigny.jpg?1455180924\",\n                                \"alt\": \"image de profil de Grigny\"\n                            }\n                        }\n                    }\n                ],\n                \"agglomeration_titles\": [\n                    {\n                        \"id\": 146,\n                        \"title_type\": {\n                            \"id\": 9,\n                            \"name\": \"Conseillère communautaire\",\n                            \"subtitle\": \"chargée de la qualité des services publics et de la proximité\",\n                            \"weight\": 17,\n                            \"type_category\": \"Agglomérations\"\n                        },\n                        \"agglomeration\": {\n                            \"id\": 4,\n                            \"organization_id\": 52,\n                            \"name\": \"Grand Paris Sud\",\n                            \"slug\": \"grand-paris-sud\",\n                            \"logo\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                                \"alt\": \"image de profil de Grand Paris Sud\"\n                            }\n                        }\n                    }\n                ],\n                \"department_titles\": [],\n                \"region_titles\": []\n            },\n            \"infos\": {\n                \"phone\": \"01 69 02 53 53\",\n                \"email\": \"info@grigny91.fr\",\n                \"contact\": \"\",\n                \"website\": \"\",\n                \"social\": {\n                    \"facebook\": \"https://www.facebook.com/fatima.ogbi?fref=ts\",\n                    \"twitter\": \"\",\n                    \"googleplus\": \"\",\n                    \"instagram\": \"\",\n                    \"linkedin\": \"\",\n                    \"viadeo\": \"\",\n                    \"flickr\": \"\",\n                    \"youtube\": \"\",\n                    \"dailymotion\": \"\",\n                    \"vimeo\": \"\",\n                    \"medium\": \"\",\n                    \"rss\": \"\",\n                    \"snapcode_svg\": \"\",\n                    \"messenger\": null,\n                    \"allocine\": null\n                }\n            }\n        }\n    ]\n}"}],"_postman_id":"b186a2e1-1613-4f99-a299-f7ffb042b1a8"},{"name":"Show","id":"d50a4c24-6062-444b-b225-1f572ee2d274","request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"https://api.publidata.io/v1/{{instance_id}}/elects/{{elect_id}}","description":"<p>Show d'un élu</p>\n","urlObject":{"path":["v1","{{instance_id}}","elects","{{elect_id}}"],"host":["https://api.publidata.io"],"query":[],"variable":[]}},"response":[{"id":"ecac9db8-6d7f-4bdf-b0ce-6c24d33aab22","name":"Show elect ","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"publidata.io/api/v1/portail-institutionnel-gps/elects/76"},"code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 80,\n    \"person_id\": 76,\n    \"civility\": \"M.\",\n    \"first_name\": \"Damanguere Redanga\",\n    \"last_name\": \"N'Gaibona \",\n    \"slug\": \"damanguere-redanga-n-gaibona\",\n    \"blurb\": \"Maire adjoint de Corbeil-Essonnes chargé de la Vie associative, Conseiller communautaire de Grand Paris Sud\",\n    \"pages\": [\n        {\n            \"id\": 254,\n            \"instance\": {\n                \"slug\": \"portail-institutionnel-gps\"\n            }\n        }\n    ],\n    \"profile_picture\": {\n        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/202/logo_small/Damanguere_Redanga_N'GAIBONA_%28corbeil_essonne%29.jpg?1458202460\",\n        \"small_dimensions\": \"100x150\",\n        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/202/logo_medium/Damanguere_Redanga_N'GAIBONA_%28corbeil_essonne%29.jpg?1458202460\",\n        \"medium_dimensions\": \"266x400\",\n        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/202/logo_large/Damanguere_Redanga_N'GAIBONA_%28corbeil_essonne%29.jpg?1458202460\",\n        \"large_dimensions\": \"399x600\",\n        \"alt\": \"image de profil de Damanguere Redanga N'Gaibona \",\n        \"name\": \"image de profil de Damanguere Redanga N'Gaibona \",\n        \"slug\": \"image-de-profil-de-damanguere-redanga-n-gaibona\",\n        \"description\": \"image de profil de Damanguere Redanga N'Gaibona \",\n        \"copyright\": \"\"\n    },\n    \"titles\": {\n        \"city_titles\": [\n            {\n                \"id\": 153,\n                \"title_type\": {\n                    \"id\": 7,\n                    \"name\": \"Maire adjoint\",\n                    \"subtitle\": \"chargé de la Vie associative\",\n                    \"weight\": 1,\n                    \"type_category\": \"Communes\"\n                },\n                \"city\": {\n                    \"id\": 8,\n                    \"organization_id\": 54,\n                    \"name\": \"Corbeil-Essonnes\",\n                    \"slug\": \"corbeil-essonnes\",\n                    \"logo\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/067/logo_small/corbeil-essonnes-grandparissud.png?1520348885\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/067/logo_medium/corbeil-essonnes-grandparissud.png?1520348885\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/000/067/logo_large/corbeil-essonnes-grandparissud.png?1520348885\",\n                        \"alt\": \"image de profil de Corbeil-Essonnes\"\n                    }\n                }\n            }\n        ],\n        \"agglomeration_titles\": [\n            {\n                \"id\": 154,\n                \"title_type\": {\n                    \"id\": 9,\n                    \"name\": \"Conseiller communautaire\",\n                    \"subtitle\": \"\",\n                    \"weight\": 48,\n                    \"type_category\": \"Agglomérations\"\n                },\n                \"agglomeration\": {\n                    \"id\": 4,\n                    \"organization_id\": 52,\n                    \"name\": \"Grand Paris Sud\",\n                    \"slug\": \"grand-paris-sud\",\n                    \"logo\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_small/grandparissud-logo.png?1489663858\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_medium/grandparissud-logo.png?1489663858\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/001/871/logo_large/grandparissud-logo.png?1489663858\",\n                        \"alt\": \"image de profil de Grand Paris Sud\"\n                    }\n                }\n            }\n        ],\n        \"department_titles\": [],\n        \"region_titles\": []\n    },\n    \"infos\": {\n        \"phone\": \"01 60 89 71 79\",\n        \"email\": \"\",\n        \"contact\": \"\",\n        \"website\": \"\",\n        \"social\": {\n            \"facebook\": \"\",\n            \"twitter\": \"\",\n            \"googleplus\": \"\",\n            \"instagram\": \"\",\n            \"linkedin\": \"\",\n            \"viadeo\": \"\",\n            \"flickr\": \"\",\n            \"youtube\": \"\",\n            \"dailymotion\": \"\",\n            \"vimeo\": \"\",\n            \"medium\": \"\",\n            \"rss\": \"\",\n            \"snapcode_svg\": \"\",\n            \"messenger\": null,\n            \"allocine\": null\n        }\n    }\n}"}],"_postman_id":"d50a4c24-6062-444b-b225-1f572ee2d274"},{"name":"Search","id":"a34289f1-959f-4f8f-8ed4-1c87fb3791b9","request":{"method":"GET","header":[],"url":"https://api.publidata.io/v1/{{instance_id}}/elects?q&size=10&page=1&marker=false&instances[]=2&performers[]=Nakht&facilities[]=8&events[]=1&event_groups[]=1&news[]=1&projects[]=1&cities[]=7&departments[]=1&regions[]=1&skills[]=1&elects[]=1&epcis[]=1&bbox[]&themes[]=1","description":"<p>Index des projets</p>\n","urlObject":{"path":["v1","{{instance_id}}","elects"],"host":["https://api.publidata.io"],"query":[{"key":"q","value":null},{"key":"size","value":"10"},{"key":"page","value":"1"},{"key":"marker","value":"false"},{"key":"instances[]","value":"2"},{"key":"performers[]","value":"Nakht"},{"key":"facilities[]","value":"8"},{"key":"events[]","value":"1"},{"key":"event_groups[]","value":"1"},{"key":"news[]","value":"1"},{"key":"projects[]","value":"1"},{"key":"cities[]","value":"7"},{"key":"departments[]","value":"1"},{"key":"regions[]","value":"1"},{"key":"skills[]","value":"1"},{"key":"elects[]","value":"1"},{"key":"epcis[]","value":"1"},{"key":"bbox[]","value":null},{"key":"themes[]","value":"1"}],"variable":[]}},"response":[{"id":"3ea8ecb8-8d03-4a4f-9457-1e5ddddd05ad","name":"Index projects","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"publidata.io/api/v1/portail-projets-gps/projects"},"code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"projects\": [\n        {\n            \"id\": 2,\n            \"name\": \"Projet de territoire\",\n            \"slug\": \"projet-de-territoire\",\n            \"start_date\": \"2016-05-01T00:00:00.000+02:00\",\n            \"end_date\": \"2017-12-31T00:00:00.000+01:00\",\n            \"cover_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/006/651/cover_small/bandeau-projet-territoire-grandparissud.jpg?1513613827\",\n                \"small_dimensions\": \"300x70\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/006/651/cover_medium/bandeau-projet-territoire-grandparissud.jpg?1513613827\",\n                \"medium_dimensions\": \"600x140\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/006/651/cover_large/bandeau-projet-territoire-grandparissud.jpg?1513613827\",\n                \"large_dimensions\": \"1000x233\",\n                \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/006/651/cover_xlarge/bandeau-projet-territoire-grandparissud.jpg?1513613827\",\n                \"xlarge_dimensions\": \"1596x372\",\n                \"alt\": \"image de couverture de Projet de territoire\",\n                \"name\": \"image de couverture de Projet de territoire\",\n                \"slug\": \"image-de-couverture-de-projet-de-territoire-9832a840-c61d-4102-9bbe-a81ee34914fb\",\n                \"description\": \"image de couverture de Projet de territoire\",\n                \"copyright\": \"agglomération Grand Paris Sud\"\n            },\n            \"pages\": [\n                {\n                    \"id\": 1321,\n                    \"instance\": {\n                        \"slug\": \"portail-projets-gps\"\n                    }\n                },\n                {\n                    \"id\": 8381,\n                    \"instance\": {\n                        \"slug\": \"portail-projets-gps\"\n                    }\n                }\n            ],\n            \"sub_projects\": [\n                {\n                    \"id\": 3,\n                    \"name\": \"Concertation élus communautaires \",\n                    \"slug\": \"concertation-elus-communautaires\",\n                    \"start_date\": \"2016-05-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2016-10-15T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/087/cover_small/seminaire-elus-grand-paris-sud%281%29samedi_12_mai.JPG?1473715424\",\n                        \"small_dimensions\": \"300x200\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/087/cover_medium/seminaire-elus-grand-paris-sud%281%29samedi_12_mai.JPG?1473715424\",\n                        \"medium_dimensions\": \"600x400\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/087/cover_large/seminaire-elus-grand-paris-sud%281%29samedi_12_mai.JPG?1473715424\",\n                        \"large_dimensions\": \"1000x667\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/087/cover_xlarge/seminaire-elus-grand-paris-sud%281%29samedi_12_mai.JPG?1473715424\",\n                        \"xlarge_dimensions\": \"1280x854\",\n                        \"alt\": \"image de couverture de Concertation élus communautaires \",\n                        \"name\": \"image de couverture de Concertation élus communautaires \",\n                        \"slug\": \"image-de-couverture-de-concertation-elus-communautaires\",\n                        \"description\": \"image de couverture de Concertation élus communautaires \",\n                        \"copyright\": \"agglomération Grand Paris Sud\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 1322,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 4,\n                    \"name\": \"Concertation élus municipaux\",\n                    \"slug\": \"concertation-elus-municipaux\",\n                    \"start_date\": \"2016-05-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2016-06-30T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/075/cover_small/seminaire-elus-municipaux-grand-paris-sud_%282%29.JPG?1473715036\",\n                        \"small_dimensions\": \"300x200\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/075/cover_medium/seminaire-elus-municipaux-grand-paris-sud_%282%29.JPG?1473715036\",\n                        \"medium_dimensions\": \"600x400\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/075/cover_large/seminaire-elus-municipaux-grand-paris-sud_%282%29.JPG?1473715036\",\n                        \"large_dimensions\": \"1000x666\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/075/cover_xlarge/seminaire-elus-municipaux-grand-paris-sud_%282%29.JPG?1473715036\",\n                        \"xlarge_dimensions\": \"1280x853\",\n                        \"alt\": \"image de couverture de Concertation élus municipaux\",\n                        \"name\": \"image de couverture de Concertation élus municipaux\",\n                        \"slug\": \"image-de-couverture-de-concertation-elus-municipaux\",\n                        \"description\": \"image de couverture de Concertation élus municipaux\",\n                        \"copyright\": \"agglomération Grand Paris Sud\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 1323,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 5,\n                    \"name\": \"Concertation partenaires et associations\",\n                    \"slug\": \"concertation-partenaires-et-associations\",\n                    \"start_date\": \"2016-06-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2016-09-30T00:00:00.000+02:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 1332,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 6,\n                    \"name\": \"Concertation agents\",\n                    \"slug\": \"concertation-agents\",\n                    \"start_date\": \"2016-07-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2016-08-31T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/057/cover_small/projet-territoire-grand-paris-sud-personnel_%282%29_jeudi_21_juillet.jpg?1473713810\",\n                        \"small_dimensions\": \"300x168\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/057/cover_medium/projet-territoire-grand-paris-sud-personnel_%282%29_jeudi_21_juillet.jpg?1473713810\",\n                        \"medium_dimensions\": \"600x336\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/057/cover_large/projet-territoire-grand-paris-sud-personnel_%282%29_jeudi_21_juillet.jpg?1473713810\",\n                        \"large_dimensions\": \"1000x560\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/057/cover_xlarge/projet-territoire-grand-paris-sud-personnel_%282%29_jeudi_21_juillet.jpg?1473713810\",\n                        \"xlarge_dimensions\": \"1280x717\",\n                        \"alt\": \"image de couverture de Concertation agents\",\n                        \"name\": \"image de couverture de Concertation agents\",\n                        \"slug\": \"image-de-couverture-de-concertation-agents\",\n                        \"description\": \"image de couverture de Concertation agents\",\n                        \"copyright\": \"agglomération Grand Paris Sud\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 1328,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 17,\n                    \"name\": \"Concertation CME et CJ\",\n                    \"slug\": \"concertation-cme-et-cj\",\n                    \"start_date\": \"2016-07-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2016-10-15T00:00:00.000+02:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 1408,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 7,\n                    \"name\": \"Concertation des habitants\",\n                    \"slug\": \"concertation-des-habitants\",\n                    \"start_date\": \"2016-09-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2016-11-15T00:00:00.000+01:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 1329,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 8,\n                    \"name\": \"Synthèse de la concertation\",\n                    \"slug\": \"synthese-de-la-concertation\",\n                    \"start_date\": \"2016-10-16T00:00:00.000+02:00\",\n                    \"end_date\": \"2017-03-30T00:00:00.000+02:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 1330,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 9,\n                    \"name\": \"Adoption du projet de territoire\",\n                    \"slug\": \"adoption-du-projet-de-territoire\",\n                    \"start_date\": \"2017-06-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2017-06-30T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/894/cover_small/adoption-projet-territoire-grandparissud.jpg?1474447897\",\n                        \"small_dimensions\": \"300x200\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/894/cover_medium/adoption-projet-territoire-grandparissud.jpg?1474447897\",\n                        \"medium_dimensions\": \"600x400\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/894/cover_large/adoption-projet-territoire-grandparissud.jpg?1474447897\",\n                        \"large_dimensions\": \"1000x667\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/007/894/cover_xlarge/adoption-projet-territoire-grandparissud.jpg?1474447897\",\n                        \"xlarge_dimensions\": \"2000x1333\",\n                        \"alt\": \"image de couverture de Adoption du projet de territoire\",\n                        \"name\": \"image de couverture de Adoption du projet de territoire\",\n                        \"slug\": \"image-de-couverture-de-adoption-du-projet-de-territoire\",\n                        \"description\": \"image de couverture de Adoption du projet de territoire\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 1331,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                }\n            ]\n        },\n        {\n            \"id\": 26,\n            \"name\": \"Tram 12 express / Requalification du Bois Briard\",\n            \"slug\": \"tram-12-express-requalification-du-bois-briard\",\n            \"start_date\": \"2015-04-01T00:00:00.000+02:00\",\n            \"end_date\": \"2020-06-30T00:00:00.000+02:00\",\n            \"cover_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/168/cover_small/Perspective-tram12.png?1487925596\",\n                \"small_dimensions\": \"300x178\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/168/cover_medium/Perspective-tram12.png?1487925596\",\n                \"medium_dimensions\": \"600x356\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/168/cover_large/Perspective-tram12.png?1487925596\",\n                \"large_dimensions\": \"1000x593\",\n                \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/168/cover_xlarge/Perspective-tram12.png?1487925596\",\n                \"xlarge_dimensions\": \"2000x1186\",\n                \"alt\": \"image de couverture de Tram 12 express / Requalification du Bois Briard\",\n                \"name\": \"image de couverture de Tram 12 express / Requalification du Bois Briard\",\n                \"slug\": \"image-de-couverture-de-tram-12-express-requalification-du-bois-briard\",\n                \"description\": \"image de couverture de Tram 12 express / Requalification du Bois Briard\",\n                \"copyright\": \"\"\n            },\n            \"pages\": [\n                {\n                    \"id\": 4030,\n                    \"instance\": {\n                        \"slug\": \"portail-projets-gps\"\n                    }\n                }\n            ],\n            \"sub_projects\": [\n                {\n                    \"id\": 27,\n                    \"name\": \"Concertation préalable requalification RD 446\",\n                    \"slug\": \"concertation-prealable-requalification-rd-446\",\n                    \"start_date\": \"2015-04-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2015-10-01T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/302/cover_small/Perspective-tram12.png?1488205439\",\n                        \"small_dimensions\": \"300x178\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/302/cover_medium/Perspective-tram12.png?1488205439\",\n                        \"medium_dimensions\": \"600x356\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/302/cover_large/Perspective-tram12.png?1488205439\",\n                        \"large_dimensions\": \"1000x593\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/302/cover_xlarge/Perspective-tram12.png?1488205439\",\n                        \"xlarge_dimensions\": \"2000x1186\",\n                        \"alt\": \"image de couverture de Concertation préalable requalification RD 446\",\n                        \"name\": \"image de couverture de Concertation préalable requalification RD 446\",\n                        \"slug\": \"image-de-couverture-de-concertation-prealable-requalification-rd-446\",\n                        \"description\": \"image de couverture de Concertation préalable requalification RD 446\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 4069,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 28,\n                    \"name\": \"Enquête publique\",\n                    \"slug\": \"enquete-publique\",\n                    \"start_date\": \"2016-02-01T00:00:00.000+01:00\",\n                    \"end_date\": \"2016-07-02T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/312/cover_small/Perspective-tram12.png?1488201990\",\n                        \"small_dimensions\": \"300x178\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/312/cover_medium/Perspective-tram12.png?1488201990\",\n                        \"medium_dimensions\": \"600x356\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/312/cover_large/Perspective-tram12.png?1488201990\",\n                        \"large_dimensions\": \"1000x593\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/312/cover_xlarge/Perspective-tram12.png?1488201990\",\n                        \"xlarge_dimensions\": \"2000x1186\",\n                        \"alt\": \"image de couverture de Enquête publique\",\n                        \"name\": \"image de couverture de Enquête publique\",\n                        \"slug\": \"image-de-couverture-de-enquete-publique\",\n                        \"description\": \"image de couverture de Enquête publique\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 4033,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 29,\n                    \"name\": \"Réunion publique \",\n                    \"slug\": \"reunion-publique\",\n                    \"start_date\": \"2016-11-29T00:00:00.000+01:00\",\n                    \"end_date\": \"2016-11-29T00:00:00.000+01:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/307/cover_small/ANL_5670.jpg?1488201053\",\n                        \"small_dimensions\": \"300x200\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/307/cover_medium/ANL_5670.jpg?1488201053\",\n                        \"medium_dimensions\": \"600x399\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/307/cover_large/ANL_5670.jpg?1488201053\",\n                        \"large_dimensions\": \"1000x666\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/307/cover_xlarge/ANL_5670.jpg?1488201053\",\n                        \"xlarge_dimensions\": \"2000x1331\",\n                        \"alt\": \"image de couverture de Réunion publique \",\n                        \"name\": \"image de couverture de Réunion publique \",\n                        \"slug\": \"image-de-couverture-de-reunion-publique\",\n                        \"description\": \"image de couverture de Réunion publique \",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 4036,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 30,\n                    \"name\": \"Travaux de déboisage \",\n                    \"slug\": \"travaux-de-deboisage\",\n                    \"start_date\": \"2017-02-27T00:00:00.000+01:00\",\n                    \"end_date\": \"2017-03-05T00:00:00.000+01:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/303/cover_small/N.446_DSC3739.jpg?1488200468\",\n                        \"small_dimensions\": \"300x200\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/303/cover_medium/N.446_DSC3739.jpg?1488200468\",\n                        \"medium_dimensions\": \"600x400\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/303/cover_large/N.446_DSC3739.jpg?1488200468\",\n                        \"large_dimensions\": \"1000x667\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/303/cover_xlarge/N.446_DSC3739.jpg?1488200468\",\n                        \"xlarge_dimensions\": \"2000x1335\",\n                        \"alt\": \"image de couverture de Travaux de déboisage \",\n                        \"name\": \"image de couverture de Travaux de déboisage \",\n                        \"slug\": \"image-de-couverture-de-travaux-de-deboisage\",\n                        \"description\": \"image de couverture de Travaux de déboisage \",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 4039,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 31,\n                    \"name\": \"Travaux préparatoires\",\n                    \"slug\": \"travaux-preparatoires\",\n                    \"start_date\": \"2017-03-06T00:00:00.000+01:00\",\n                    \"end_date\": \"2017-03-12T00:00:00.000+01:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/308/cover_small/Am%C3%A9nagement_du_secteur_Delouvrier.png?1488201549\",\n                        \"small_dimensions\": \"300x159\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/308/cover_medium/Am%C3%A9nagement_du_secteur_Delouvrier.png?1488201549\",\n                        \"medium_dimensions\": \"600x318\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/308/cover_large/Am%C3%A9nagement_du_secteur_Delouvrier.png?1488201549\",\n                        \"large_dimensions\": \"1000x529\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/308/cover_xlarge/Am%C3%A9nagement_du_secteur_Delouvrier.png?1488201549\",\n                        \"xlarge_dimensions\": \"2000x1059\",\n                        \"alt\": \"image de couverture de Travaux préparatoires\",\n                        \"name\": \"image de couverture de Travaux préparatoires\",\n                        \"slug\": \"image-de-couverture-de-travaux-preparatoires\",\n                        \"description\": \"image de couverture de Travaux préparatoires\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 4042,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 32,\n                    \"name\": \"Fermeture de l’échangeur Delouvrier\",\n                    \"slug\": \"fermeture-de-l-echangeur-delouvrier\",\n                    \"start_date\": \"2017-03-21T00:00:00.000+01:00\",\n                    \"end_date\": \"2018-06-30T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/299/cover_small/Perspective-_-carrefour_-Delouvrier.jpg?1488199631\",\n                        \"small_dimensions\": \"300x169\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/299/cover_medium/Perspective-_-carrefour_-Delouvrier.jpg?1488199631\",\n                        \"medium_dimensions\": \"600x338\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/299/cover_large/Perspective-_-carrefour_-Delouvrier.jpg?1488199631\",\n                        \"large_dimensions\": \"1000x563\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/299/cover_xlarge/Perspective-_-carrefour_-Delouvrier.jpg?1488199631\",\n                        \"xlarge_dimensions\": \"1210x681\",\n                        \"alt\": \"image de couverture de Fermeture de l’échangeur Delouvrier\",\n                        \"name\": \"image de couverture de Fermeture de l’échangeur Delouvrier\",\n                        \"slug\": \"image-de-couverture-de-fermeture-de-l-echangeur-delouvrier\",\n                        \"description\": \"image de couverture de Fermeture de l’échangeur Delouvrier\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 4026,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 33,\n                    \"name\": \"Requalification de la RD 446\",\n                    \"slug\": \"requalification-de-la-rd-446\",\n                    \"start_date\": \"2017-03-13T00:00:00.000+01:00\",\n                    \"end_date\": \"2018-08-31T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/304/cover_small/carte-travaux-delouvrier-grandparissud.PNG?1490690689\",\n                        \"small_dimensions\": \"300x159\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/304/cover_medium/carte-travaux-delouvrier-grandparissud.PNG?1490690689\",\n                        \"medium_dimensions\": \"600x317\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/304/cover_large/carte-travaux-delouvrier-grandparissud.PNG?1490690689\",\n                        \"large_dimensions\": \"1000x529\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/304/cover_xlarge/carte-travaux-delouvrier-grandparissud.PNG?1490690689\",\n                        \"xlarge_dimensions\": \"1190x629\",\n                        \"alt\": \"image de couverture de Requalification de la RD 446\",\n                        \"name\": \"image de couverture de Requalification de la RD 446\",\n                        \"slug\": \"image-de-couverture-de-requalification-de-la-rd-446\",\n                        \"description\": \"image de couverture de Requalification de la RD 446\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 4045,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 34,\n                    \"name\": \"Début des travaux Tram 12 express\",\n                    \"slug\": \"debut-des-travaux-tram-12-express\",\n                    \"start_date\": \"2018-01-03T00:00:00.000+01:00\",\n                    \"end_date\": \"2018-07-01T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/298/cover_small/Perspective-Evry.png?1488199442\",\n                        \"small_dimensions\": \"300x178\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/298/cover_medium/Perspective-Evry.png?1488199442\",\n                        \"medium_dimensions\": \"600x356\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/298/cover_large/Perspective-Evry.png?1488199442\",\n                        \"large_dimensions\": \"1000x593\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/298/cover_xlarge/Perspective-Evry.png?1488199442\",\n                        \"xlarge_dimensions\": \"1999x1186\",\n                        \"alt\": \"image de couverture de Début des travaux Tram 12 express\",\n                        \"name\": \"image de couverture de Début des travaux Tram 12 express\",\n                        \"slug\": \"image-de-couverture-de-debut-des-travaux-tram-12-express\",\n                        \"description\": \"image de couverture de Début des travaux Tram 12 express\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 4048,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 35,\n                    \"name\": \"Ouverture boulevard urbain\",\n                    \"slug\": \"ouverture-boulevard-urbain\",\n                    \"start_date\": \"2018-07-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2019-06-30T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/305/cover_small/Perspective-Evry.png?1488200796\",\n                        \"small_dimensions\": \"300x178\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/305/cover_medium/Perspective-Evry.png?1488200796\",\n                        \"medium_dimensions\": \"600x356\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/305/cover_large/Perspective-Evry.png?1488200796\",\n                        \"large_dimensions\": \"1000x593\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/305/cover_xlarge/Perspective-Evry.png?1488200796\",\n                        \"xlarge_dimensions\": \"1999x1186\",\n                        \"alt\": \"image de couverture de Ouverture boulevard urbain\",\n                        \"name\": \"image de couverture de Ouverture boulevard urbain\",\n                        \"slug\": \"image-de-couverture-de-ouverture-boulevard-urbain\",\n                        \"description\": \"image de couverture de Ouverture boulevard urbain\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 4051,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 36,\n                    \"name\": \"Fin des travaux d'aménagement\",\n                    \"slug\": \"fin-des-travaux-d-amenagement\",\n                    \"start_date\": \"2019-07-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2020-06-30T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/306/cover_small/Perspective-tram12.png?1488200844\",\n                        \"small_dimensions\": \"300x178\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/306/cover_medium/Perspective-tram12.png?1488200844\",\n                        \"medium_dimensions\": \"600x356\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/306/cover_large/Perspective-tram12.png?1488200844\",\n                        \"large_dimensions\": \"1000x593\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/306/cover_xlarge/Perspective-tram12.png?1488200844\",\n                        \"xlarge_dimensions\": \"2000x1186\",\n                        \"alt\": \"image de couverture de Fin des travaux d'aménagement\",\n                        \"name\": \"image de couverture de Fin des travaux d'aménagement\",\n                        \"slug\": \"image-de-couverture-de-fin-des-travaux-d-amenagement\",\n                        \"description\": \"image de couverture de Fin des travaux d'aménagement\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 4054,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                }\n            ]\n        },\n        {\n            \"id\": 41,\n            \"name\": \"T Zen 4 \",\n            \"slug\": \"t-zen-4\",\n            \"start_date\": \"2016-05-30T00:00:00.000+02:00\",\n            \"end_date\": \"2020-12-31T00:00:00.000+01:00\",\n            \"cover_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/547/cover_small/1-voies-reservees_priorite-aux-feux.jpg?1488460827\",\n                \"small_dimensions\": \"300x168\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/547/cover_medium/1-voies-reservees_priorite-aux-feux.jpg?1488460827\",\n                \"medium_dimensions\": \"600x337\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/547/cover_large/1-voies-reservees_priorite-aux-feux.jpg?1488460827\",\n                \"large_dimensions\": \"900x505\",\n                \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/547/cover_xlarge/1-voies-reservees_priorite-aux-feux.jpg?1488460827\",\n                \"xlarge_dimensions\": \"900x505\",\n                \"alt\": \"image de couverture de T Zen 4 \",\n                \"name\": \"image de couverture de T Zen 4 \",\n                \"slug\": \"image-de-couverture-de-t-zen-4\",\n                \"description\": \"image de couverture de T Zen 4 \",\n                \"copyright\": \"\"\n            },\n            \"pages\": [\n                {\n                    \"id\": 4163,\n                    \"instance\": {\n                        \"slug\": \"portail-projets-gps\"\n                    }\n                }\n            ],\n            \"sub_projects\": [\n                {\n                    \"id\": 42,\n                    \"name\": \"Enquête publique\",\n                    \"slug\": \"enquete-publique-ae33dafd-8be2-48ec-a581-d325aeb364bf\",\n                    \"start_date\": \"2016-05-30T00:00:00.000+02:00\",\n                    \"end_date\": \"2016-07-04T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/558/cover_small/3-station-confortable-accessible.jpg?1488468928\",\n                        \"small_dimensions\": \"300x169\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/558/cover_medium/3-station-confortable-accessible.jpg?1488468928\",\n                        \"medium_dimensions\": \"600x337\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/558/cover_large/3-station-confortable-accessible.jpg?1488468928\",\n                        \"large_dimensions\": \"900x506\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/558/cover_xlarge/3-station-confortable-accessible.jpg?1488468928\",\n                        \"xlarge_dimensions\": \"900x506\",\n                        \"alt\": \"image de couverture de Enquête publique\",\n                        \"name\": \"image de couverture de Enquête publique\",\n                        \"slug\": \"image-de-couverture-de-enquete-publique-2e821b44-25e0-41c6-959e-db1384f855d6\",\n                        \"description\": \"image de couverture de Enquête publique\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 4166,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 43,\n                    \"name\": \"Déclaration de projet et d'utilité publique\",\n                    \"slug\": \"declaration-de-projet-et-d-utilite-publique-5ecff84d-872d-4a15-81ed-d3d70b388e4c\",\n                    \"start_date\": \"2016-10-05T00:00:00.000+02:00\",\n                    \"end_date\": \"2016-12-08T00:00:00.000+01:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/559/cover_small/1-voies-reservees_priorite-aux-feux.jpg?1488468962\",\n                        \"small_dimensions\": \"300x168\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/559/cover_medium/1-voies-reservees_priorite-aux-feux.jpg?1488468962\",\n                        \"medium_dimensions\": \"600x337\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/559/cover_large/1-voies-reservees_priorite-aux-feux.jpg?1488468962\",\n                        \"large_dimensions\": \"900x505\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/559/cover_xlarge/1-voies-reservees_priorite-aux-feux.jpg?1488468962\",\n                        \"xlarge_dimensions\": \"900x505\",\n                        \"alt\": \"image de couverture de Déclaration de projet et d'utilité publique\",\n                        \"name\": \"image de couverture de Déclaration de projet et d'utilité publique\",\n                        \"slug\": \"image-de-couverture-de-declaration-de-projet-et-d-utilite-publique-39c7aac9-83f4-4c8b-95e4-c74564bfddfd\",\n                        \"description\": \"image de couverture de Déclaration de projet et d'utilité publique\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 4169,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 44,\n                    \"name\": \"Début des travaux\",\n                    \"slug\": \"debut-des-travaux\",\n                    \"start_date\": \"2019-01-01T00:00:00.000+01:00\",\n                    \"end_date\": \"2019-12-31T00:00:00.000+01:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/560/cover_small/3-station-confortable-accessible.jpg?1488469031\",\n                        \"small_dimensions\": \"300x169\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/560/cover_medium/3-station-confortable-accessible.jpg?1488469031\",\n                        \"medium_dimensions\": \"600x337\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/560/cover_large/3-station-confortable-accessible.jpg?1488469031\",\n                        \"large_dimensions\": \"900x506\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/560/cover_xlarge/3-station-confortable-accessible.jpg?1488469031\",\n                        \"xlarge_dimensions\": \"900x506\",\n                        \"alt\": \"image de couverture de Début des travaux\",\n                        \"name\": \"image de couverture de Début des travaux\",\n                        \"slug\": \"image-de-couverture-de-debut-des-travaux\",\n                        \"description\": \"image de couverture de Début des travaux\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 4172,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 45,\n                    \"name\": \"Mise en service du T Zen 4\",\n                    \"slug\": \"mise-en-service-du-t-zen-4\",\n                    \"start_date\": \"2020-01-01T00:00:00.000+01:00\",\n                    \"end_date\": \"2020-12-31T00:00:00.000+01:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/561/cover_small/1-voies-reservees_priorite-aux-feux.jpg?1488469076\",\n                        \"small_dimensions\": \"300x168\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/561/cover_medium/1-voies-reservees_priorite-aux-feux.jpg?1488469076\",\n                        \"medium_dimensions\": \"600x337\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/561/cover_large/1-voies-reservees_priorite-aux-feux.jpg?1488469076\",\n                        \"large_dimensions\": \"900x505\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/561/cover_xlarge/1-voies-reservees_priorite-aux-feux.jpg?1488469076\",\n                        \"xlarge_dimensions\": \"900x505\",\n                        \"alt\": \"image de couverture de Mise en service du T Zen 4\",\n                        \"name\": \"image de couverture de Mise en service du T Zen 4\",\n                        \"slug\": \"image-de-couverture-de-mise-en-service-du-t-zen-4\",\n                        \"description\": \"image de couverture de Mise en service du T Zen 4\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 4175,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                }\n            ]\n        },\n        {\n            \"id\": 18,\n            \"name\": \"T Zen 2\",\n            \"slug\": \"t-zen-2\",\n            \"start_date\": \"2013-09-01T00:00:00.000+02:00\",\n            \"end_date\": \"2024-12-31T00:00:00.000+01:00\",\n            \"cover_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/014/520/cover_small/3-station-confortable-accessible.jpg?1486132133\",\n                \"small_dimensions\": \"300x169\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/014/520/cover_medium/3-station-confortable-accessible.jpg?1486132133\",\n                \"medium_dimensions\": \"600x337\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/014/520/cover_large/3-station-confortable-accessible.jpg?1486132133\",\n                \"large_dimensions\": \"900x506\",\n                \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/014/520/cover_xlarge/3-station-confortable-accessible.jpg?1486132133\",\n                \"xlarge_dimensions\": \"900x506\",\n                \"alt\": \"image de couverture de T Zen 2\",\n                \"name\": \"image de couverture de T Zen 2\",\n                \"slug\": \"image-de-couverture-de-t-zen-2\",\n                \"description\": \"image de couverture de T Zen 2\",\n                \"copyright\": \"\"\n            },\n            \"pages\": [\n                {\n                    \"id\": 2184,\n                    \"instance\": {\n                        \"slug\": \"portail-projets-gps\"\n                    }\n                }\n            ],\n            \"sub_projects\": [\n                {\n                    \"id\": 19,\n                    \"name\": \"Enquête publique\",\n                    \"slug\": \"enquete-publique-932eaf28-3be9-4ccb-a2b0-c8e8cd9cce8b\",\n                    \"start_date\": \"2013-09-23T00:00:00.000+02:00\",\n                    \"end_date\": \"2013-10-26T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/551/cover_small/1-voies-reservees_priorite-aux-feux.jpg?1488468068\",\n                        \"small_dimensions\": \"300x168\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/551/cover_medium/1-voies-reservees_priorite-aux-feux.jpg?1488468068\",\n                        \"medium_dimensions\": \"600x337\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/551/cover_large/1-voies-reservees_priorite-aux-feux.jpg?1488468068\",\n                        \"large_dimensions\": \"900x505\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/551/cover_xlarge/1-voies-reservees_priorite-aux-feux.jpg?1488468068\",\n                        \"xlarge_dimensions\": \"900x505\",\n                        \"alt\": \"image de couverture de Enquête publique\",\n                        \"name\": \"image de couverture de Enquête publique\",\n                        \"slug\": \"image-de-couverture-de-enquete-publique-acc85490-4756-4182-a689-c9119e63e7fe\",\n                        \"description\": \"image de couverture de Enquête publique\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 2187,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 20,\n                    \"name\": \"Déclaration de projet et d'utilité publique\",\n                    \"slug\": \"declaration-de-projet-et-d-utilite-publique\",\n                    \"start_date\": \"2014-06-27T00:00:00.000+02:00\",\n                    \"end_date\": \"2014-07-30T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/552/cover_small/3-station-confortable-accessible.jpg?1488468105\",\n                        \"small_dimensions\": \"300x169\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/552/cover_medium/3-station-confortable-accessible.jpg?1488468105\",\n                        \"medium_dimensions\": \"600x337\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/552/cover_large/3-station-confortable-accessible.jpg?1488468105\",\n                        \"large_dimensions\": \"900x506\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/552/cover_xlarge/3-station-confortable-accessible.jpg?1488468105\",\n                        \"xlarge_dimensions\": \"900x506\",\n                        \"alt\": \"image de couverture de Déclaration de projet et d'utilité publique\",\n                        \"name\": \"image de couverture de Déclaration de projet et d'utilité publique\",\n                        \"slug\": \"image-de-couverture-de-declaration-de-projet-et-d-utilite-publique\",\n                        \"description\": \"image de couverture de Déclaration de projet et d'utilité publique\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 2237,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 21,\n                    \"name\": \"Études approfondies et avant-projet\",\n                    \"slug\": \"etudes-approfondies-et-avant-projet\",\n                    \"start_date\": \"2014-08-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2017-03-31T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/553/cover_small/1-voies-reservees_priorite-aux-feux.jpg?1488468141\",\n                        \"small_dimensions\": \"300x168\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/553/cover_medium/1-voies-reservees_priorite-aux-feux.jpg?1488468141\",\n                        \"medium_dimensions\": \"600x337\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/553/cover_large/1-voies-reservees_priorite-aux-feux.jpg?1488468141\",\n                        \"large_dimensions\": \"900x505\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/553/cover_xlarge/1-voies-reservees_priorite-aux-feux.jpg?1488468141\",\n                        \"xlarge_dimensions\": \"900x505\",\n                        \"alt\": \"image de couverture de Études approfondies et avant-projet\",\n                        \"name\": \"image de couverture de Études approfondies et avant-projet\",\n                        \"slug\": \"image-de-couverture-de-etudes-approfondies-et-avant-projet\",\n                        \"description\": \"image de couverture de Études approfondies et avant-projet\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 2236,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 22,\n                    \"name\": \"Travaux d'aménagement\",\n                    \"slug\": \"travaux-d-amenagement\",\n                    \"start_date\": \"2016-10-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2017-05-30T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/554/cover_small/3-station-confortable-accessible.jpg?1488468430\",\n                        \"small_dimensions\": \"300x169\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/554/cover_medium/3-station-confortable-accessible.jpg?1488468430\",\n                        \"medium_dimensions\": \"600x337\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/554/cover_large/3-station-confortable-accessible.jpg?1488468430\",\n                        \"large_dimensions\": \"900x506\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/554/cover_xlarge/3-station-confortable-accessible.jpg?1488468430\",\n                        \"xlarge_dimensions\": \"900x506\",\n                        \"alt\": \"image de couverture de Travaux d'aménagement\",\n                        \"name\": \"image de couverture de Travaux d'aménagement\",\n                        \"slug\": \"image-de-couverture-de-travaux-d-amenagement\",\n                        \"description\": \"image de couverture de Travaux d'aménagement\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 2235,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 23,\n                    \"name\": \"Début prévisonnel des travaux\",\n                    \"slug\": \"debut-previsonnel-des-travaux\",\n                    \"start_date\": \"2017-07-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2018-06-30T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/555/cover_small/1-voies-reservees_priorite-aux-feux.jpg?1488468382\",\n                        \"small_dimensions\": \"300x168\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/555/cover_medium/1-voies-reservees_priorite-aux-feux.jpg?1488468382\",\n                        \"medium_dimensions\": \"600x337\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/555/cover_large/1-voies-reservees_priorite-aux-feux.jpg?1488468382\",\n                        \"large_dimensions\": \"900x505\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/555/cover_xlarge/1-voies-reservees_priorite-aux-feux.jpg?1488468382\",\n                        \"xlarge_dimensions\": \"900x505\",\n                        \"alt\": \"image de couverture de Début prévisonnel des travaux\",\n                        \"name\": \"image de couverture de Début prévisonnel des travaux\",\n                        \"slug\": \"image-de-couverture-de-debut-previsonnel-des-travaux\",\n                        \"description\": \"image de couverture de Début prévisonnel des travaux\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 2234,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 24,\n                    \"name\": \"Travaux et création des stations\",\n                    \"slug\": \"travaux-et-creation-des-stations\",\n                    \"start_date\": \"2018-01-01T00:00:00.000+01:00\",\n                    \"end_date\": \"2023-12-31T00:00:00.000+01:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/556/cover_small/3-station-confortable-accessible.jpg?1488468607\",\n                        \"small_dimensions\": \"300x169\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/556/cover_medium/3-station-confortable-accessible.jpg?1488468607\",\n                        \"medium_dimensions\": \"600x337\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/556/cover_large/3-station-confortable-accessible.jpg?1488468607\",\n                        \"large_dimensions\": \"900x506\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/556/cover_xlarge/3-station-confortable-accessible.jpg?1488468607\",\n                        \"xlarge_dimensions\": \"900x506\",\n                        \"alt\": \"image de couverture de Travaux et création des stations\",\n                        \"name\": \"image de couverture de Travaux et création des stations\",\n                        \"slug\": \"image-de-couverture-de-travaux-et-creation-des-stations\",\n                        \"description\": \"image de couverture de Travaux et création des stations\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 2233,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 25,\n                    \"name\": \"Mise en service du T Zen 2 \",\n                    \"slug\": \"mise-en-service-du-t-zen-2\",\n                    \"start_date\": \"2024-07-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2024-12-31T00:00:00.000+01:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/557/cover_small/1-voies-reservees_priorite-aux-feux.jpg?1488468656\",\n                        \"small_dimensions\": \"300x168\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/557/cover_medium/1-voies-reservees_priorite-aux-feux.jpg?1488468656\",\n                        \"medium_dimensions\": \"600x337\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/557/cover_large/1-voies-reservees_priorite-aux-feux.jpg?1488468656\",\n                        \"large_dimensions\": \"900x505\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/557/cover_xlarge/1-voies-reservees_priorite-aux-feux.jpg?1488468656\",\n                        \"xlarge_dimensions\": \"900x505\",\n                        \"alt\": \"image de couverture de Mise en service du T Zen 2 \",\n                        \"name\": \"image de couverture de Mise en service du T Zen 2 \",\n                        \"slug\": \"image-de-couverture-de-mise-en-service-du-t-zen-2\",\n                        \"description\": \"image de couverture de Mise en service du T Zen 2 \",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 2232,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                }\n            ]\n        },\n        {\n            \"id\": 48,\n            \"name\": \"L'Agora se métamorphose \",\n            \"slug\": \"l-agora-se-metamorphose\",\n            \"start_date\": \"2017-09-01T00:00:00.000+02:00\",\n            \"end_date\": \"2020-12-01T00:00:00.000+01:00\",\n            \"cover_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/489/cover_small/Dossier-Graphique_EVRY_02-10.jpg?1506422665\",\n                \"small_dimensions\": \"300x147\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/489/cover_medium/Dossier-Graphique_EVRY_02-10.jpg?1506422665\",\n                \"medium_dimensions\": \"600x293\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/489/cover_large/Dossier-Graphique_EVRY_02-10.jpg?1506422665\",\n                \"large_dimensions\": \"1000x489\",\n                \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/489/cover_xlarge/Dossier-Graphique_EVRY_02-10.jpg?1506422665\",\n                \"xlarge_dimensions\": \"1854x906\",\n                \"alt\": \"image de couverture de L'Agora se métamorphose \",\n                \"name\": \"image de couverture de L'Agora se métamorphose \",\n                \"slug\": null,\n                \"description\": \"image de couverture de L'Agora se métamorphose \",\n                \"copyright\": \"\"\n            },\n            \"pages\": [\n                {\n                    \"id\": 7560,\n                    \"instance\": {\n                        \"slug\": \"portail-projets-gps\"\n                    }\n                }\n            ],\n            \"sub_projects\": [\n                {\n                    \"id\": 49,\n                    \"name\": \"Démolition du Crédit foncier \",\n                    \"slug\": \"demolition-du-credit-foncier\",\n                    \"start_date\": \"2017-09-15T00:00:00.000+02:00\",\n                    \"end_date\": \"2018-01-30T00:00:00.000+01:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 7563,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 50,\n                    \"name\": \"Espace restauration\",\n                    \"slug\": \"espace-restauration\",\n                    \"start_date\": \"2018-01-01T00:00:00.000+01:00\",\n                    \"end_date\": \"2019-05-01T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/751/cover_small/food_court.jpg?1507107617\",\n                        \"small_dimensions\": \"300x200\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/751/cover_medium/food_court.jpg?1507107617\",\n                        \"medium_dimensions\": \"600x400\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/751/cover_large/food_court.jpg?1507107617\",\n                        \"large_dimensions\": \"1000x667\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/751/cover_xlarge/food_court.jpg?1507107617\",\n                        \"xlarge_dimensions\": \"2000x1333\",\n                        \"alt\": \"image de couverture de Espace restauration\",\n                        \"name\": \"image de couverture de Espace restauration\",\n                        \"slug\": null,\n                        \"description\": \"image de couverture de Espace restauration\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 7735,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 51,\n                    \"name\": \"Place de l'Agora \",\n                    \"slug\": \"place-de-l-agora\",\n                    \"start_date\": \"2018-01-01T00:00:00.000+01:00\",\n                    \"end_date\": \"2018-12-31T00:00:00.000+01:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 7738,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 52,\n                    \"name\": \"Les Arènes\",\n                    \"slug\": \"les-arenes\",\n                    \"start_date\": \"2018-06-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2020-06-01T00:00:00.000+02:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/846/cover_small/int%C3%A9rieur_ar%C3%A8nes.JPG?1507300602\",\n                        \"small_dimensions\": \"300x167\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/846/cover_medium/int%C3%A9rieur_ar%C3%A8nes.JPG?1507300602\",\n                        \"medium_dimensions\": \"600x335\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/846/cover_large/int%C3%A9rieur_ar%C3%A8nes.JPG?1507300602\",\n                        \"large_dimensions\": \"956x533\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/846/cover_xlarge/int%C3%A9rieur_ar%C3%A8nes.JPG?1507300602\",\n                        \"xlarge_dimensions\": \"956x533\",\n                        \"alt\": \"image de couverture de Les Arènes\",\n                        \"name\": \"image de couverture de Les Arènes\",\n                        \"slug\": null,\n                        \"description\": \"image de couverture de Les Arènes\",\n                        \"copyright\": \"DVVD/Labtop\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 7741,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 53,\n                    \"name\": \"Place des Terrasses\",\n                    \"slug\": \"place-des-terrasses\",\n                    \"start_date\": \"2019-01-01T00:00:00.000+01:00\",\n                    \"end_date\": \"2020-01-01T00:00:00.000+01:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/757/cover_small/une_dossier_centres_commerciaux.jpg?1507119253\",\n                        \"small_dimensions\": \"233x300\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/757/cover_medium/une_dossier_centres_commerciaux.jpg?1507119253\",\n                        \"medium_dimensions\": \"466x600\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/757/cover_large/une_dossier_centres_commerciaux.jpg?1507119253\",\n                        \"large_dimensions\": \"777x1000\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/757/cover_xlarge/une_dossier_centres_commerciaux.jpg?1507119253\",\n                        \"xlarge_dimensions\": \"993x1278\",\n                        \"alt\": \"image de couverture de Place des Terrasses\",\n                        \"name\": \"image de couverture de Place des Terrasses\",\n                        \"slug\": null,\n                        \"description\": \"image de couverture de Place des Terrasses\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 7744,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                }\n            ]\n        },\n        {\n            \"id\": 46,\n            \"name\": \"Gare TGV\",\n            \"slug\": \"gare-tgv\",\n            \"start_date\": \"2012-01-01T00:00:00.000+01:00\",\n            \"end_date\": \"2030-12-31T00:00:00.000+01:00\",\n            \"cover_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/548/cover_small/gare-moissy-tgv.jpg?1488450325\",\n                \"small_dimensions\": \"300x200\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/548/cover_medium/gare-moissy-tgv.jpg?1488450325\",\n                \"medium_dimensions\": \"600x400\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/548/cover_large/gare-moissy-tgv.jpg?1488450325\",\n                \"large_dimensions\": \"1000x667\",\n                \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/017/548/cover_xlarge/gare-moissy-tgv.jpg?1488450325\",\n                \"xlarge_dimensions\": \"2000x1335\",\n                \"alt\": \"image de couverture de Gare TGV\",\n                \"name\": \"image de couverture de Gare TGV\",\n                \"slug\": \"image-de-couverture-de-gare-tgv-d0e33b0d-e356-4151-a846-c642e5e092a2\",\n                \"description\": \"image de couverture de Gare TGV\",\n                \"copyright\": \"\"\n            },\n            \"pages\": [\n                {\n                    \"id\": 4178,\n                    \"instance\": {\n                        \"slug\": \"portail-projets-gps\"\n                    }\n                }\n            ],\n            \"sub_projects\": []\n        },\n        {\n            \"id\": 63,\n            \"name\": \"Création de bassins de rétention à Ris-Orangis\",\n            \"slug\": \"creation-de-bassins-de-retention-a-ris-orangis\",\n            \"start_date\": \"2018-01-22T00:00:00.000+01:00\",\n            \"end_date\": \"2019-05-20T00:00:00.000+02:00\",\n            \"cover_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/526/cover_small/Bassin_Issy_les_moulineaux.JPG?1515765425\",\n                \"small_dimensions\": \"300x146\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/526/cover_medium/Bassin_Issy_les_moulineaux.JPG?1515765425\",\n                \"medium_dimensions\": \"600x292\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/526/cover_large/Bassin_Issy_les_moulineaux.JPG?1515765425\",\n                \"large_dimensions\": \"1000x487\",\n                \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/024/526/cover_xlarge/Bassin_Issy_les_moulineaux.JPG?1515765425\",\n                \"xlarge_dimensions\": \"2000x973\",\n                \"alt\": \"image de couverture de Création de bassins de rétention à Ris-Orangis\",\n                \"name\": \"image de couverture de Création de bassins de rétention à Ris-Orangis\",\n                \"slug\": null,\n                \"description\": \"image de couverture de Création de bassins de rétention à Ris-Orangis\",\n                \"copyright\": \"Grabd Paris Sud \"\n            },\n            \"pages\": [\n                {\n                    \"id\": 8540,\n                    \"instance\": {\n                        \"slug\": \"portail-projets-gps\"\n                    }\n                }\n            ],\n            \"sub_projects\": [\n                {\n                    \"id\": 64,\n                    \"name\": \"Création du bassin sous le stade Émile-Gagneux\",\n                    \"slug\": \"creation-du-bassin-sous-le-stade-emile-gagneux\",\n                    \"start_date\": \"2018-01-22T00:00:00.000+01:00\",\n                    \"end_date\": \"2019-05-30T00:00:00.000+02:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 8844,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 65,\n                    \"name\": \"Création d'un collecteur (canalisation) \",\n                    \"slug\": \"creation-d-un-collecteur-canalisation\",\n                    \"start_date\": \"2018-05-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2019-03-30T00:00:00.000+01:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 8838,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 66,\n                    \"name\": \"Création second bassin de stockage / restitution\",\n                    \"slug\": \"creation-second-bassin-de-stockage-restitution\",\n                    \"start_date\": \"2018-03-01T00:00:00.000+01:00\",\n                    \"end_date\": \"2019-01-31T00:00:00.000+01:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 8841,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 67,\n                    \"name\": \"Création station anti-crue de Seine\",\n                    \"slug\": \"creation-station-anti-crue-de-seine\",\n                    \"start_date\": \"2018-01-29T00:00:00.000+01:00\",\n                    \"end_date\": \"2018-06-30T00:00:00.000+02:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 8835,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                }\n            ]\n        },\n        {\n            \"id\": 54,\n            \"name\": \"Chauffage urbain \",\n            \"slug\": \"chauffage-urbain\",\n            \"start_date\": \"2017-07-01T00:00:00.000+02:00\",\n            \"end_date\": \"2018-12-31T00:00:00.000+01:00\",\n            \"cover_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/891/cover_small/vert_le_grand.jpg?1507645372\",\n                \"small_dimensions\": \"300x236\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/891/cover_medium/vert_le_grand.jpg?1507645372\",\n                \"medium_dimensions\": \"300x236\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/891/cover_large/vert_le_grand.jpg?1507645372\",\n                \"large_dimensions\": \"300x236\",\n                \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/891/cover_xlarge/vert_le_grand.jpg?1507645372\",\n                \"xlarge_dimensions\": \"300x236\",\n                \"alt\": \"image de couverture de Chauffage urbain \",\n                \"name\": \"image de couverture de Chauffage urbain \",\n                \"slug\": null,\n                \"description\": \"image de couverture de Chauffage urbain \",\n                \"copyright\": \"\"\n            },\n            \"pages\": [\n                {\n                    \"id\": 7816,\n                    \"instance\": {\n                        \"slug\": \"portail-projets-gps\"\n                    }\n                }\n            ],\n            \"sub_projects\": [\n                {\n                    \"id\": 56,\n                    \"name\": \"Modernisation et sécurisation du réseau \",\n                    \"slug\": \"modernisation-et-securisation-du-reseau\",\n                    \"start_date\": \"2017-07-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2018-10-01T00:00:00.000+02:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 7825,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 55,\n                    \"name\": \"Création d'un réseau d'interconnexion\",\n                    \"slug\": \"creation-d-un-reseau-d-interconnexion\",\n                    \"start_date\": \"2017-07-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2017-12-31T00:00:00.000+01:00\",\n                    \"cover_picture\": {\n                        \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/936/cover_small/travaux_chauffage_urbain_GPS-11-10-2017_DSC2562.jpg?1507883027\",\n                        \"small_dimensions\": \"300x200\",\n                        \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/936/cover_medium/travaux_chauffage_urbain_GPS-11-10-2017_DSC2562.jpg?1507883027\",\n                        \"medium_dimensions\": \"600x401\",\n                        \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/936/cover_large/travaux_chauffage_urbain_GPS-11-10-2017_DSC2562.jpg?1507883027\",\n                        \"large_dimensions\": \"1000x668\",\n                        \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/022/936/cover_xlarge/travaux_chauffage_urbain_GPS-11-10-2017_DSC2562.jpg?1507883027\",\n                        \"xlarge_dimensions\": \"2000x1335\",\n                        \"alt\": \"image de couverture de Création d'un réseau d'interconnexion\",\n                        \"name\": \"image de couverture de Création d'un réseau d'interconnexion\",\n                        \"slug\": null,\n                        \"description\": \"image de couverture de Création d'un réseau d'interconnexion\",\n                        \"copyright\": \"\"\n                    },\n                    \"pages\": [\n                        {\n                            \"id\": 7819,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 57,\n                    \"name\": \"Installation d'un système de télégestion \",\n                    \"slug\": \"installation-d-un-systeme-de-telegestion\",\n                    \"start_date\": \"2017-07-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2018-12-31T00:00:00.000+01:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 7828,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                }\n            ]\n        },\n        {\n            \"id\": 58,\n            \"name\": \"Rue des Lumières\",\n            \"slug\": \"rue-des-lumieres\",\n            \"start_date\": \"2017-09-01T00:00:00.000+02:00\",\n            \"end_date\": \"2019-12-01T00:00:00.000+01:00\",\n            \"cover_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/023/652/cover_small/ecran-horizontal.jpg?1511120784\",\n                \"small_dimensions\": \"300x169\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/023/652/cover_medium/ecran-horizontal.jpg?1511120784\",\n                \"medium_dimensions\": \"600x338\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/023/652/cover_large/ecran-horizontal.jpg?1511120784\",\n                \"large_dimensions\": \"1000x563\",\n                \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/023/652/cover_xlarge/ecran-horizontal.jpg?1511120784\",\n                \"xlarge_dimensions\": \"1920x1080\",\n                \"alt\": \"image de couverture de Rue des Lumières\",\n                \"name\": \"image de couverture de Rue des Lumières\",\n                \"slug\": null,\n                \"description\": \"image de couverture de Rue des Lumières\",\n                \"copyright\": \"\"\n            },\n            \"pages\": [\n                {\n                    \"id\": 8127,\n                    \"instance\": {\n                        \"slug\": \"portail-projets-gps\"\n                    }\n                }\n            ],\n            \"sub_projects\": [\n                {\n                    \"id\": 85,\n                    \"name\": \"Les actions de préfiguration\",\n                    \"slug\": \"les-actions-de-prefiguration\",\n                    \"start_date\": \"2017-12-01T00:00:00.000+01:00\",\n                    \"end_date\": \"2018-08-31T00:00:00.000+02:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 9166,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": [\n                        {\n                            \"id\": 59,\n                            \"name\": \"Spectacle Incandescences \",\n                            \"slug\": \"spectacle-incandescences\",\n                            \"start_date\": \"2017-12-14T00:00:00.000+01:00\",\n                            \"end_date\": \"2017-12-14T00:00:00.000+01:00\",\n                            \"cover_picture\": {\n                                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/023/654/cover_small/ecran-horizontal.jpg?1511182171\",\n                                \"small_dimensions\": \"300x169\",\n                                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/023/654/cover_medium/ecran-horizontal.jpg?1511182171\",\n                                \"medium_dimensions\": \"600x338\",\n                                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/023/654/cover_large/ecran-horizontal.jpg?1511182171\",\n                                \"large_dimensions\": \"1000x563\",\n                                \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/023/654/cover_xlarge/ecran-horizontal.jpg?1511182171\",\n                                \"xlarge_dimensions\": \"1920x1080\",\n                                \"alt\": \"image de couverture de Spectacle Incandescences \",\n                                \"name\": \"image de couverture de Spectacle Incandescences \",\n                                \"slug\": null,\n                                \"description\": \"image de couverture de Spectacle Incandescences \",\n                                \"copyright\": \"\"\n                            },\n                            \"pages\": [\n                                {\n                                    \"id\": 8133,\n                                    \"instance\": {\n                                        \"slug\": \"portail-projets-gps\"\n                                    }\n                                }\n                            ],\n                            \"sub_projects\": []\n                        }\n                    ]\n                },\n                {\n                    \"id\": 62,\n                    \"name\": \"Phase de candidature \",\n                    \"slug\": \"phase-de-candidature\",\n                    \"start_date\": \"2017-10-03T00:00:00.000+02:00\",\n                    \"end_date\": \"2017-12-20T00:00:00.000+01:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 8146,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 77,\n                    \"name\": \"Dialogue compétitif\",\n                    \"slug\": \"dialogue-competitif\",\n                    \"start_date\": \"2018-01-01T00:00:00.000+01:00\",\n                    \"end_date\": \"2018-08-31T00:00:00.000+02:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 9151,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 86,\n                    \"name\": \"Collaboration avec le candidat retenu pour mise en œuvre des projets\",\n                    \"slug\": \"collaboration-avec-le-candidat-retenu-pour-mise-en-oeuvre-des-projets\",\n                    \"start_date\": \"2018-09-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2019-05-01T00:00:00.000+02:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 9175,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                }\n            ]\n        },\n        {\n            \"id\": 68,\n            \"name\": \"Cirque de l'Essonne\",\n            \"slug\": \"cirque-de-l-essonne\",\n            \"start_date\": \"2018-01-01T00:00:00.000+01:00\",\n            \"end_date\": \"2023-12-31T00:00:00.000+01:00\",\n            \"cover_picture\": {\n                \"small\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/025/389/cover_small/cirque-essonne-grandparissud-bandeau.jpg?1520719604\",\n                \"small_dimensions\": \"300x70\",\n                \"medium\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/025/389/cover_medium/cirque-essonne-grandparissud-bandeau.jpg?1520719604\",\n                \"medium_dimensions\": \"600x140\",\n                \"large\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/025/389/cover_large/cirque-essonne-grandparissud-bandeau.jpg?1520719604\",\n                \"large_dimensions\": \"1000x234\",\n                \"xlarge\": \"https://publidata-prod.s3.amazonaws.com/production/images/images/000/025/389/cover_xlarge/cirque-essonne-grandparissud-bandeau.jpg?1520719604\",\n                \"xlarge_dimensions\": \"2000x468\",\n                \"alt\": \"image de couverture de Cirque de l'Essonne\",\n                \"name\": \"image de couverture de Cirque de l'Essonne\",\n                \"slug\": null,\n                \"description\": \"image de couverture de Cirque de l'Essonne\",\n                \"copyright\": \"\"\n            },\n            \"pages\": [\n                {\n                    \"id\": 9043,\n                    \"instance\": {\n                        \"slug\": \"portail-projets-gps\"\n                    }\n                }\n            ],\n            \"sub_projects\": [\n                {\n                    \"id\": 70,\n                    \"name\": \"Études techniques préalables et de conception de l’aménagement\",\n                    \"slug\": \"etudes-techniques-prealables-et-de-conception-de-l-amenagement\",\n                    \"start_date\": \"2017-01-01T00:00:00.000+01:00\",\n                    \"end_date\": \"2019-06-30T00:00:00.000+02:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 9106,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 87,\n                    \"name\": \"Premiers travaux déjà effectués \",\n                    \"slug\": \"premiers-travaux-deja-effectues\",\n                    \"start_date\": \"2017-01-01T00:00:00.000+01:00\",\n                    \"end_date\": \"2018-03-31T00:00:00.000+02:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 9178,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 91,\n                    \"name\": \"Prochains travaux d'urgence\",\n                    \"slug\": \"prochains-travaux-d-urgence\",\n                    \"start_date\": \"2018-01-01T00:00:00.000+01:00\",\n                    \"end_date\": \"2018-12-31T00:00:00.000+01:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 9235,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 90,\n                    \"name\": \"Signature de la convention par les partenaires\",\n                    \"slug\": \"signature-de-la-convention-par-les-partenaires\",\n                    \"start_date\": \"2018-05-26T00:00:00.000+02:00\",\n                    \"end_date\": \"2018-05-26T00:00:00.000+02:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 9232,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                },\n                {\n                    \"id\": 88,\n                    \"name\": \"Grands travaux\",\n                    \"slug\": \"grands-travaux-086fc039-afe3-467d-97cf-a1c6c91f9ba6\",\n                    \"start_date\": \"2019-07-01T00:00:00.000+02:00\",\n                    \"end_date\": \"2023-12-31T00:00:00.000+01:00\",\n                    \"pages\": [\n                        {\n                            \"id\": 9181,\n                            \"instance\": {\n                                \"slug\": \"portail-projets-gps\"\n                            }\n                        }\n                    ],\n                    \"sub_projects\": []\n                }\n            ]\n        }\n    ]\n}"}],"_postman_id":"a34289f1-959f-4f8f-8ed4-1c87fb3791b9"}],"id":"f9cbd32d-5af6-4fc5-a218-b2b23e9145b7","description":"<p>Endpoint d'API des élus</p>\n","_postman_id":"f9cbd32d-5af6-4fc5-a218-b2b23e9145b7"}],"id":"3104cd1a-4640-4099-b36f-155063438df0","description":"<p>L'API V1 est une API de lecture <code>GET</code> uniquement <em>(MEL : décembre 2015, EOL : 31/12/2021)</em></p>\n<h1 id=\"données-couvertes\">Données couvertes</h1>\n<p>L'API v1 couvre les données suivantes :</p>\n<h3 id=\"données-socles\">Données socles</h3>\n<ul>\n<li>Villes</li>\n<li>Epcis</li>\n<li>Départements</li>\n<li>Régions</li>\n<li>Élus</li>\n<li>Équipements</li>\n<li>Compétences des organisations</li>\n</ul>\n<h3 id=\"données-chaudes\">Données chaudes</h3>\n<ul>\n<li>Actualités</li>\n<li>Evénements</li>\n<li>Groupes d'événements</li>\n<li>Projets</li>\n</ul>\n","event":[{"listen":"prerequest","script":{"id":"6f025931-b512-4e37-a1de-5b9313df582a","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"167a886f-54dc-4f2a-8b32-ff038a606e43","type":"text/javascript","exec":[""]}}],"_postman_id":"3104cd1a-4640-4099-b36f-155063438df0"}],"event":[{"listen":"prerequest","script":{"id":"f162c42e-2843-4df0-b846-c56d653d8fcb","type":"text/javascript","requests":{},"exec":[""]}},{"listen":"test","script":{"id":"287edd5c-2bf9-4e26-bbe6-e29f393e7b54","type":"text/javascript","requests":{},"exec":[""]}}],"variable":[{"key":"url","value":"https://api.publidata.io"},{"key":"api_instance","value":"mel-encombrants"}]}