feat: Generate Schema Files - 18113073 (no-changelog) (#12927)

Co-authored-by: Elias Meire <elias@meire.dev>
This commit is contained in:
Jon
2025-01-30 14:59:04 +00:00
committed by GitHub
parent cdfa22593b
commit 9d027339fd
661 changed files with 76670 additions and 1 deletions

View File

@@ -0,0 +1,73 @@
{
"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"
]
},
"dueDate": {
"type": "null"
},
"cycle": {
"type": "null"
}
},
"required": [
"id",
"identifier",
"title",
"priority",
"archivedAt",
"assignee",
"state",
"createdAt",
"creator",
"description",
"dueDate",
"cycle"
]
}

View File

@@ -0,0 +1,67 @@
{
"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"
]
}

View File

@@ -0,0 +1,51 @@
{
"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"
}
},
"required": [
"id",
"title",
"priority",
"archivedAt",
"assignee",
"state",
"createdAt",
"creator",
"description",
"dueDate",
"cycle"
]
}