mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +00:00
chore: NODE-2585 - Generate Schema Files (no-changelog) (#14058)
This commit is contained in:
@@ -1,116 +1,6 @@
|
||||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"subject": {
|
||||
"type": "string"
|
||||
},
|
||||
"requester_id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"due_by": {
|
||||
"type": "string"
|
||||
},
|
||||
"fr_escalated": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"deleted": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"spam": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"reply_cc_emails": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"cc_emails": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"is_escalated": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"fr_due_by": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"priority": {
|
||||
"type": "integer"
|
||||
},
|
||||
"status": {
|
||||
"type": "integer"
|
||||
},
|
||||
"source": {
|
||||
"type": "integer"
|
||||
},
|
||||
"created_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"updated_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"workspace_id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"requested_for_id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"description": {
|
||||
"type": "string"
|
||||
},
|
||||
"description_text": {
|
||||
"type": "string"
|
||||
},
|
||||
"custom_fields": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"major_incident_type": {
|
||||
"type": "null"
|
||||
},
|
||||
"business_impact": {
|
||||
"type": "null"
|
||||
},
|
||||
"impacted_locations": {
|
||||
"type": "null"
|
||||
},
|
||||
"no_of_customers_impacted": {
|
||||
"type": "null"
|
||||
},
|
||||
"ticket_has_been_triaged": {
|
||||
"type": "null"
|
||||
}
|
||||
}
|
||||
},
|
||||
"tasks_dependency_type": {
|
||||
"type": "integer"
|
||||
},
|
||||
"sla_policy_id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"impact": {
|
||||
"type": "integer"
|
||||
},
|
||||
"urgency": {
|
||||
"type": "integer"
|
||||
},
|
||||
"created_within_business_hours": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"resolution_notes": {
|
||||
"type": "null"
|
||||
},
|
||||
"resolution_notes_html": {
|
||||
"type": "null"
|
||||
},
|
||||
"attachments": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
@@ -137,17 +27,118 @@
|
||||
"updated_at": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"attachment_url",
|
||||
"content_type",
|
||||
"created_at",
|
||||
"id",
|
||||
"name",
|
||||
"size",
|
||||
"updated_at"
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"cc_emails": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"created_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"created_within_business_hours": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"custom_fields": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"business_impact": {
|
||||
"type": "null"
|
||||
},
|
||||
"impacted_locations": {
|
||||
"type": "null"
|
||||
},
|
||||
"major_incident_type": {
|
||||
"type": "null"
|
||||
},
|
||||
"no_of_customers_impacted": {
|
||||
"type": "null"
|
||||
},
|
||||
"ticket_has_been_triaged": {
|
||||
"type": "null"
|
||||
}
|
||||
}
|
||||
},
|
||||
"deleted": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"description": {
|
||||
"type": "string"
|
||||
},
|
||||
"description_text": {
|
||||
"type": "string"
|
||||
},
|
||||
"due_by": {
|
||||
"type": "string"
|
||||
},
|
||||
"fr_due_by": {
|
||||
"type": "string"
|
||||
},
|
||||
"fr_escalated": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"impact": {
|
||||
"type": "integer"
|
||||
},
|
||||
"is_escalated": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"priority": {
|
||||
"type": "integer"
|
||||
},
|
||||
"reply_cc_emails": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"requested_for_id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"requester_id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"resolution_notes": {
|
||||
"type": "null"
|
||||
},
|
||||
"resolution_notes_html": {
|
||||
"type": "null"
|
||||
},
|
||||
"sla_policy_id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"source": {
|
||||
"type": "integer"
|
||||
},
|
||||
"spam": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"status": {
|
||||
"type": "integer"
|
||||
},
|
||||
"subject": {
|
||||
"type": "string"
|
||||
},
|
||||
"tasks_dependency_type": {
|
||||
"type": "integer"
|
||||
},
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"updated_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"urgency": {
|
||||
"type": "integer"
|
||||
},
|
||||
"workspace_id": {
|
||||
"type": "integer"
|
||||
}
|
||||
},
|
||||
"version": 1
|
||||
|
||||
Reference in New Issue
Block a user