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,92 @@
{
"type": "object",
"properties": {
"created_at": {
"type": "string"
},
"status": {
"type": "string"
},
"self": {
"type": "string"
},
"uid": {
"type": "string"
},
"template": {
"type": "string"
},
"template_version": {
"type": "null"
},
"modifications": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"image_url": {
"type": "string"
}
},
"required": [
"name"
]
}
},
"webhook_url": {
"type": "null"
},
"webhook_response_code": {
"type": "null"
},
"transparent": {
"type": "boolean"
},
"metadata": {
"type": "null"
},
"template_name": {
"type": "string"
},
"width": {
"type": "integer"
},
"height": {
"type": "integer"
},
"render_pdf": {
"type": "boolean"
},
"pdf_url": {
"type": "null"
},
"pdf_url_compressed": {
"type": "null"
}
},
"required": [
"created_at",
"status",
"self",
"uid",
"image_url",
"image_url_png",
"image_url_jpg",
"template",
"template_version",
"modifications",
"webhook_url",
"webhook_response_code",
"transparent",
"metadata",
"template_name",
"width",
"height",
"render_pdf",
"pdf_url",
"pdf_url_compressed"
]
}