2021-09-21 00:04:57 +08:00
|
|
|
{
|
|
|
|
"additionalProperties": false,
|
|
|
|
"properties": {
|
|
|
|
"name": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"email": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"password": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"username": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"active": {
|
2022-10-26 08:24:54 +08:00
|
|
|
"type": "boolean",
|
|
|
|
"description": "This param requires an api key in the request header or it will be ignored"
|
2021-09-21 00:04:57 +08:00
|
|
|
},
|
|
|
|
"approved": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
2024-12-06 03:28:48 +08:00
|
|
|
"user_fields": {
|
|
|
|
"type": "object",
|
|
|
|
"additionalProperties": true,
|
|
|
|
"properties": {
|
|
|
|
"1": {
|
|
|
|
"type": "boolean"
|
|
|
|
}
|
|
|
|
}
|
2022-03-04 00:17:02 +08:00
|
|
|
},
|
|
|
|
"external_ids": {
|
|
|
|
"type": "object"
|
2021-09-21 00:04:57 +08:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"name",
|
|
|
|
"email",
|
|
|
|
"password",
|
|
|
|
"username"
|
|
|
|
]
|
|
|
|
}
|