StateCounty

Schema for StateCounty from CMS Marketplace API

MedicareMedicaidHealthcareHealth InsuranceFHIRFederal GovernmentDrug SpendingProvider DataQuality MeasuresClaims Data

Properties

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

JSON Schema

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