{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "$anchor": "cdm.product.common.schedule",
  "type": "object",
  "title": "CalculationPeriodData",
  "properties": {
    "startDate": {
      "type": "string"
    },
    "endDate": {
      "type": "string"
    },
    "daysInPeriod": {
      "type": "integer"
    },
    "daysInLeapYearPeriod": {
      "type": "integer"
    },
    "isFirstPeriod": {
      "type": "boolean"
    },
    "isLastPeriod": {
      "type": "boolean"
    }
  },
  "required": [
    "startDate",
    "endDate",
    "daysInPeriod",
    "daysInLeapYearPeriod",
    "isFirstPeriod",
    "isLastPeriod"
  ]
}
