CountyZips

Schema for CountyZips from CMS Marketplace API

MedicareMedicaidHealthcareHealth InsuranceFHIRFederal GovernmentDrug SpendingProvider DataQuality MeasuresClaims Data

Properties

Name Type Description
name string
fips string
zips array
View JSON Schema on GitHub

JSON Schema

marketplace-countyzips.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "CountyZips",
  "description": "Schema for CountyZips from CMS Marketplace API",
  "properties": {
    "name": {
      "type": "string",
      "example": "Sedgwick"
    },
    "fips": {
      "format": "^[0-9]{5}$",
      "type": "string",
      "example": 20173
    },
    "zips": {
      "items": {
        "format": "^[0-9]{5}$",
        "example": 67212,
        "type": "string"
      },
      "type": "array"
    }
  },
  "type": "object"
}