discourse/spec/requests/api/schemas/json/upload_complete_multipart_r...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
723 B
JSON
Raw Normal View History

{
"additionalProperties": false,
"properties": {
"unique_identifier": {
"type": "string",
"example": "66e86218-80d9-4bda-b4d5-2b6def968705",
"description": "The unique identifier returned in the original /create-multipart request."
},
"parts": {
"type": "array",
"example": [
{
"part_number": 1,
"etag": "0c376dcfcc2606f4335bbc732de93344"
},
{
"part_number": 2,
"etag": "09ert8cfcc2606f4335bbc732de91122"
}
],
"description": "All of the part numbers and their corresponding ETags that have been uploaded must be provided."
}
},
"required": [
"unique_identifier",
"parts"
]
}