linear · Schema
FileUploadResponse
Properties
| Name | Type | Description |
|---|---|---|
| uploadUrl | string | Signed URL to PUT the file to |
| assetUrl | string | URL to reference the asset in Linear |
| headers | object | Headers required when uploading to the signed URL |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/FileUploadResponse",
"title": "FileUploadResponse",
"type": "object",
"properties": {
"uploadUrl": {
"type": "string",
"format": "uri",
"description": "Signed URL to PUT the file to"
},
"assetUrl": {
"type": "string",
"format": "uri",
"description": "URL to reference the asset in Linear"
},
"headers": {
"type": "object",
"additionalProperties": {
"type": "string"
},
"description": "Headers required when uploading to the signed URL"
}
}
}