Outline · Schema

Error

Knowledge BaseWikiDocumentsCollaborationOpen SourceTeam

Properties

Name Type Description
ok boolean
error string
message string
status number
data object
View JSON Schema on GitHub

JSON Schema

error.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Error",
  "type": "object",
  "properties": {
    "ok": {
      "type": "boolean",
      "example": false
    },
    "error": {
      "type": "string"
    },
    "message": {
      "type": "string"
    },
    "status": {
      "type": "number"
    },
    "data": {
      "type": "object"
    }
  }
}