Address

Schema for Address from CMS Marketplace API

MedicareMedicaidHealthcareHealth InsuranceFHIRFederal GovernmentDrug SpendingProvider DataQuality MeasuresClaims Data

Properties

Name Type Description
city string
state string
street_1 string
street_2 string
zipcode string
countyfips string 5-digit county FIPS code
View JSON Schema on GitHub

JSON Schema

marketplace-address.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Address",
  "description": "Schema for Address from CMS Marketplace API",
  "properties": {
    "city": {
      "type": "string"
    },
    "state": {
      "type": "string"
    },
    "street_1": {
      "type": "string"
    },
    "street_2": {
      "type": "string"
    },
    "zipcode": {
      "type": "string"
    },
    "countyfips": {
      "description": "5-digit county FIPS code",
      "type": "string"
    }
  },
  "type": "object"
}