Files
java-tutorials/raml/introduction/0.8/foo.json
T
Maiklins 621491f8db Merge pull request #9 from eugenp/master
update with origin
2019-09-09 10:57:44 +02:00

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"
]
}