StateMedicaidList

Schema for StateMedicaidList from CMS Marketplace API

MedicareMedicaidHealthcareHealth InsuranceFHIRFederal GovernmentDrug SpendingProvider DataQuality MeasuresClaims Data

Properties

Name Type Description
fiscal_year number 4 digit fiscal year
fiscal_quarter number Fiscal quarter (1 - 4)
states array
View JSON Schema on GitHub

JSON Schema

marketplace-statemedicaidlist.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "StateMedicaidList",
  "description": "Schema for StateMedicaidList from CMS Marketplace API",
  "properties": {
    "fiscal_year": {
      "description": "4 digit fiscal year",
      "format": "integer",
      "type": "number",
      "example": 2023
    },
    "fiscal_quarter": {
      "description": "Fiscal quarter (1 - 4)",
      "format": "integer",
      "type": "number",
      "example": 1
    },
    "states": {
      "items": {
        "$ref": "#/definitions/StateMedicaid"
      },
      "type": "array"
    }
  },
  "type": "object"
}