Place

Schema for Place from CMS Marketplace API

MedicareMedicaidHealthcareHealth InsuranceFHIRFederal GovernmentDrug SpendingProvider DataQuality MeasuresClaims Data

Properties

Name Type Description
countyfips string 5-digit county FIPS code
state string 2-letter USPS state abbreviation
zipcode string 5-digit ZIP Code
View JSON Schema on GitHub

JSON Schema

marketplace-place.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Place",
  "description": "Schema for Place from CMS Marketplace API",
  "properties": {
    "countyfips": {
      "description": "5-digit county FIPS code",
      "type": "string"
    },
    "state": {
      "description": "2-letter USPS state abbreviation",
      "type": "string"
    },
    "zipcode": {
      "description": "5-digit ZIP Code",
      "type": "string"
    }
  },
  "required": [
    "countyfips",
    "state",
    "zipcode"
  ],
  "example": {
    "countyfips": "51107",
    "state": "VA",
    "zipcode": "20103"
  },
  "type": "object"
}