{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "$anchor": "cdm.product.common.schedule",
  "type": "object",
  "title": "WeightedAveragingObservation",
  "description": "A single weighted averaging observation.",
  "properties": {
    "dateTime": {
      "description": "Observation date time, which should be used when literal observation dates are required. The CDM specifies that the zoned date time is to be expressed in accordance with ISO 8601, either as UTC as an offset to UTC.",
      "type": "string"
    },
    "observationNumber": {
      "description": "Observation number, which should be unique, within a series generated by a date schedule.",
      "type": "integer"
    },
    "weight": {
      "description": "Observation weight, which is used as a multiplier for the observation value.",
      "type": "number"
    }
  },
  "required": [
    "weight"
  ]
}
