chore: NODE-2547 - Generate Schema Files (no-changelog) (#13873)

This commit is contained in:
Jon
2025-03-18 15:19:10 +00:00
committed by GitHub
parent e0fd50554d
commit 31c0575999
819 changed files with 27463 additions and 15590 deletions

View File

@@ -51,9 +51,6 @@
},
"dueDate": {
"type": "null"
},
"cycle": {
"type": "null"
}
},
"required": [
@@ -69,5 +66,6 @@
"description",
"dueDate",
"cycle"
]
],
"version": 1
}

View File

@@ -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
}

View File

@@ -47,5 +47,6 @@
"description",
"dueDate",
"cycle"
]
],
"version": 1
}

View File

@@ -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
}