sample-service-api.schema.json.Error.jsd Maven / Gradle / Ivy
The newest version!
{
"type": "object",
"properties": {
"code": {
"type": "string",
"title": "Error code",
"description": "The error code provided by the service."
},
"message": {
"type": "string",
"title": "Error message",
"description": "The error message provided by the service."
}
},
"required": [
"code",
"message"
]
}