16 lines
392 B
JSON
16 lines
392 B
JSON
{
|
|
"type": "object",
|
|
"properties": {
|
|
"id": { "type": "integer" },
|
|
"name": { "type": "string" },
|
|
"owner": {
|
|
"type": "object",
|
|
"required": ["login"],
|
|
"properties" : {
|
|
"login": { "type": "string" }
|
|
},
|
|
"additionalProperties": false
|
|
},
|
|
"additionalProperties": false
|
|
}
|
|
}
|