| [ Web Proxy ] |
| Viewing: https://raw.githubusercontent.com/HyperJSON/HyperJSON-Response/master/response-schema.json | [Back] [Original] |
{
"$schema": "http://json-schema.org/draft-04/schema#",
"name": "HyperJSON Response Message",
"type": "object",
"properties": {
"status": {
"type": "object",
"properties": {
"code": {
"type": "string"
},
"message": {
"type": "string"
},
"required": [
"code"
]
}
},
"body": {
"anyOf": [{
"type": "array"
}, {
"type": "boolean"
}, {
"type": "integer"
}, {
"type": "number"
}, {
"type": "null"
}, {
"type": "object"
}, {
"type": "string"
}]
}
},
"required": [
"status"
]
}
| Web Proxy Viewer | New URL | Original Page |