mirror of
https://github.com/discourse/discourse.git
synced 2024-11-27 13:43:41 +08:00
31 lines
565 B
JSON
31 lines
565 B
JSON
|
{
|
||
|
"additionalProperties": false,
|
||
|
"properties": {
|
||
|
"type": {
|
||
|
"type": "string",
|
||
|
"enum": [
|
||
|
"avatar",
|
||
|
"profile_background",
|
||
|
"card_background",
|
||
|
"custom_emoji",
|
||
|
"composer"
|
||
|
]
|
||
|
},
|
||
|
"user_id": {
|
||
|
"type": "integer",
|
||
|
"description": "required if uploading an avatar"
|
||
|
},
|
||
|
"synchronous": {
|
||
|
"type": "boolean",
|
||
|
"description": "Use this flag to return an id and url"
|
||
|
},
|
||
|
"file": {
|
||
|
"type": "string",
|
||
|
"format": "binary"
|
||
|
}
|
||
|
},
|
||
|
"required": [
|
||
|
"type"
|
||
|
]
|
||
|
}
|