mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +00:00
chore: Add new schemas (no-changelog) (#13215)
This commit is contained in:
77
packages/nodes-base/nodes/Mindee/__schema__/v3.0.0/invoice/predict.json
vendored
Normal file
77
packages/nodes-base/nodes/Mindee/__schema__/v3.0.0/invoice/predict.json
vendored
Normal 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"
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user