mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +00:00
chore: NODE-2547 - Generate Schema Files (no-changelog) (#13873)
This commit is contained in:
@@ -51,9 +51,6 @@
|
||||
},
|
||||
"dueDate": {
|
||||
"type": "null"
|
||||
},
|
||||
"cycle": {
|
||||
"type": "null"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
@@ -69,5 +66,6 @@
|
||||
"description",
|
||||
"dueDate",
|
||||
"cycle"
|
||||
]
|
||||
],
|
||||
"version": 1
|
||||
}
|
||||
|
||||
@@ -13,8 +13,20 @@
|
||||
"priority": {
|
||||
"type": "integer"
|
||||
},
|
||||
"archivedAt": {
|
||||
"type": "null"
|
||||
"assignee": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"displayName": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"displayName"
|
||||
]
|
||||
},
|
||||
"state": {
|
||||
"type": "object",
|
||||
@@ -63,5 +75,6 @@
|
||||
"description",
|
||||
"dueDate",
|
||||
"cycle"
|
||||
]
|
||||
],
|
||||
"version": 1
|
||||
}
|
||||
|
||||
@@ -47,5 +47,6 @@
|
||||
"description",
|
||||
"dueDate",
|
||||
"cycle"
|
||||
]
|
||||
],
|
||||
"version": 1
|
||||
}
|
||||
|
||||
@@ -1,67 +1,80 @@
|
||||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"identifier": {
|
||||
"type": "string"
|
||||
},
|
||||
"title": {
|
||||
"type": "string"
|
||||
},
|
||||
"priority": {
|
||||
"type": "integer"
|
||||
},
|
||||
"archivedAt": {
|
||||
"type": "null"
|
||||
},
|
||||
"state": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"name"
|
||||
]
|
||||
},
|
||||
"createdAt": {
|
||||
"type": "string"
|
||||
},
|
||||
"creator": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"displayName": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"displayName"
|
||||
]
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"identifier",
|
||||
"title",
|
||||
"priority",
|
||||
"archivedAt",
|
||||
"assignee",
|
||||
"state",
|
||||
"createdAt",
|
||||
"creator",
|
||||
"description",
|
||||
"dueDate",
|
||||
"cycle"
|
||||
]
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"identifier": {
|
||||
"type": "string"
|
||||
},
|
||||
"title": {
|
||||
"type": "string"
|
||||
},
|
||||
"priority": {
|
||||
"type": "integer"
|
||||
},
|
||||
"assignee": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"displayName": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"displayName"
|
||||
]
|
||||
},
|
||||
"state": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"name"
|
||||
]
|
||||
},
|
||||
"createdAt": {
|
||||
"type": "string"
|
||||
},
|
||||
"creator": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"displayName": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"displayName"
|
||||
]
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"identifier",
|
||||
"title",
|
||||
"priority",
|
||||
"archivedAt",
|
||||
"assignee",
|
||||
"state",
|
||||
"createdAt",
|
||||
"creator",
|
||||
"description",
|
||||
"dueDate",
|
||||
"cycle"
|
||||
],
|
||||
"version": 1
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user