CostSharing

Schema for CostSharing from CMS Marketplace API

MedicareMedicaidHealthcareHealth InsuranceFHIRFederal GovernmentDrug SpendingProvider DataQuality MeasuresClaims Data

Properties

Name Type Description
coinsurance_options string
coinsurance_rate number
copay_amount number
copay_options string
network_tier object
csr object
display_string string
View JSON Schema on GitHub

JSON Schema

marketplace-costsharing.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "CostSharing",
  "description": "Schema for CostSharing from CMS Marketplace API",
  "properties": {
    "coinsurance_options": {
      "type": "string"
    },
    "coinsurance_rate": {
      "format": "float",
      "type": "number"
    },
    "copay_amount": {
      "type": "number"
    },
    "copay_options": {
      "type": "string"
    },
    "network_tier": {
      "$ref": "#/definitions/NetworkTierEnum"
    },
    "csr": {
      "$ref": "#/definitions/CostSharingReductionEnum"
    },
    "display_string": {
      "type": "string"
    }
  },
  "type": "object"
}