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,32 @@
{
"type": "object",
"properties": {
"kind": {
"type": "string"
},
"id": {
"type": "string"
},
"etag": {
"type": "string"
},
"title": {
"type": "string"
},
"updated": {
"type": "string"
},
"selfLink": {
"type": "string"
},
"position": {
"type": "string"
},
"status": {
"type": "string"
},
"webViewLink": {
"type": "string"
}
}
}

View File

@@ -0,0 +1,72 @@
{
"type": "object",
"properties": {
"kind": {
"type": "string"
},
"id": {
"type": "string"
},
"etag": {
"type": "string"
},
"title": {
"type": "string"
},
"updated": {
"type": "string"
},
"selfLink": {
"type": "string"
},
"position": {
"type": "string"
},
"notes": {
"type": "string"
},
"status": {
"type": "string"
},
"due": {
"type": "string"
},
"links": {
"type": "array",
"items": {
"type": "object",
"properties": {
"type": {
"type": "string"
},
"description": {
"type": "string"
},
"link": {
"type": "string"
}
},
"required": [
"type",
"description",
"link"
]
}
},
"webViewLink": {
"type": "string"
}
},
"required": [
"kind",
"id",
"etag",
"title",
"updated",
"selfLink",
"position",
"status",
"links",
"webViewLink"
]
}

View File

@@ -0,0 +1,41 @@
{
"type": "object",
"properties": {
"kind": {
"type": "string"
},
"id": {
"type": "string"
},
"etag": {
"type": "string"
},
"title": {
"type": "string"
},
"updated": {
"type": "string"
},
"selfLink": {
"type": "string"
},
"position": {
"type": "string"
},
"notes": {
"type": "string"
},
"status": {
"type": "string"
},
"due": {
"type": "string"
},
"webViewLink": {
"type": "string"
},
"completed": {
"type": "string"
}
}
}