Skip to content

File

A file attachment.

PropertyTypeRequiredDescription
downloadUrlurlYesThe file's download URL.
namestringYesThe file's name.
descriptionstringNoThe file's description.
sizeInBytesnumberNoThe file's size in bytes.
mimeTypestringNoThe file's MIME type.
createdAtutcDateTimeYesThe timestamp (in UTC) at which the record was created.
lastModifiedAtutcDateTimeYesThe timestamp (in UTC) at which the record was last modified.

A JSON example of this model.

{
"downloadUrl": "https://example.com/file.pdf",
"name": "example.pdf",
"description": "A PDF file with instructions",
"sizeInBytes": 1000,
"mimeType": "application/pdf",
"createdAt": "2025-01-01T17:01:01",
"lastModifiedAt": "2025-01-02T17:30:00"
}
VersionChangesSchema
0.2.0
  • Added File model
File.yaml