78 lines
1.6 KiB
JSON
78 lines
1.6 KiB
JSON
{
|
|
"fields": {
|
|
"name": {
|
|
"type": "varchar",
|
|
"required": true,
|
|
"trim": true
|
|
},
|
|
"type": {
|
|
"type": "varchar",
|
|
"maxLength": 100
|
|
},
|
|
"size": {
|
|
"type": "int",
|
|
"min": 0
|
|
},
|
|
"parent": {
|
|
"type": "linkParent"
|
|
},
|
|
"related": {
|
|
"type": "linkParent",
|
|
"noLoad": true
|
|
},
|
|
"sourceId": {
|
|
"type": "varchar",
|
|
"maxLength": 36,
|
|
"readOnly": true,
|
|
"disabled": true
|
|
},
|
|
"createdAt": {
|
|
"type": "datetime",
|
|
"readOnly": true
|
|
},
|
|
"createdBy": {
|
|
"type": "link",
|
|
"readOnly": true
|
|
},
|
|
"contents": {
|
|
"type": "text",
|
|
"notStorable": true
|
|
},
|
|
"role": {
|
|
"type": "varchar",
|
|
"maxLength": 36
|
|
},
|
|
"global": {
|
|
"type": "bool",
|
|
"default": false
|
|
}
|
|
},
|
|
"links": {
|
|
"createdBy": {
|
|
"type": "belongsTo",
|
|
"entity": "User"
|
|
},
|
|
"parent": {
|
|
"type": "belongsToParent",
|
|
"foreign": "attachments"
|
|
},
|
|
"related": {
|
|
"type": "belongsToParent"
|
|
}
|
|
},
|
|
"collection": {
|
|
"sortBy": "createdAt",
|
|
"asc": false
|
|
},
|
|
"indexes": {
|
|
"parent": {
|
|
"columns": ["parentType", "parentId"]
|
|
}
|
|
},
|
|
"sources": {
|
|
"Document": {
|
|
"insertModalView": ""
|
|
}
|
|
}
|
|
}
|