java-tutorials/raml/introduction/0.8/foo.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"
]
}