{"$schema":"https://json-schema.org/draft/2020-12/schema","type":"object","required":["company","recipient","delivery"],"properties":{"company":{"type":"object","required":["name"],"properties":{"name":{"type":"string"},"address":{"type":"string"},"phone":{"type":"string"},"email":{"type":"string"},"logo_base64":{"type":"string"}}},"recipient":{"type":"object","required":["name"],"properties":{"name":{"type":"string"},"address":{"type":"string"},"contact_person":{"type":"string"}}},"delivery":{"type":"object","required":["number","date","items"],"properties":{"number":{"type":"string"},"date":{"type":"string"},"order_reference":{"type":"string"},"shipping_method":{"type":"string"},"items":{"type":"array","items":{"type":"object","required":["description","quantity","unit"],"properties":{"description":{"type":"string"},"quantity":{"type":"string"},"unit":{"type":"string"}}}},"notes":{"type":"string"}}}}}