Skip to content

Instantly share code, notes, and snippets.

@tjklemz
Last active August 29, 2015 14:15
Show Gist options
  • Save tjklemz/bc1f3c6a1f9852a181a7 to your computer and use it in GitHub Desktop.
Save tjklemz/bc1f3c6a1f9852a181a7 to your computer and use it in GitHub Desktop.
{
"$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