discourse/spec/requests/api/schemas/json/user_emails_response.json
J. David Lowe 95a6268c45
repair structural problems with the openapi spec (#16710)
* repair structural problems with the openapi spec

* additional tweaks to fix failing tests

* un-mark is_categorized as required & restore method
2022-06-20 10:56:56 -06:00

27 lines
440 B
JSON

{
"additionalProperties": false,
"properties": {
"email": {
"type": "string"
},
"secondary_emails": {
"type": "array",
"items": {}
},
"unconfirmed_emails": {
"type": "array",
"items": {}
},
"associated_accounts": {
"type": "array",
"items": {}
}
},
"required": [
"email",
"secondary_emails",
"unconfirmed_emails",
"associated_accounts"
]
}