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

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