StateRateArea

Schema for StateRateArea from CMS Marketplace API

MedicareMedicaidHealthcareHealth InsuranceFHIRFederal GovernmentDrug SpendingProvider DataQuality MeasuresClaims Data

Properties

Name Type Description
state string 2-letter USPS state abbreviation
rateAreas array list of rate areas for given state
View JSON Schema on GitHub

JSON Schema

marketplace-stateratearea.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "StateRateArea",
  "description": "Schema for StateRateArea from CMS Marketplace API",
  "properties": {
    "state": {
      "description": "2-letter USPS state abbreviation",
      "example": "KS",
      "type": "string"
    },
    "rateAreas": {
      "description": "list of rate areas for given state",
      "items": {
        "$ref": "#/definitions/RateAreaCounty"
      },
      "type": "array"
    }
  },
  "type": "object"
}