Files
espocrm/schema/metadata/app/file.json
Yuri Kuznetsov 50a91836e8 schema
2023-05-27 11:44:41 +03:00

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.+]+$"
}
]
}
}
}
}