Files
bsiggel 127fa6503b chore: Update copyright year from 2025 to 2026 across core files
- Updated copyright headers in 3,055 core application files
- Changed 'Copyright (C) 2014-2025' to 'Copyright (C) 2014-2026'
- Added 123 new files from EspoCRM core updates
- Removed 4 deprecated files
- Total changes: 61,637 insertions, 54,283 deletions

This is a routine maintenance update for the new year 2026.
2026-02-07 16:05:21 +01:00

164 lines
4.5 KiB
JSON

{
"fields": {
"name": {
"type": "varchar",
"required": true,
"pattern": "$noBadCharacters"
},
"status": {
"type": "enum",
"options": [
"Draft",
"In Review",
"Published",
"Archived"
],
"style": {
"Published": "primary",
"Archived": "info"
},
"displayAsLabel": true,
"labelType": "state",
"view": "crm:views/knowledge-base-article/fields/status",
"default": "Draft",
"fieldManagerAdditionalParamList": [
{
"name": "activeOptions",
"view": "views/admin/field-manager/fields/not-actual-options"
}
],
"activeOptions": ["Published"],
"customizationOptionsReferenceDisabled": true,
"audited": true
},
"language": {
"type": "enum",
"view": "crm:views/knowledge-base-article/fields/language",
"customizationOptionsDisabled": true,
"customizationOptionsReferenceDisabled": true,
"audited": true
},
"type": {
"type": "enum",
"options": ["Article"],
"default": "Article"
},
"portals": {
"type": "linkMultiple",
"tooltip": true,
"audited": true
},
"publishDate": {
"type": "date",
"audited": true
},
"expirationDate": {
"type": "date",
"after": "publishDate",
"audited": true
},
"order": {
"type": "int",
"disableFormatting": true,
"textFilterDisabled": true
},
"description": {
"type": "text"
},
"createdAt": {
"type": "datetime",
"readOnly": true,
"fieldManagerParamList": [
"useNumericFormat"
]
},
"modifiedAt": {
"type": "datetime",
"readOnly": true,
"fieldManagerParamList": [
"useNumericFormat"
]
},
"createdBy": {
"type": "link",
"readOnly": true,
"fieldManagerParamList": []
},
"modifiedBy": {
"type": "link",
"readOnly": true,
"fieldManagerParamList": []
},
"assignedUser": {
"type": "link",
"view": "views/fields/assigned-user",
"audited": true
},
"teams": {
"type": "linkMultiple",
"view": "views/fields/teams"
},
"categories": {
"type": "linkMultiple",
"view": "views/fields/link-multiple-category-tree"
},
"attachments": {
"type": "attachmentMultiple"
},
"body": {
"type": "wysiwyg"
},
"bodyPlain": {
"type": "text",
"readOnly": true,
"directUpdateDisabled": true,
"fieldManagerParamList": []
}
},
"links": {
"cases": {
"type": "hasMany",
"entity": "Case",
"foreign": "articles"
},
"portals": {
"type": "hasMany",
"entity": "Portal",
"foreign": "articles"
},
"createdBy": {
"type": "belongsTo",
"entity": "User"
},
"modifiedBy": {
"type": "belongsTo",
"entity": "User"
},
"assignedUser": {
"type": "belongsTo",
"entity": "User"
},
"teams": {
"type": "hasMany",
"entity": "Team",
"relationName": "entityTeam",
"layoutRelationshipsDisabled": true
},
"categories": {
"type": "hasMany",
"foreign": "articles",
"entity": "KnowledgeBaseCategory"
}
},
"collection": {
"orderBy": "order",
"order": "asc",
"textFilterFields": [
"name",
"bodyPlain"
],
"fullTextSearch": true
},
"optimisticConcurrencyControl": true
}