13 lines
264 B
JSON
13 lines
264 B
JSON
{ "$schema": "http://json-schema.org/schema",
|
|
"type": "object",
|
|
"description": "Foo details",
|
|
"properties": {
|
|
"id": { "type": integer },
|
|
"name": { "type": "string" },
|
|
"ownerName": { "type": "string" }
|
|
},
|
|
"required": [
|
|
"id",
|
|
"name"
|
|
]
|
|
} |