Skip to content

Instantly share code, notes, and snippets.

View ruri-web's full-sized avatar

ruri-web

  • Joined Sep 5, 2025
View GitHub Profile
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Invoice Schema v3",
"type": "object",
"additionalProperties": false,
"properties": {
"Supplier": { "type": "string" },
"InvoiceNo": { "type": "string" },
"InvoiceDate": { "type": "string" },
"Items": {
@ruri-web
ruri-web / invoice-schema.json
Last active September 5, 2025 14:38
Invoice Parser JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Invoice Schema v2",
"type": "object",
"additionalProperties": false,
"properties": {
"Supplier": { "type": "string" },
"InvoiceNo": { "type": "string" },
"InvoiceDate": { "type": "string" },
"Items": {