This repository has been archived on 2026-07-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
espocrm-base/application/Espo/Resources/metadata/entityDefs/WebhookEventQueueItem.json
T
2019-05-16 12:19:42 +03:00

33 lines
630 B
JSON

{
"fields": {
"number": {
"type": "autoincrement",
"dbType": "bigint"
},
"event": {
"type": "varchar",
"maxLength": 100,
"required": true
},
"target": {
"type": "linkParent"
},
"data": {
"type": "jsonObject"
},
"createdAt": {
"type": "datetime",
"readOnly": true
},
"isProcessed": {
"type": "bool"
}
},
"links": {
},
"collection": {
"orderBy": "number",
"order": "desc"
}
}