Skip to content

Instantly share code, notes, and snippets.

@tony-jones
Last active March 31, 2017 23:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tony-jones/a725dca9312b9e50c64f4c7adca933f8 to your computer and use it in GitHub Desktop.
Save tony-jones/a725dca9312b9e50c64f4c7adca933f8 to your computer and use it in GitHub Desktop.
JSON structure and instructions for the industrial demo on schedule 10 data.
# Classification ratings are A, B, or C
# Classification A will apply for no more than 28 days during any calendar year,
# Classification C will apply for no less than 60 days during any calendar year.
# Date should be an actual date object
# total can be ignored. That's just the total number of records returned.
# http://www3.dom.com/sched10/
{
total: "1441",
ratings: [
{
date: "2017-01-02T18:25:43.511Z",
rating: "B",
remainingA: "28",
remainingC: "60"
},
{
date: "2017-01-03T13:22:33.341Z",
rating: "A",
remainingA: "27",
remainingC: "60"
},
{
date: "2017-01-03T12:34:34.346Z",
rating: "B",
remainingA: "27",
remainingC: "60"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment