java-tutorials/raml/introduction/0.8/error.json

12 lines
239 B
JSON

{ "$schema": "http://json-schema.org/schema",
"type": "object",
"description": "Error message",
"properties": {
"message": { "type": "string" },
"code": { "type": integer }
},
"required": [
"message",
"code"
]
}