{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "$anchor": "cdm.base.math",
  "type": "string",
  "title": "AveragingCalculationMethodEnum",
  "description": "Specifies enumerations for the type of averaging calculation.",
  "enum": [
    "Arithmetic",
    "Geometric",
    "Harmonic"
  ],
  "oneOf": [
    {
      "enum": [
        "Arithmetic"
      ],
      "title": "Arithmetic",
      "description": "Refers to the calculation of an average by taking the sum of observations divided by the count of observations."
    },
    
    {
      "enum": [
        "Geometric"
      ],
      "title": "Geometric",
      "description": "Refers to the calculation of an average by taking the nth root of the product of n observations."
    },
    
    {
      "enum": [
        "Harmonic"
      ],
      "title": "Harmonic",
      "description": "Refers to the calculation of an average by taking the reciprocal of the arithmetic mean of the reciprocals of the observations."
    }
  ]
}
