Skip to content

Commit

Permalink
Merge pull request #213 from MeasureAuthoringTool/MAT-6853_ApplyCodeT…
Browse files Browse the repository at this point in the history
…oCql

Release 1.4.1
  • Loading branch information
gregory-akins authored May 3, 2024
2 parents b1a6efa + 5154518 commit 5f1c0da
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@madie/madie-models",
"version": "1.4.0",
"version": "1.4.1",
"description": "Models for MADiE Project",
"scripts": {
"build": "tsc",
Expand Down
20 changes: 20 additions & 0 deletions src/Measure.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,25 @@ import { AggregateFunctionType } from "./AggregateFunctionType";
import { Organization } from "./Organization";
import { BaseConfigurationTypes } from "./BaseConfigurationTypes";

export type Code = {
name: string;
display: string;
version: string;
codeSystem: string;
codeSystemOid: string;
status: string;
}
export type CodeSystemVersion = {
name: string;
display: string;
version: string;
codeSystem: string;
codeSystemOid: string;
status: string;
}
export type CqlMetaData = {
codeSystemMap: Map<string, CodeSystemVersion>;
}
export interface MeasureMetadata {
steward?: Organization;
developers?: Array<Organization>;
Expand All @@ -24,6 +43,7 @@ export interface MeasureMetadata {
transmissionFormat?: string;
supplementalDataElements?: string;
measureSetTitle?: string;
cqlMetaData?: CqlMetaData;
}

export interface Reference {
Expand Down

0 comments on commit 5f1c0da

Please sign in to comment.