CrosswalkData

Schema for CrosswalkData from CMS Marketplace API

MedicareMedicaidHealthcareHealth InsuranceFHIRFederal GovernmentDrug SpendingProvider DataQuality MeasuresClaims Data

Properties

Name Type Description
state string Two letter State designation
previous_plan_id string
new_plan_id string
fips string County FIPS code
level number Integer code value
reason number Integer code value
zipcodes array
View JSON Schema on GitHub

JSON Schema

marketplace-crosswalkdata.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "CrosswalkData",
  "description": "Schema for CrosswalkData from CMS Marketplace API",
  "properties": {
    "state": {
      "description": "Two letter State designation",
      "type": "string"
    },
    "previous_plan_id": {
      "type": "string"
    },
    "new_plan_id": {
      "type": "string"
    },
    "fips": {
      "description": "County FIPS code",
      "type": "string"
    },
    "level": {
      "description": "Integer code value",
      "format": "integer",
      "type": "number"
    },
    "reason": {
      "description": "Integer code value",
      "format": "integer",
      "type": "number"
    },
    "zipcodes": {
      "items": {
        "type": "string"
      },
      "type": "array"
    }
  },
  "type": "object"
}