22 lines
280 B
JSON
22 lines
280 B
JSON
|
{
|
||
|
"$schema": "./schemas/group.schema.json",
|
||
|
"groups": [
|
||
|
{
|
||
|
"id": 1,
|
||
|
"name": "test1"
|
||
|
},
|
||
|
{
|
||
|
"id": 2,
|
||
|
"name": "test2"
|
||
|
},
|
||
|
{
|
||
|
"id": 3,
|
||
|
"name": "test3"
|
||
|
}
|
||
|
],
|
||
|
"group_update": {
|
||
|
"id": 1,
|
||
|
"name": "another_test"
|
||
|
}
|
||
|
}
|