Skip to content

Commit

Permalink
feat: ExportTicketTask schema
Browse files Browse the repository at this point in the history
  • Loading branch information
sdjdd committed Mar 25, 2024
1 parent 995b9f3 commit a3bc6bc
Showing 1 changed file with 57 additions and 0 deletions.
57 changes: 57 additions & 0 deletions resources/schema/ExportTicketTask.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
{
"schema": {
"updatedAt": {
"type": "Date"
},
"ticketCount": {
"auto_increment": false,
"hidden": false,
"read_only": false,
"required": false,
"type": "Number"
},
"ACL": {
"type": "ACL"
},
"objectId": {
"type": "String"
},
"completedAt": {
"hidden": false,
"read_only": false,
"required": false,
"type": "Date"
},
"createdAt": {
"type": "Date"
},
"status": {
"hidden": false,
"read_only": false,
"required": false,
"type": "String"
},
"operator": {
"className": "_User",
"hidden": false,
"read_only": false,
"required": false,
"type": "Pointer"
},
"downloadUrl": {
"hidden": false,
"read_only": false,
"required": false,
"type": "String"
}
},
"permissions": {
"create": {},
"update": {},
"delete": {},
"add_fields": {},
"get": {},
"find": {}
},
"indexes": []
}

0 comments on commit a3bc6bc

Please sign in to comment.