diff --git a/authors-tools/README.md b/authors-tools/README.md index 642c5e7..b77b0d5 100644 --- a/authors-tools/README.md +++ b/authors-tools/README.md @@ -179,8 +179,33 @@ ```json [ - {"id":"1","value":"organisme: abeeway, statut: private"}, - {"id":"2","value":"organisme: airylab sarl, statut: private"}, - {"id":"3","value":"organisme: 4g technique, statut: Informations manquantes"}, - {"id":"4","value":"organisme: univ cote dazur, statut: public"}] + { + "id": 1, + "value": { + "organisme": "abeeway", + "statut": "private" + } + }, + { + "id": 2, + "value": { + "organisme": "airylab sarl", + "statut": "private" + } + }, + { + "id": 3, + "value": { + "organisme": "n/a", + "statut": "n/a" + } + }, + { + "id": 4, + "value": { + "organisme": "univ cote dazur", + "statut": "public" + } + } +] ``` diff --git a/authors-tools/tests.hurl b/authors-tools/tests.hurl index db58da0..f91df79 100644 --- a/authors-tools/tests.hurl +++ b/authors-tools/tests.hurl @@ -50,19 +50,33 @@ ] HTTP 200 -[{ - "id": "1", - "value": "organisme: abeeway, statut: private" -}, -{ - "id": "2", - "value": "organisme: airylab sarl, statut: private" -}, -{ - "id": "3", - "value": "organisme: 4g technol, statut: Informations manquantes" -}, -{ - "id": "4", - "value": "organisme: univ cote dazur, statut: public" -}] +[ + { + "id": 1, + "value": { + "organisme": "abeeway", + "statut": "private" + } + }, + { + "id": 2, + "value": { + "organisme": "airylab sarl", + "statut": "private" + } + }, + { + "id": 3, + "value": { + "organisme": "n/a", + "statut": "n/a" + } + }, + { + "id": 4, + "value": { + "organisme": "univ cote dazur", + "statut": "public" + } + } +]