Skip to content

Instantly share code, notes, and snippets.

@johnny-y-wang
Last active August 19, 2025 18:16
Show Gist options
  • Select an option

  • Save johnny-y-wang/74ed124034e46b40a75afa65cc371f7d to your computer and use it in GitHub Desktop.

Select an option

Save johnny-y-wang/74ed124034e46b40a75afa65cc371f7d to your computer and use it in GitHub Desktop.
json-schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Rent Statement Schema",
"type": "object",
"properties": {
"total_amount_due": {
"type": "number",
"description": "The amount due as a floating-point number"
},
"statement_date": {
"type": "string",
"description": "Statement date as indicated in account summary"
}
},
"required": ["amount_due", "statement_date"]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment