Deductible

Schema for Deductible from CMS Marketplace API

MedicareMedicaidHealthcareHealth InsuranceFHIRFederal GovernmentDrug SpendingProvider DataQuality MeasuresClaims Data

Properties

Name Type Description
amount number
csr object
family_cost object
network_tier object
type string
individual boolean Applies to individuals
family boolean Applies to families
display_string string An optional human-readable description
View JSON Schema on GitHub

JSON Schema

marketplace-deductible.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Deductible",
  "description": "Schema for Deductible from CMS Marketplace API",
  "properties": {
    "amount": {
      "type": "number"
    },
    "csr": {
      "$ref": "#/definitions/CostSharingReductionEnum"
    },
    "family_cost": {
      "$ref": "#/definitions/FamilyCostEnum"
    },
    "network_tier": {
      "$ref": "#/definitions/NetworkTierEnum"
    },
    "type": {
      "enum": [
        "Medical EHB Deductible",
        "Combined Medical and Drug EHB Deductible",
        "Drug EHB Deductible"
      ],
      "type": "string"
    },
    "individual": {
      "description": "Applies to individuals",
      "type": "boolean"
    },
    "family": {
      "description": "Applies to families",
      "type": "boolean"
    },
    "display_string": {
      "type": "string",
      "description": "An optional human-readable description"
    }
  },
  "type": "object"
}