Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F21907693
attachment.ex
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Size
2 KB
Referenced Files
None
Subscribers
None
attachment.ex
View Options
# Pleroma: A lightweight social networking server
# Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only
defmodule
Pleroma.Web.ApiSpec.Schemas.Attachment
do
alias
OpenApiSpex.Schema
require
OpenApiSpex
OpenApiSpex
.
schema
(%{
title
:
"Attachment"
,
description
:
"Represents a file or media attachment that can be added to a status."
,
type
:
:object
,
requried
:
[
:id
,
:url
,
:preview_url
],
properties
:
%{
id
:
%
Schema
{
type
:
:string
,
description
:
"The ID of the attachment in the database."
},
url
:
%
Schema
{
type
:
:string
,
format
:
:uri
,
description
:
"The location of the original full-size attachment"
},
remote_url
:
%
Schema
{
type
:
:string
,
format
:
:uri
,
description
:
"The location of the full-size original attachment on the remote website. String (URL), or null if the attachment is local"
,
nullable
:
true
},
preview_url
:
%
Schema
{
type
:
:string
,
format
:
:uri
,
description
:
"The location of a scaled-down preview of the attachment"
},
text_url
:
%
Schema
{
type
:
:string
,
format
:
:uri
,
description
:
"A shorter URL for the attachment"
},
description
:
%
Schema
{
type
:
:string
,
nullable
:
true
,
description
:
"Alternate text that describes what is in the media attachment, to be used for the visually impaired or when media attachments do not load"
},
type
:
%
Schema
{
type
:
:string
,
enum
:
[
"image"
,
"video"
,
"audio"
,
"unknown"
],
description
:
"The type of the attachment"
},
pleroma
:
%
Schema
{
type
:
:object
,
properties
:
%{
mime_type
:
%
Schema
{
type
:
:string
,
description
:
"mime type of the attachment"
}
}
}
},
example
:
%{
id
:
"1638338801"
,
type
:
"image"
,
url
:
"someurl"
,
remote_url
:
"someurl"
,
preview_url
:
"someurl"
,
text_url
:
"someurl"
,
description
:
nil
,
pleroma
:
%{
mime_type
:
"image/png"
}
}
})
end
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sun, Dec 28, 1:42 AM (1 d, 4 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
732467
Default Alt Text
attachment.ex (2 KB)
Attached To
Mode
rPUBE pleroma-upstream
Attached
Detach File
Event Timeline
Log In to Comment