Skip to content

Commit

Permalink
QPPSF-2996 EMA updates 2018 (#159)
Browse files Browse the repository at this point in the history
* Make clinical clusters script performance year specific

* Copy 2017 csvs to 2018 folder

* Default getClinicalClusterData and getClinicalClusterSchema to use performanceYear 2017

* Copy 2017 clinical clusters output and schema to 2018 to start

* Switch to year 2018

* Modify 2018 clinical cluster data for EMA

* Updates to 2018 clinical clusters

* Bump package.json version

* Handle clinical cluster exceptions in performanceYear specific way

* Fix registry clinical clusters adjusting for optional measures

* Update claims clinical clusters exceptions and optionals

* More adjustments to registry clinicial clusters

* Add more optionals for registry clinical clusters

* Rename function to allow for specialty set curation

* Add function to curate specialty sets and refactor

* Specialty Set removal override

* Add 2018 claims specialty sets overrides

* Rename override to replace and add comments

* Additional comment
  • Loading branch information
rockykitamura authored Oct 12, 2018
1 parent d3c191d commit c10f793
Show file tree
Hide file tree
Showing 13 changed files with 3,153 additions and 53 deletions.
File renamed without changes.
36 changes: 36 additions & 0 deletions clinical-clusters/2018/clinical-clusters-schema.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
id: https://github.com/CMSgov/qpp-measures-data/versions/0.0.1/clinical-clusters-schema.yaml
$schema: http://json-schema.org/schema#
type: array
items: { $ref: #/definitions/ClusterType }
definitions:
ClusterType:
type: object
properties:
measureId:
type: string
description: The measure identifier
firstPerformanceYear:
description: Year in which the measure was introduced.
type: integer
default: 2017
lastPerformanceYear:
description: Year in which the measure was deprecated.
type: [integer, 'null']
default: 'null'
clinicalClusters:
type: array
items: { $ref: #/definitions/ClinicalClusterType }
specialtySets:
type: array
items: { $ref: #/definitions/ClinicalClusterType }
ClinicalClusterType:
type: object
properties:
name:
type: string
description: Cluster or Specialty name
measureIds:
type: array
items:
type: string
description: Measure identifier
Loading

0 comments on commit c10f793

Please sign in to comment.