52 lines
749 B
JSON
52 lines
749 B
JSON
{
|
|
"$schema": "./schemas/person.schema.json",
|
|
"persons": [
|
|
{
|
|
"id": 2,
|
|
"name": "test2",
|
|
"groups": []
|
|
},
|
|
{
|
|
"id": 3,
|
|
"name": "test3",
|
|
"groups": [
|
|
{
|
|
"id": 1,
|
|
"name": "test1"
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"id": 4,
|
|
"name": "test4",
|
|
"groups": [
|
|
{
|
|
"id": 2,
|
|
"name": "test2"
|
|
},
|
|
{
|
|
"id": 3,
|
|
"name": "test3"
|
|
}
|
|
]
|
|
}
|
|
],
|
|
"person_update": {
|
|
"id": 2,
|
|
"name": "another_test",
|
|
"groups": [
|
|
{
|
|
"id": 1,
|
|
"name": "test1"
|
|
},
|
|
{
|
|
"id": 2,
|
|
"name": "test2"
|
|
},
|
|
{
|
|
"id": 3,
|
|
"name": "test3"
|
|
}
|
|
]
|
|
}
|
|
}
|