Required
- Viewer
 - JSON Schema
 
Loading ....
{
  "type": "object",
  "properties": {
    "id": {
      "type": "number",
      "readOnly": true
    },
    "name": {
      "type": "string"
    },
    "email": {
      "type": "string"
    },
    "address": {
      "type": "string"
    },
    "telephone": {
      "type": "string",
      "deprecated": true
    },
    "password": {
      "type": "string",
      "writeOnly": true
    },
    "kind": {
      "type": "string",
      "const": "USER"
    }
  },
  "required": [
    "name",
    "email"
  ]
}