Last active
August 19, 2025 18:16
-
-
Save johnny-y-wang/74ed124034e46b40a75afa65cc371f7d to your computer and use it in GitHub Desktop.
json-schema
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "$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