Files
Christian Haas b7d9ed303b added Go variant
- using homegrown approval test function
2019-10-06 19:57:02 +02:00

16 lines
460 B
JSON

{
"plays": [
{ "id": "hamlet", "play": { "name": "Hamlet", "type": "tragedy" } },
{ "id": "as-like", "play": { "name": "As You Like It", "type": "comedy" } },
{ "id": "othello", "play": { "name": "Othello", "type": "tragedy" } }
],
"invoice": {
"customer": "BigCo",
"performances": [
{"playId": "hamlet", "audience": 55 },
{"playId": "as-like", "audience": 35 },
{"playId": "othello", "audience": 40 }
]
}
}