County

Schema for County from CMS Marketplace API

MedicareMedicaidHealthcareHealth InsuranceFHIRFederal GovernmentDrug SpendingProvider DataQuality MeasuresClaims Data

Properties

Name Type Description
fips string
name string
state string 2-letter USPS state abbreviation
View JSON Schema on GitHub

JSON Schema

marketplace-county.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "County",
  "description": "Schema for County from CMS Marketplace API",
  "properties": {
    "fips": {
      "type": "string",
      "example": "04013"
    },
    "name": {
      "type": "string",
      "example": "Maricopa County"
    },
    "state": {
      "description": "2-letter USPS state abbreviation",
      "example": "AZ",
      "type": "string"
    }
  },
  "type": "object"
}