chore: Add new schemas (no-changelog) (#13215)

This commit is contained in:
Jon
2025-02-13 09:40:35 +00:00
committed by GitHub
parent f001edb2a2
commit 0c6eb6eaef
38 changed files with 3095 additions and 0 deletions

View File

@@ -0,0 +1,77 @@
{
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"number_of_pages": {
"type": "integer"
},
"customer_name": {
"type": "string"
},
"date": {
"type": "string"
},
"document_type": {
"type": "string"
},
"invoice_number": {
"type": "string"
},
"line_items": {
"type": "array",
"items": {
"type": "object",
"properties": {
"description": {
"type": "string"
}
},
"required": [
"description",
"product_code",
"quantity",
"tax_amount",
"tax_rate",
"total_amount",
"unit_price"
]
}
},
"currency": {
"type": "string"
},
"supplier_address": {
"type": "string"
},
"supplier_name": {
"type": "string"
},
"supplier_email": {
"type": "string"
},
"supplier_phone_number": {
"type": "string"
},
"customer_id": {
"type": "string"
},
"supplier_website": {
"type": "string"
}
},
"required": [
"id",
"name",
"number_of_pages",
"document_type",
"line_items",
"currency",
"total_amount",
"total_net"
]
}