github OHDSI/WebAPI v2.15.0
WebAPI v2.15.0

latest release: v2.15.1
one month ago

Main Features

  • Concept Set annotations
  • Temporal/Annual Prevalence in Cohort Characterization
  • Cohort Demographics
  • Shiny App packaging
  • Caching of Permissions and Cohort / Concept Set lists to improve performance.

Specific documentation for the above features will be provided at a later time. The PRs and issues related to the above features can be found under the next section.

What's Changed

Migration notes

There are two new tables that were added to the results schema that must be created in order to use the Temporal/Annual distribution functionality (#2388):

IF OBJECT_ID('@results_schema.cc_temporal_results', 'U') IS NULL
CREATE TABLE @results_schema.cc_temporal_results(
  type                 varchar(255),
  fa_type              varchar(255),
  cc_generation_id     bigint,
  analysis_id          integer,
  analysis_name        varchar(1000),
  covariate_id         bigint,
  covariate_name       varchar(1000),
  strata_id            bigint,
  strata_name          varchar(1000),
  concept_id           integer,
  count_value          bigint,
  avg_value            double precision,
  cohort_definition_id bigint,
  time_id              integer,
  start_day            integer,
  end_day              integer
);

IF OBJECT_ID('@results_schema.cc_temporal_annual_results', 'U') IS NULL
    CREATE TABLE @results_schema.cc_temporal_annual_results(
      type                 varchar(255),
      fa_type              varchar(255),
      cc_generation_id     bigint,
      analysis_id          integer,
      analysis_name        varchar(1000),
      covariate_id         bigint,
      covariate_name       varchar(1000),
      strata_id            bigint,
      strata_name          varchar(1000),
      concept_id           integer,
      count_value          bigint,
      avg_value            double precision,
      cohort_definition_id bigint,
      event_year           integer
);

New Contributors

Full Changelog: v2.14.0...v2.15.0

Don't miss a new WebAPI release

NewReleases is sending notifications on new releases.