Benefit

Schema for Benefit from CMS Marketplace API

MedicareMedicaidHealthcareHealth InsuranceFHIRFederal GovernmentDrug SpendingProvider DataQuality MeasuresClaims Data

Properties

Name Type Description
name string
covered boolean
cost_sharings array
explanation string
exclusions string
has_limits boolean
limit_unit string
limit_quantity number
View JSON Schema on GitHub

JSON Schema

marketplace-benefit.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Benefit",
  "description": "Schema for Benefit from CMS Marketplace API",
  "properties": {
    "name": {
      "type": "string"
    },
    "covered": {
      "type": "boolean"
    },
    "cost_sharings": {
      "items": {
        "$ref": "#/definitions/CostSharing"
      },
      "type": "array"
    },
    "explanation": {
      "type": "string"
    },
    "exclusions": {
      "type": "string"
    },
    "has_limits": {
      "type": "boolean"
    },
    "limit_unit": {
      "type": "string"
    },
    "limit_quantity": {
      "format": "integer",
      "type": "number"
    }
  },
  "type": "object"
}