RateAreaCounty

Schema for RateAreaCounty from CMS Marketplace API

MedicareMedicaidHealthcareHealth InsuranceFHIRFederal GovernmentDrug SpendingProvider DataQuality MeasuresClaims Data

Properties

Name Type Description
rateArea integer Rate area number for the given state.
counties array list of counties for given state
View JSON Schema on GitHub

JSON Schema

marketplace-rateareacounty.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "RateAreaCounty",
  "description": "Schema for RateAreaCounty from CMS Marketplace API",
  "properties": {
    "rateArea": {
      "description": "Rate area number for the given state.",
      "type": "integer",
      "example": 6
    },
    "counties": {
      "description": "list of counties for given state",
      "items": {
        "$ref": "#/definitions/CountyZips"
      },
      "type": "array"
    }
  },
  "type": "object"
}