Last active
August 29, 2015 14:15
-
-
Save smellymonk/bc1f3c6a1f9852a181a7 to your computer and use it in GitHub Desktop.
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": "http://json-schema.org/draft-04/schema#", | |
"title": "Producer Commission", | |
"description": "Producer commission statements", | |
"type": "object", | |
"properties": { | |
"startDate": { | |
"title": "Start Date", | |
"type": "string", | |
"format": "date" | |
}, | |
"endDate": { | |
"title": "End Date", | |
"type": "string", | |
"format": "date" | |
}, | |
"reportType": { | |
"title": "Report Type", | |
"enum": [ "Summary Only", "Summary and Statement" ] | |
}, | |
"billType": { | |
"title": "Bill Type", | |
"enum": [ "Agency-Bill Accounts", "Direct-Bill Accounts", "Both" ] | |
} | |
}, | |
"required": ["startDate", "endDate", "reportType", "billType"] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment