mirror of
https://github.com/espocrm/espocrm.git
synced 2026-06-28 06:56:05 +00:00
35 lines
1.1 KiB
JSON
35 lines
1.1 KiB
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"$id": "https://www.espocrm.com/schema/metadata/app/file.json",
|
|
"title": "app/file",
|
|
"description": "Definitions for file attachments.",
|
|
"type": "object",
|
|
"properties": {
|
|
"extensionMimeTypeMap": {
|
|
"type": "object",
|
|
"description": "Mime types associated with file extensions.",
|
|
"additionalProperties": {
|
|
"type": "array",
|
|
"description": "A file extension.",
|
|
"items": {
|
|
"type": "string",
|
|
"pattern": "^[-\\w.]+/[-\\w.+]+$"
|
|
}
|
|
}
|
|
},
|
|
"inlineMimeTypeList": {
|
|
"type": "array",
|
|
"description": "Mime types that can be downloaded as inline attachments.",
|
|
"items": {
|
|
"anyOf": [
|
|
{"const": "__APPEND__"},
|
|
{
|
|
"type": "string",
|
|
"pattern": "^[-\\w.]+/[-\\w.+]+$"
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|
|
}
|